+++ /dev/null
-#
-# Copyright (C) 2018 Jo-Philipp Wich <jo@mein.io>
-#
-# This is free software, licensed under the Apache License, Version 2.0 .
-#
-
-include $(TOPDIR)/rules.mk
-
-PKG_LICENSE:=Apache-2.0
-
-LUCI_TITLE:=OPKG package management application
-LUCI_DEPENDS:=+luci-base +opkg
-
-PKG_MAINTAINER:=Jo-Philipp Wich <jo@mein.io>
-
-include ../../luci.mk
-
-# call BuildPackage - OpenWrt buildroot signature
+++ /dev/null
-'use strict';
-'require view';
-'require fs';
-'require ui';
-'require rpc';
-
-var css = ' \
- .controls { \
- display: flex; \
- margin: .5em 0 1em 0; \
- flex-wrap: wrap; \
- justify-content: space-around; \
- } \
- \
- .controls > * { \
- padding: .25em; \
- white-space: nowrap; \
- flex: 1 1 33%; \
- box-sizing: border-box; \
- display: flex; \
- flex-wrap: wrap; \
- } \
- \
- .controls > *:first-child, \
- .controls > * > label { \
- flex-basis: 100%; \
- min-width: 250px; \
- } \
- \
- .controls > *:nth-child(2), \
- .controls > *:nth-child(3) { \
- flex-basis: 20%; \
- } \
- \
- .controls > * > .btn { \
- flex-basis: 20px; \
- text-align: center; \
- } \
- \
- .controls > * > * { \
- flex-grow: 1; \
- align-self: center; \
- } \
- \
- .controls > div > input { \
- width: auto; \
- } \
- \
- .td.version, \
- .td.size { \
- white-space: nowrap; \
- } \
- \
- ul.deps, ul.deps ul, ul.errors { \
- margin-left: 1em; \
- } \
- \
- ul.deps li, ul.errors li { \
- list-style: none; \
- } \
- \
- ul.deps li:before { \
- content: "↳"; \
- display: inline-block; \
- width: 1em; \
- margin-left: -1em; \
- } \
- \
- ul.deps li > span { \
- white-space: nowrap; \
- } \
- \
- ul.errors li { \
- color: #c44; \
- font-size: 90%; \
- font-weight: bold; \
- padding-left: 1.5em; \
- } \
- \
- ul.errors li:before { \
- content: "⚠"; \
- display: inline-block; \
- width: 1.5em; \
- margin-left: -1.5em; \
- } \
-';
-
-var isReadonlyView = !L.hasViewPermission() || null;
-
-var callMountPoints = rpc.declare({
- object: 'luci',
- method: 'getMountPoints',
- expect: { result: [] }
-});
-
-var packages = {
- available: { providers: {}, pkgs: {} },
- installed: { providers: {}, pkgs: {} }
-};
-
-var languages = ['en'];
-
-var currentDisplayMode = 'available', currentDisplayRows = [];
-
-function parseList(s, dest)
-{
- var re = /([^\n]*)\n/g,
- pkg = null, key = null, val = null, m;
-
- while ((m = re.exec(s)) !== null) {
- if (m[1].match(/^\s(.*)$/)) {
- if (pkg !== null && key !== null && val !== null)
- val += '\n' + RegExp.$1.trim();
-
- continue;
- }
-
- if (key !== null && val !== null) {
- switch (key) {
- case 'package':
- pkg = { name: val };
- break;
-
- case 'depends':
- case 'provides':
- var list = val.split(/\s*,\s*/);
- if (list.length !== 1 || list[0].length > 0)
- pkg[key] = list;
- break;
-
- case 'installed-time':
- pkg.installtime = new Date(+val * 1000);
- break;
-
- case 'installed-size':
- pkg.installsize = +val;
- break;
-
- case 'status':
- var stat = val.split(/\s+/),
- mode = stat[1],
- installed = stat[2];
-
- switch (mode) {
- case 'user':
- case 'hold':
- pkg[mode] = true;
- break;
- }
-
- switch (installed) {
- case 'installed':
- pkg.installed = true;
- break;
- }
- break;
-
- case 'essential':
- if (val === 'yes')
- pkg.essential = true;
- break;
-
- case 'size':
- pkg.size = +val;
- break;
-
- case 'architecture':
- case 'auto-installed':
- case 'filename':
- case 'sha256sum':
- case 'section':
- break;
-
- default:
- pkg[key] = val;
- break;
- }
-
- key = val = null;
- }
-
- if (m[1].trim().match(/^([\w-]+)\s*:(.+)$/)) {
- key = RegExp.$1.toLowerCase();
- val = RegExp.$2.trim();
- }
- else if (pkg) {
- dest.pkgs[pkg.name] = pkg;
-
- var provides = dest.providers[pkg.name] ? [] : [ pkg.name ];
-
- if (pkg.provides)
- provides.push.apply(provides, pkg.provides);
-
- provides.forEach(function(p) {
- dest.providers[p] = dest.providers[p] || [];
- dest.providers[p].push(pkg);
- });
- }
- }
-}
-
-function display(pattern)
-{
- var src = packages[currentDisplayMode === 'updates' ? 'installed' : currentDisplayMode],
- table = document.querySelector('#packages'),
- 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 || '',
- altsize = null;
-
- if (!pkg.size && packages.available.pkgs[name])
- altsize = packages.available.pkgs[name].size;
-
- if (!desc && packages.available.pkgs[name])
- desc = packages.available.pkgs[name].description || '';
-
- desc = desc.split(/\n/);
- desc = desc[0].trim() + (desc.length > 1 ? '…' : '');
-
- if ((pattern instanceof RegExp) &&
- !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') {
- var avail = packages.available.pkgs[name],
- inst = packages.installed.pkgs[name];
-
- if (!inst || !inst.installed)
- continue;
-
- if (!avail || compareVersion(avail.version, pkg.version) <= 0)
- continue;
-
- ver = '%s » %s'.format(
- truncateVersion(pkg.version || '-'),
- truncateVersion(avail.version || '-'));
-
- btn = E('div', {
- 'class': 'btn cbi-button-positive',
- 'data-package': name,
- 'click': handleInstall
- }, _('Upgrade…'));
- }
- else if (currentDisplayMode === 'installed') {
- if (!pkg.installed)
- continue;
-
- ver = truncateVersion(pkg.version || '-');
- btn = E('div', {
- 'class': 'btn cbi-button-negative',
- 'data-package': name,
- 'click': handleRemove
- }, _('Remove…'));
- }
- else {
- var inst = packages.installed.pkgs[name];
-
- ver = truncateVersion(pkg.version || '-');
-
- if (!inst || !inst.installed)
- btn = E('div', {
- 'class': 'btn cbi-button-action',
- 'data-package': name,
- 'click': handleInstall
- }, _('Install…'));
- else if (inst.installed && inst.version != pkg.version)
- btn = E('div', {
- 'class': 'btn cbi-button-positive',
- 'data-package': name,
- 'click': handleInstall
- }, _('Upgrade…'));
- else
- btn = E('div', {
- 'class': 'btn cbi-button-neutral',
- 'disabled': 'disabled'
- }, _('Installed'));
- }
-
- name = '%h'.format(name);
- desc = '%h'.format(desc || '-');
-
- if (pattern) {
- name = name.replace(pattern, '<ins>$&</ins>');
- desc = desc.replace(pattern, '<ins>$&</ins>');
- }
-
- currentDisplayRows.push([
- name,
- ver,
- [ pkg.size || altsize || 0,
- pkg.size ? '%1024mB'.format(pkg.size)
- : (altsize ? '~%1024mB'.format(altsize) : '-') ],
- desc,
- btn
- ]);
- }
-
- currentDisplayRows.sort(function(a, b) {
- if (a[0] < b[0])
- return -1;
- else if (a[0] > b[0])
- return 1;
- else
- return 0;
- });
-
- for (var i = 0; i < pagers.length; i++) {
- pagers[i].parentNode.style.display = '';
- pagers[i].setAttribute('data-offset', 100);
- }
-
- handlePage({ target: pagers[0].querySelector('.prev') });
-}
-
-function handlePage(ev)
-{
- var filter = document.querySelector('input[name="filter"]'),
- 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;
-
- 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)
- pagers[i].querySelector('.prev').setAttribute('disabled', 'disabled');
- else
- pagers[i].querySelector('.prev').removeAttribute('disabled');
-
- if ((offset + 100) >= currentDisplayRows.length)
- pagers[i].querySelector('.next').setAttribute('disabled', 'disabled');
- else
- pagers[i].querySelector('.next').removeAttribute('disabled');
- }
-
- var placeholder = _('No information available');
-
- if (filter.value)
- placeholder = [
- E('span', {}, _('No packages matching "<strong>%h</strong>".').format(filter.value)), ' (',
- E('a', { href: '#', click: handleReset }, _('Reset')), ')'
- ];
-
- cbi_update_table('#packages', currentDisplayRows.slice(offset, offset + 100),
- placeholder);
-}
-
-function handleMode(ev)
-{
- var tab = findParent(ev.target, 'li');
- if (tab.getAttribute('data-mode') === currentDisplayMode)
- return;
-
- tab.parentNode.querySelectorAll('li').forEach(function(li) {
- li.classList.remove('cbi-tab');
- li.classList.add('cbi-tab-disabled');
- });
-
- tab.classList.remove('cbi-tab-disabled');
- tab.classList.add('cbi-tab');
-
- currentDisplayMode = tab.getAttribute('data-mode');
-
- display(document.querySelector('input[name="filter"]').value);
-
- ev.target.blur();
- ev.preventDefault();
-}
-
-function handleI18nFilter(ev)
-{
- display(document.querySelector('input[name="filter"]').value);
-}
-
-function orderOf(c)
-{
- if (c === '~')
- return -1;
- else if (c === '' || c >= '0' && c <= '9')
- return 0;
- else if ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z'))
- return c.charCodeAt(0);
- else
- return c.charCodeAt(0) + 256;
-}
-
-function compareVersion(val, ref)
-{
- var vi = 0, ri = 0,
- isdigit = { 0:1, 1:1, 2:1, 3:1, 4:1, 5:1, 6:1, 7:1, 8:1, 9:1 };
-
- val = val || '';
- ref = ref || '';
-
- if (val === ref)
- return 0;
-
- while (vi < val.length || ri < ref.length) {
- var first_diff = 0;
-
- while ((vi < val.length && !isdigit[val.charAt(vi)]) ||
- (ri < ref.length && !isdigit[ref.charAt(ri)])) {
- var vc = orderOf(val.charAt(vi)), rc = orderOf(ref.charAt(ri));
- if (vc !== rc)
- return vc - rc;
-
- vi++; ri++;
- }
-
- while (val.charAt(vi) === '0')
- vi++;
-
- while (ref.charAt(ri) === '0')
- ri++;
-
- while (isdigit[val.charAt(vi)] && isdigit[ref.charAt(ri)]) {
- first_diff = first_diff || (val.charCodeAt(vi) - ref.charCodeAt(ri));
- vi++; ri++;
- }
-
- if (isdigit[val.charAt(vi)])
- return 1;
- else if (isdigit[ref.charAt(ri)])
- return -1;
- else if (first_diff)
- return first_diff;
- }
-
- return 0;
-}
-
-function versionSatisfied(ver, ref, vop)
-{
- var r = compareVersion(ver, ref);
-
- switch (vop) {
- case '<':
- case '<=':
- return r <= 0;
-
- case '>':
- case '>=':
- return r >= 0;
-
- case '<<':
- return r < 0;
-
- case '>>':
- return r > 0;
-
- case '=':
- return r == 0;
- }
-
- return false;
-}
-
-function pkgStatus(pkg, vop, ver, info)
-{
- info.errors = info.errors || [];
- info.install = info.install || [];
-
- if (pkg.installed) {
- if (vop && !versionSatisfied(pkg.version, ver, vop)) {
- var repl = null;
-
- (packages.available.providers[pkg.name] || []).forEach(function(p) {
- if (!repl && versionSatisfied(p.version, ver, vop))
- repl = p;
- });
-
- if (repl) {
- info.install.push(repl);
- return E('span', {
- 'class': 'label',
- 'data-tooltip': _('Requires update to %h %h')
- .format(repl.name, repl.version)
- }, _('Needs upgrade'));
- }
-
- info.errors.push(_('The installed version of package <em>%h</em> is not compatible, require %s while %s is installed.').format(pkg.name, truncateVersion(ver, vop), truncateVersion(pkg.version)));
-
- return E('span', {
- 'class': 'label warning',
- 'data-tooltip': _('Require version %h %h,\ninstalled %h')
- .format(vop, ver, pkg.version)
- }, _('Version incompatible'));
- }
-
- return E('span', { 'class': 'label notice' }, _('Installed'));
- }
- else if (!pkg.missing) {
- if (!vop || versionSatisfied(pkg.version, ver, vop)) {
- info.install.push(pkg);
- return E('span', { 'class': 'label' }, _('Not installed'));
- }
-
- info.errors.push(_('The repository version of package <em>%h</em> is not compatible, require %s but only %s is available.')
- .format(pkg.name, truncateVersion(ver, vop), truncateVersion(pkg.version)));
-
- return E('span', {
- 'class': 'label warning',
- 'data-tooltip': _('Require version %h %h,\ninstalled %h')
- .format(vop, ver, pkg.version)
- }, _('Version incompatible'));
- }
- else {
- info.errors.push(_('Required dependency package <em>%h</em> is not available in any repository.').format(pkg.name));
-
- return E('span', { 'class': 'label warning' }, _('Not available'));
- }
-}
-
-function renderDependencyItem(dep, info, flat)
-{
- var li = E('li'),
- vop = dep.version ? dep.version[0] : null,
- ver = dep.version ? dep.version[1] : null,
- depends = [];
-
- for (var i = 0; dep.pkgs && i < dep.pkgs.length; i++) {
- var pkg = packages.installed.pkgs[dep.pkgs[i]] ||
- packages.available.pkgs[dep.pkgs[i]] ||
- { name: dep.name };
-
- if (i > 0)
- li.appendChild(document.createTextNode(' | '));
-
- var text = pkg.name;
-
- if (pkg.installsize)
- text += ' (%1024mB)'.format(pkg.installsize);
- else if (pkg.size)
- text += ' (~%1024mB)'.format(pkg.size);
-
- li.appendChild(E('span', { 'data-tooltip': pkg.description },
- [ text, ' ', pkgStatus(pkg, vop, ver, info) ]));
-
- (pkg.depends || []).forEach(function(d) {
- if (depends.indexOf(d) === -1)
- depends.push(d);
- });
- }
-
- if (!li.firstChild)
- li.appendChild(E('span', {},
- [ dep.name, ' ',
- pkgStatus({ name: dep.name, missing: true }, vop, ver, info) ]));
-
- if (!flat) {
- var subdeps = renderDependencies(depends, info);
- if (subdeps)
- li.appendChild(subdeps);
- }
-
- return li;
-}
-
-function renderDependencies(depends, info, flat)
-{
- var deps = depends || [],
- items = [];
-
- info.seen = info.seen || [];
-
- for (var i = 0; i < deps.length; i++) {
- var dep, vop, ver;
-
- if (deps[i] === 'libc')
- continue;
-
- if (deps[i].match(/^(.+?)\s+\((<=|>=|<<|>>|<|>|=)(.+?)\)/)) {
- dep = RegExp.$1.trim();
- vop = RegExp.$2.trim();
- ver = RegExp.$3.trim();
- }
- else {
- dep = deps[i].trim();
- vop = ver = null;
- }
-
- if (info.seen[dep])
- continue;
-
- var pkgs = [];
-
- (packages.installed.providers[dep] || []).forEach(function(p) {
- if (pkgs.indexOf(p.name) === -1) pkgs.push(p.name);
- });
-
- (packages.available.providers[dep] || []).forEach(function(p) {
- if (pkgs.indexOf(p.name) === -1) pkgs.push(p.name);
- });
-
- info.seen[dep] = {
- name: dep,
- pkgs: pkgs,
- version: [vop, ver]
- };
-
- items.push(renderDependencyItem(info.seen[dep], info, flat));
- }
-
- if (items.length)
- return E('ul', { 'class': 'deps' }, items);
-
- return null;
-}
-
-function truncateVersion(v, op)
-{
- v = v.replace(/\b(([a-f0-9]{8})[a-f0-9]{24,32})\b/,
- '<span data-tooltip="$1">$2…</span>');
-
- if (!op || op === '=')
- return v;
-
- return '%h %h'.format(op, v);
-}
-
-function handleReset(ev)
-{
- var filter = document.querySelector('input[name="filter"]');
-
- filter.value = '';
- display();
-}
-
-function handleInstall(ev)
-{
- var name = ev.target.getAttribute('data-package'),
- pkg = packages.available.pkgs[name],
- depcache = {},
- size;
-
- if (pkg.installsize)
- size = _('~%1024mB installed').format(pkg.installsize);
- else if (pkg.size)
- size = _('~%1024mB compressed').format(pkg.size);
- else
- size = _('unknown');
-
- var deps = renderDependencies(pkg.depends, depcache),
- tree = null, errs = null, inst = null, desc = null;
-
- if (depcache.errors && depcache.errors.length) {
- errs = E('ul', { 'class': 'errors' });
- depcache.errors.forEach(function(err) {
- errs.appendChild(E('li', {}, err));
- });
- }
-
- var totalsize = pkg.installsize || pkg.size || 0,
- totalpkgs = 1,
- suggestsize = 0;
-
- if (depcache.install && depcache.install.length)
- depcache.install.forEach(function(ipkg) {
- totalsize += ipkg.installsize || ipkg.size || 0;
- 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')));
- tree.appendChild(deps);
- }
-
- if (pkg.description) {
- desc = E('div', {}, [
- E('h5', {}, _('Description')),
- E('p', {}, pkg.description)
- ]);
- }
-
- ui.showModal(_('Details for package <em>%h</em>').format(pkg.name), [
- E('ul', {}, [
- 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('div', {
- 'class': 'btn',
- 'click': ui.hideModal
- }, _('Cancel')),
- ' ',
- E('div', {
- 'data-command': 'install',
- 'data-package': name,
- 'class': 'btn cbi-button-action',
- 'click': handleOpkg,
- 'disabled': isReadonlyView
- }, _('Install'))
- ])
- ]);
-}
-
-function handleManualInstall(ev)
-{
- var name_or_url = document.querySelector('input[name="install"]').value,
- install = E('div', {
- 'class': 'btn cbi-button-action',
- 'data-command': 'install',
- 'data-package': name_or_url,
- 'click': function(ev) {
- document.querySelector('input[name="install"]').value = '';
- handleOpkg(ev);
- }
- }, _('Install')), warning;
-
- if (!name_or_url.length) {
- return;
- }
- else if (name_or_url.indexOf('/') !== -1) {
- warning = E('p', {}, _('Installing packages from untrusted sources is a potential security risk! Really attempt to install <em>%h</em>?').format(name_or_url));
- }
- else if (!packages.available.providers[name_or_url]) {
- warning = E('p', {}, _('The package <em>%h</em> is not available in any configured repository.').format(name_or_url));
- install = '';
- }
- else {
- warning = E('p', {}, _('Really attempt to install <em>%h</em>?').format(name_or_url));
- }
-
- ui.showModal(_('Manually install package'), [
- warning,
- E('div', { 'class': 'right' }, [
- E('div', {
- 'click': ui.hideModal,
- 'class': 'btn cbi-button-neutral'
- }, _('Cancel')),
- ' ', install
- ])
- ]);
-}
-
-function handleConfig(ev)
-{
- var conf = {};
-
- ui.showModal(_('OPKG Configuration'), [
- E('p', { 'class': 'spinning' }, _('Loading configuration data…'))
- ]);
-
- fs.list('/etc/opkg').then(function(partials) {
- var files = [ '/etc/opkg.conf' ];
-
- for (var i = 0; i < partials.length; i++)
- if (partials[i].type == 'file' && partials[i].name.match(/\.conf$/))
- files.push('/etc/opkg/' + partials[i].name);
-
- return Promise.all(files.map(function(file) {
- return fs.read(file)
- .then(L.bind(function(conf, file, res) { conf[file] = res }, this, conf, file))
- .catch(function(err) {
- ui.addNotification(null, E('p', {}, [ _('Unable to read %s: %s').format(file, err) ]));
- ui.hideModal();
- throw err;
- });
- }));
- }).then(function() {
- var body = [
- E('p', {}, _('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>.'))
- ];
-
- Object.keys(conf).sort().forEach(function(file) {
- body.push(E('h5', {}, '%h'.format(file)));
- body.push(E('textarea', {
- 'name': file,
- 'rows': Math.max(Math.min(L.toArray(conf[file].match(/\n/g)).length, 10), 3)
- }, '%h'.format(conf[file])));
- });
-
- body.push(E('div', { 'class': 'button-row' }, [
- E('div', {
- 'class': 'btn cbi-button-neutral',
- 'click': ui.hideModal
- }, _('Cancel')),
- ' ',
- E('div', {
- 'class': 'btn cbi-button-positive',
- 'click': function(ev) {
- var data = {};
- findParent(ev.target, '.modal').querySelectorAll('textarea[name]')
- .forEach(function(textarea) {
- data[textarea.getAttribute('name')] = textarea.value
- });
-
- ui.showModal(_('OPKG Configuration'), [
- E('p', { 'class': 'spinning' }, _('Saving configuration data…'))
- ]);
-
- Promise.all(Object.keys(data).map(function(file) {
- return fs.write(file, data[file]).catch(function(err) {
- ui.addNotification(null, E('p', {}, [ _('Unable to save %s: %s').format(file, err) ]));
- });
- })).then(ui.hideModal);
- },
- 'disabled': isReadonlyView
- }, _('Save')),
- ]));
-
- ui.showModal(_('OPKG Configuration'), body);
- });
-}
-
-function handleRemove(ev)
-{
- var name = ev.target.getAttribute('data-package'),
- pkg = packages.installed.pkgs[name],
- avail = packages.available.pkgs[name] || {},
- size, desc;
-
- if (avail.installsize)
- size = _('~%1024mB installed').format(avail.installsize);
- else if (avail.size)
- size = _('~%1024mB compressed').format(avail.size);
- else
- size = _('unknown');
-
- if (avail.description) {
- desc = E('div', {}, [
- E('h5', {}, _('Description')),
- E('p', {}, avail.description)
- ]);
- }
-
- ui.showModal(_('Remove package <em>%h</em>').format(pkg.name), [
- E('ul', {}, [
- E('li', '<strong>%s:</strong> %h'.format(_('Version'), pkg.version)),
- E('li', '<strong>%s:</strong> %h'.format(_('Size'), size))
- ]),
- desc || '',
- E('div', { 'style': 'display:flex; justify-content:space-between; flex-wrap:wrap' }, [
- E('label', { 'class': 'cbi-checkbox', 'style': 'float:left' }, [
- E('input', { 'id': 'autoremove-cb', 'type': 'checkbox', 'checked': 'checked', 'name': 'autoremove', 'disabled': isReadonlyView }), ' ',
- E('label', { 'for': 'autoremove-cb' }), ' ',
- _('Automatically remove unused dependencies')
- ]),
- E('div', { 'style': 'flex-grow:1', 'class': 'right' }, [
- E('div', {
- 'class': 'btn',
- 'click': ui.hideModal
- }, _('Cancel')),
- ' ',
- E('div', {
- 'data-command': 'remove',
- 'data-package': name,
- 'class': 'btn cbi-button-negative',
- 'click': handleOpkg,
- 'disabled': isReadonlyView
- }, _('Remove'))
- ])
- ])
- ]);
-}
-
-function handleOpkg(ev)
-{
- return new Promise(function(resolveFn, rejectFn) {
- 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"]'),
- i18n = document.querySelector('input[name="i18ninstall"]');
-
- var dlg = ui.showModal(_('Executing package manager'), [
- E('p', { 'class': 'spinning' },
- _('Waiting for the <em>opkg %h</em> command to complete…').format(cmd))
- ]);
-
- var argv = [ cmd ];
-
- if (cmd == 'remove')
- argv.push('--force-removal-of-dependent-packages')
-
- if (rem && rem.checked)
- argv.push('--autoremove');
-
- 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);
-
- fs.exec_direct('/usr/libexec/opkg-call', argv, 'json').then(function(res) {
- dlg.removeChild(dlg.lastChild);
-
- if (res.stdout)
- dlg.appendChild(E('pre', [ res.stdout ]));
-
- if (res.stderr) {
- dlg.appendChild(E('h5', _('Errors')));
- dlg.appendChild(E('pre', { 'class': 'errors' }, [ res.stderr ]));
- }
-
- if (res.code !== 0)
- dlg.appendChild(E('p', _('The <em>opkg %h</em> command failed with code <code>%d</code>.').format(cmd, (res.code & 0xff) || -1)));
-
- dlg.appendChild(E('div', { 'class': 'button-row' },
- E('div', {
- 'class': 'btn',
- 'click': L.bind(function(res) {
- if (ui.menu && ui.menu.flushCache)
- ui.menu.flushCache();
-
- ui.hideModal();
- updateLists();
-
- if (res.code !== 0)
- rejectFn(new Error(res.stderr || 'opkg error %d'.format(res.code)));
- else
- resolveFn(res);
- }, this, res)
- }, _('Dismiss'))));
- }).catch(function(err) {
- ui.addNotification(null, E('p', _('Unable to execute <em>opkg %s</em> command: %s').format(cmd, err)));
- ui.hideModal();
- });
- });
-}
-
-function handleUpload(ev)
-{
- var path = '/tmp/upload.ipk';
- return ui.uploadFile(path).then(L.bind(function(btn, res) {
- ui.showModal(_('Manually install package'), [
- E('p', {}, _('Installing packages from untrusted sources is a potential security risk! Really attempt to install <em>%h</em>?').format(res.name)),
- E('ul', {}, [
- res.size ? E('li', {}, '%s: %1024.2mB'.format(_('Size'), res.size)) : '',
- res.checksum ? E('li', {}, '%s: %s'.format(_('MD5'), res.checksum)) : '',
- res.sha256sum ? E('li', {}, '%s: %s'.format(_('SHA256'), res.sha256sum)) : ''
- ]),
- E('div', { 'class': 'right' }, [
- E('div', {
- 'click': function(ev) {
- ui.hideModal();
- fs.remove(path);
- },
- 'class': 'btn cbi-button-neutral'
- }, _('Cancel')), ' ',
- E('div', {
- 'class': 'btn cbi-button-action',
- 'data-command': 'install',
- 'data-package': path,
- 'click': function(ev) {
- handleOpkg(ev).finally(function() {
- fs.remove(path)
- });
- }
- }, _('Install'))
- ])
- ]);
- }, this, ev.target));
-}
-
-function downloadLists()
-{
- return Promise.all([
- callMountPoints(),
- fs.exec_direct('/usr/libexec/opkg-call', [ 'list-available' ]),
- fs.exec_direct('/usr/libexec/opkg-call', [ 'list-installed' ])
- ]);
-}
-
-function updateLists(data)
-{
- cbi_update_table('#packages', [],
- E('div', { 'class': 'spinning' }, _('Loading package information…')));
-
- packages.available = { providers: {}, pkgs: {} };
- packages.installed = { providers: {}, pkgs: {} };
-
- return (data ? Promise.resolve(data) : downloadLists()).then(function(data) {
- var pg = document.querySelector('.cbi-progressbar'),
- mount = L.toArray(data[0].filter(function(m) { return m.mount == '/' || m.mount == '/overlay' }))
- .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.size - mount.free) : 100) + '%';
- pg.setAttribute('title', _('%s used (%1024mB used of %1024mB, %1024mB free)').format(pg.firstElementChild.style.width, mount.size - mount.free, mount.size, mount.free));
-
- parseList(data[1], packages.available);
- parseList(data[2], packages.installed);
-
- for (var pkgname in packages.installed.pkgs)
- if (pkgname.indexOf('luci-i18n-base-') === 0)
- languages.push(pkgname.substring(15));
-
- display(document.querySelector('input[name="filter"]').value);
- });
-}
-
-var inputTimeout = null;
-
-function handleInput(ev) {
- if (inputTimeout !== null)
- window.clearTimeout(inputTimeout);
-
- inputTimeout = window.setTimeout(function() {
- display(ev.target.value);
- }, 250);
-}
-
-return view.extend({
- load: function() {
- return downloadLists();
- },
-
- render: function(listData) {
- var query = decodeURIComponent(L.toArray(location.search.match(/\bquery=([^=]+)\b/))[1] || '');
-
- var view = E([], [
- E('style', { 'type': 'text/css' }, [ css ]),
-
- E('h2', {}, _('Software')),
-
- E('div', { 'class': 'cbi-map-descr' }, [
- E('span', _('Install additional software and upgrade existing packages with opkg.')),
- E('br'),
- E('span', _('<strong>Warning!</strong> Package operations can <a %s>break your system</a>.').format(
- 'href="https://openwrt.org/meta/infobox/upgrade_packages_warning" target="_blank" rel="noreferrer"'
- ))
- ]),
-
- E('div', { 'class': 'controls' }, [
- E('div', {}, [
- E('label', {}, _('Disk space') + ':'),
- E('div', { 'class': 'cbi-progressbar', 'title': _('unknown') }, E('div', {}, [ '\u00a0' ]))
- ]),
-
- E('div', {}, [
- E('label', {}, _('Filter') + ':'),
- E('span', { 'class': 'control-group' }, [
- E('input', { 'type': 'text', 'name': 'filter', 'placeholder': _('Type to filter…'), 'value': query, 'input': handleInput }),
- E('button', { 'class': 'btn cbi-button', 'click': handleReset }, [ _('Clear') ])
- ])
- ]),
-
- E('div', {}, [
- E('label', {}, _('Download and install package') + ':'),
- E('span', { 'class': 'control-group' }, [
- E('input', { 'type': 'text', 'name': 'install', 'placeholder': _('Package name or URL…'), 'keydown': function(ev) { if (ev.keyCode === 13) handleManualInstall(ev) }, 'disabled': isReadonlyView }),
- E('button', { 'class': 'btn cbi-button cbi-button-action', 'click': handleManualInstall, 'disabled': isReadonlyView }, [ _('OK') ])
- ])
- ]),
-
- E('div', {}, [
- E('label', {}, _('Actions') + ':'), ' ',
- E('span', { 'class': 'control-group' }, [
- E('button', { 'class': 'btn cbi-button-positive', 'data-command': 'update', 'click': handleOpkg, 'disabled': isReadonlyView }, [ _('Update lists…') ]), ' ',
- 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')
- ])
- ])
- ])
- ]),
-
- E('ul', { 'class': 'cbi-tabmenu mode' }, [
- E('li', { 'data-mode': 'available', 'class': 'available cbi-tab', 'click': handleMode }, E('a', { 'href': '#' }, [ _('Available') ])),
- E('li', { 'data-mode': 'installed', 'class': 'installed cbi-tab-disabled', 'click': handleMode }, E('a', { 'href': '#' }, [ _('Installed') ])),
- E('li', { 'data-mode': 'updates', 'class': 'installed cbi-tab-disabled', 'click': handleMode }, E('a', { 'href': '#' }, [ _('Updates') ]))
- ]),
-
- 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 }, [ '»' ])
- ])
- ]),
-
- E('table', { 'id': 'packages', 'class': 'table' }, [
- E('tr', { 'class': 'tr cbi-section-table-titles' }, [
- E('th', { 'class': 'th col-2 left' }, [ _('Package name') ]),
- E('th', { 'class': 'th col-2 left version' }, [ _('Version') ]),
- E('th', { 'class': 'th col-1 center size'}, [ _('Size (.ipk)') ]),
- E('th', { 'class': 'th col-10 left' }, [ _('Description') ]),
- E('th', { 'class': 'th right cbi-section-actions' }, [ '\u00a0' ])
- ])
- ]),
-
- E('div', { 'class': 'controls', 'style': 'display:none' }, [
- E('div', { 'class': 'pager center' }, [
- E('button', { 'class': 'btn cbi-button-neutral prev', 'aria-label': _('Previous page'), 'click': handlePage }, [ '«' ]),
- E('div', { 'class': 'text' }, [ 'dummy' ]),
- E('button', { 'class': 'btn cbi-button-neutral next', 'aria-label': _('Next page'), 'click': handlePage }, [ '»' ])
- ])
- ])
- ]);
-
- requestAnimationFrame(function() {
- updateLists(listData)
- });
-
- return view;
- },
-
- handleSave: null,
- handleSaveApply: null,
- handleReset: null
-});
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2024-07-15 18:06+0000\n"
-"Last-Translator: Rex_sa <rex.sa@pm.me>\n"
-"Language-Team: Arabic <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsopkg/ar/>\n"
-"Language: ar\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
-"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
-"X-Generator: Weblate 5.7-dev\n"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
-msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
-msgstr ""
-"…%s مستخدمة (% 1024 ميغابايت مستخدمة من % 1024 ميغابايت، خالية من %1024 "
-"ميغابايت)"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
-msgid ""
-"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
-msgstr ""
-"<strong>تحذير!</strong> يمكن أن تؤدي عمليات الحزمة <a %s>إلى كسر نظامك</a>."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
-msgid "Actions"
-msgstr "إجراءات"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
-msgid "Allow overwriting conflicting package files"
-msgstr "السماح باستبدال ملفات الحزم المتضاربة"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
-msgid "Automatically remove unused dependencies"
-msgstr "قم بإزالة التبعيات غير المستخدمة تلقائيًا"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1218
-msgid "Available"
-msgstr "متاح"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
-msgid ""
-"Below is a listing of the various configuration files used by <em>opkg</em>. "
-"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
-"custom repository entries. The configuration in the other files may be "
-"changed but is usually not preserved by <em>sysupgrade</em>."
-msgstr ""
-"يوجد أدناه قائمة بملفات التكوين المتنوعة المستخدمة بواسطة <em> opkg </em>. "
-"استخدم <em> opkg.conf </em> للإعدادات العامة و <em> customfeeds.conf </em> "
-"لإدخالات المستودع المخصصة. قد يتم تغيير التهيئة في الملفات الأخرى ولكن عادةً "
-"لا يتم الاحتفاظ بها بواسطة <em> sysupgrade </em>."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
-msgid "Cancel"
-msgstr "إلغاء"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150
-msgid "Clear"
-msgstr "إجلاء"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
-msgid "Configure opkg…"
-msgstr "تكوين opkg …"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
-msgid "Dependencies"
-msgstr "التبعيات"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
-msgid "Description"
-msgstr "الوصف"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755
-msgid "Details for package <em>%h</em>"
-msgstr "تفاصيل الحزمة <em>%h </em>"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142
-msgid "Disk space"
-msgstr "مساحة القرص"
-
-#: 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:1172
-msgid "Display LuCI translation packages"
-msgstr "عرض حزم ترجمة LuCI"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
-msgid "Display all available translation packages"
-msgstr "عرض جميع حزم الترجمة المتاحة"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
-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:1155
-msgid "Download and install package"
-msgstr "قم بتنزيل الحزمة وتثبيتها"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
-msgid "Errors"
-msgstr "أخطاء"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
-msgid "Executing package manager"
-msgstr "تنفيذ مدير الحزم"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
-msgid "Filter"
-msgstr "المرشحات"
-
-#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
-msgid "Grant access to opkg management"
-msgstr "منح حقوق الدخول لإدارة opkg"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1202
-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:1133
-msgid "Install additional software and upgrade existing packages with opkg."
-msgstr "تثبيت برامج إضافية وترقية الحزم الموجودة باستخدام حزمة التشغيل."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
-msgid "Install suggested translation packages as well"
-msgstr "تثبيت حزم الترجمة المقترحة أيضًا"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
-msgid "Installed"
-msgstr "مثبت"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
-msgid ""
-"Installing packages from untrusted sources is a potential security risk! "
-"Really attempt to install <em>%h</em>?"
-msgstr ""
-"يعد تثبيت الحزم من مصادر غير موثوق بها مخاطرة أمنية محتملة! هل تحاول حقًا "
-"تثبيت <em>%h</em>?"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
-msgid "Install…"
-msgstr "تثبيت…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
-msgid "Loading configuration data…"
-msgstr "تحميل بيانات التكوين …"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
-msgid "Loading package information…"
-msgstr "جارٍ تحميل معلومات الحزمة …"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
-msgid "MD5"
-msgstr "MD5"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
-msgid "Manually install package"
-msgstr "قم بتثبيت الحزمة يدويًا"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
-msgid "Needs upgrade"
-msgstr "يحتاج إلى ترقية"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
-msgid "Next page"
-msgstr "الصفحة التالية"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
-msgid "No information available"
-msgstr "لا توجد معلومات متاحة"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
-msgid "No packages"
-msgstr "لا توجد حزم"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
-msgid "No packages matching \"<strong>%h</strong>\"."
-msgstr "لا توجد حزم تطابق \"<strong>%h </strong>\"."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
-msgid "Not available"
-msgstr "غير متوفر"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
-msgid "Not installed"
-msgstr "غير مثبت"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
-msgid "OK"
-msgstr "موافق"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
-msgid "OPKG Configuration"
-msgstr "تكوين OPKG"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
-msgid "Package name"
-msgstr "اسم الحزمة"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
-msgid "Package name or URL…"
-msgstr "اسم الحزمة أو URL …"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
-msgid "Previous page"
-msgstr "الصفحة السابقة"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
-msgid "Really attempt to install <em>%h</em>?"
-msgstr "هل تحاول حقًا تثبيت <em> %h </em>؟"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
-msgid "Remove"
-msgstr "نزع"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
-msgid "Remove package <em>%h</em>"
-msgstr "قم بإزالة الحزمة <em>% h </em>"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
-msgid "Remove…"
-msgstr "يزيل…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
-msgid "Require approx. %1024mB size for %d package(s) to install."
-msgstr "تتطلب تقريبا. ٪ .1024 ميغا بايت حجم لتثبيت %d حزمة (حزم)."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
-msgid "Require version %h %h, installed %h"
-msgstr "إصدار مطلوب %h% h ، مثبت %h"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540
-msgid ""
-"Required dependency package <em>%h</em> is not available in any repository."
-msgstr "حزمة التبعية المطلوبة <em>%h </em> غير متوفرة في أي مستودع."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508
-msgid "Requires update to %h %h"
-msgstr "يتطلب التحديث إلى %h% h"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
-msgid "Reset"
-msgstr "إعادة ضبط"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
-msgid "SHA256"
-msgstr "SHA256"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
-msgid "Save"
-msgstr "إحفض"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
-msgid "Saving configuration data…"
-msgstr "جارٍ حفظ بيانات التكوين …"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
-msgid "Size"
-msgstr "مقاس"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
-msgid "Size (.ipk)"
-msgstr "الحجم (.ipk)"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
-#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
-msgid "Software"
-msgstr "برنامج"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
-msgid "Suggested translations"
-msgstr "الترجمات المقترحة"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
-msgid "Suggested translations require approx. %1024mB additional space."
-msgstr "تتطلب الترجمات المقترحة مساحة إضافية تبلغ حوالي % 1024 ميجابايت."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
-msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
-msgstr "فشل الأمر <em> opkg % h </em> برمز <code>%d </code>."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
-msgid ""
-"The installed version of package <em>%h</em> is not compatible, require %s "
-"while %s is installed."
-msgstr ""
-"الإصدار المثبت من الحزمة <em>% h </em> غير متوافق ، يتطلب٪ s أثناء تثبيت %s."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833
-msgid "The package <em>%h</em> is not available in any configured repository."
-msgstr "الحزمة <em>%h </em> ليست متاحة في أي مستودع تم تكوينه."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530
-msgid ""
-"The repository version of package <em>%h</em> is not compatible, require %s "
-"but only %s is available."
-msgstr ""
-"إصدار المستودع للحزمة <em>%h </em> غير متوافق ، يتطلب %s ولكن يتوفر%s فقط."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
-msgid "Type to filter…"
-msgstr "اكتب للتصفية …"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
-msgid "Unable to execute <em>opkg %s</em> command: %s"
-msgstr "تعذر تنفيذ أمر <em> opkg %s </em>:%s"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871
-msgid "Unable to read %s: %s"
-msgstr "غير قادر على قراءة٪ s: %s%"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910
-msgid "Unable to save %s: %s"
-msgstr "غير قادر على حفظ٪ %s% : s"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1165
-msgid "Update lists…"
-msgstr "تحديث القوائم …"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
-msgid "Updates"
-msgstr "التحديثات"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
-msgid "Upgrade…"
-msgstr "تحديث النظام…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1166
-msgid "Upload Package…"
-msgstr "تحميل الحزمة …"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1234
-msgid "Version"
-msgstr "الإصدار"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
-msgid "Version incompatible"
-msgstr "الإصدار غير متوافق"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
-msgid "Waiting for the <em>opkg %h</em> command to complete…"
-msgstr "في انتظار إكمال أمر <em> opkg %h </em> …"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1198
-msgctxt "Display translation packages"
-msgid "all"
-msgstr "الكل"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
-msgctxt "Display translation packages"
-msgid "filtered"
-msgstr "مرشحة"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
-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:1143
-msgid "unknown"
-msgstr "غير معروف"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
-msgid "~%1024mB compressed"
-msgstr "مضغوط ~٪ .1024 ميغا بايت"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
-msgid "~%1024mB installed"
-msgstr "تم تثبيت ~٪ .1024 ميغا بايت"
-
-#~ msgid "Free space"
-#~ msgstr "مساحة فارغة"
-
-#~ msgid "Overwrite files from other package(s)"
-#~ msgstr "الكتابة فوق الملفات من حزم أخرى"
+++ /dev/null
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-06-10 03:40+0200\n"
-"PO-Revision-Date: 2021-08-31 01:32+0000\n"
-"Last-Translator: Iskren Mihaylov <iskren.mihaylov91@gmail.com>\n"
-"Language-Team: Bulgarian <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsopkg/bg/>\n"
-"Language: bg\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 4.8.1-dev\n"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
-msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
-msgid ""
-"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
-msgid "Actions"
-msgstr "Действия"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
-msgid "Allow overwriting conflicting package files"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
-msgid "Automatically remove unused dependencies"
-msgstr "Автоматично премахни неизползвани зависимости"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1218
-msgid "Available"
-msgstr "Налични"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
-msgid ""
-"Below is a listing of the various configuration files used by <em>opkg</em>. "
-"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
-"custom repository entries. The configuration in the other files may be "
-"changed but is usually not preserved by <em>sysupgrade</em>."
-msgstr ""
-"Отдолу е списък с различни конфигурационни файлове използвани от <em>opkg</"
-"em>. Използвайте <em>opkg.conf</em> за глобални настройки и <em>customfeeds."
-"conf</em> за ваши записи на хранилища. Конфигурацията в други файлове може "
-"да се промени, но обикновено не се запазва при <em>sysupgrade</em>."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
-msgid "Cancel"
-msgstr "Отмени"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150
-msgid "Clear"
-msgstr "Изчисти"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
-msgid "Configure opkg…"
-msgstr "Конфигуриране opkg…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
-msgid "Dependencies"
-msgstr "Зависимости"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
-msgid "Description"
-msgstr "Описание"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755
-msgid "Details for package <em>%h</em>"
-msgstr "Детайли за пакет <em>%h</em>"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142
-msgid "Disk space"
-msgstr ""
-
-#: 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:1172
-msgid "Display LuCI translation packages"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
-msgid "Display all available translation packages"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
-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:1155
-msgid "Download and install package"
-msgstr "Свали и инсталирай пакет"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
-msgid "Errors"
-msgstr "Грешки"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
-msgid "Executing package manager"
-msgstr "Стартиране на пакетния мениджър"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
-msgid "Filter"
-msgstr "Филтър"
-
-#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
-msgid "Grant access to opkg management"
-msgstr "Разрешаване достъп до opkg менажиране"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1202
-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:1133
-msgid "Install additional software and upgrade existing packages with opkg."
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
-msgid "Install suggested translation packages as well"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
-msgid "Installed"
-msgstr "Инсталирани"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
-msgid ""
-"Installing packages from untrusted sources is a potential security risk! "
-"Really attempt to install <em>%h</em>?"
-msgstr ""
-"Инсталиране на пакети от недоверени източници е потенциален риск за "
-"сигурността! Наистина ли да се опитам да инсталирам <em>%h</em>?"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
-msgid "Install…"
-msgstr "Инсталиране…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
-msgid "Loading configuration data…"
-msgstr "Зареждане на конфигурации…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
-msgid "Loading package information…"
-msgstr "Зареждане пакетна информация…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
-msgid "MD5"
-msgstr "MD5"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
-msgid "Manually install package"
-msgstr "Ръчно инсталирай пакет"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
-msgid "Needs upgrade"
-msgstr "Нуждаещ се от ъпгрейд"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
-msgid "Next page"
-msgstr "Следваща страница"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
-msgid "No information available"
-msgstr "Няма налична информация"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
-msgid "No packages"
-msgstr "Няма пакети"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
-msgid "No packages matching \"<strong>%h</strong>\"."
-msgstr "Няма съвпадение за \"<strong>%h</strong>\"."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
-msgid "Not available"
-msgstr "Липсва"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
-msgid "Not installed"
-msgstr "Не е инсталиран"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
-msgid "OK"
-msgstr "ОК"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
-msgid "OPKG Configuration"
-msgstr "OPKG Конфигурация"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
-msgid "Package name"
-msgstr "Име на пакет"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
-msgid "Package name or URL…"
-msgstr "Име на пакет или URL…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
-msgid "Previous page"
-msgstr "Предишна страница"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
-msgid "Really attempt to install <em>%h</em>?"
-msgstr "Да се направи опит за инсталиране на <em>%h</em>?"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
-msgid "Remove"
-msgstr "Премахни"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
-msgid "Remove package <em>%h</em>"
-msgstr "Премахни пакет <em>%h</em>"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
-msgid "Remove…"
-msgstr "Премахване…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
-msgid "Require approx. %1024mB size for %d package(s) to install."
-msgstr "Нужни са прибл. %1024mB място за инсталиране на %d пакет(а)."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
-msgid "Require version %h %h, installed %h"
-msgstr "Изисква версия %h %h, инсталирана %h"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540
-msgid ""
-"Required dependency package <em>%h</em> is not available in any repository."
-msgstr "Необходим пакет <em>%h</em> не е наличен в никое хранилище."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508
-msgid "Requires update to %h %h"
-msgstr "Изисква се ъпдейт към %h %h"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
-msgid "Reset"
-msgstr "Нулирай"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
-msgid "SHA256"
-msgstr "SHA256"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
-msgid "Save"
-msgstr "Запази"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
-msgid "Saving configuration data…"
-msgstr "Запазване на конфигурация…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
-msgid "Size"
-msgstr "Размер"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
-msgid "Size (.ipk)"
-msgstr "Размер (.ipk)"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
-#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
-msgid "Software"
-msgstr "Софтуер"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
-msgid "Suggested translations"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
-msgid "Suggested translations require approx. %1024mB additional space."
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
-msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
-msgstr "Команда <em>opkg %h</em> се провали с код <code>%d</code>."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
-msgid ""
-"The installed version of package <em>%h</em> is not compatible, require %s "
-"while %s is installed."
-msgstr ""
-"Инсталираната версия на пакета <em>%h</em> не е съвместима, изисква се %s "
-"докато %s е инсталирана."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833
-msgid "The package <em>%h</em> is not available in any configured repository."
-msgstr "Пакетът <em>%h</em> не е наличен в нито едно от хранилищата."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530
-msgid ""
-"The repository version of package <em>%h</em> is not compatible, require %s "
-"but only %s is available."
-msgstr ""
-"Версията на пакета в хранилището <em>%h</em> не е свъместима, изисква се %s "
-"но само %s е налична."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
-msgid "Type to filter…"
-msgstr "Пиши за филтър…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
-msgid "Unable to execute <em>opkg %s</em> command: %s"
-msgstr "Не може да се изпълни <em>opkg %s</em> команда: %s"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871
-msgid "Unable to read %s: %s"
-msgstr "Не може да се прочете %s: %s"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910
-msgid "Unable to save %s: %s"
-msgstr "Не може да се запази %s: %s"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1165
-msgid "Update lists…"
-msgstr "Обновяване на списъци…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
-msgid "Updates"
-msgstr "Обновления"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
-msgid "Upgrade…"
-msgstr "Надстройване…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1166
-msgid "Upload Package…"
-msgstr "Качване пакет…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1234
-msgid "Version"
-msgstr "Версия"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
-msgid "Version incompatible"
-msgstr "Несъвместима версия"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
-msgid "Waiting for the <em>opkg %h</em> command to complete…"
-msgstr "Изчкаване <em>opkg %h</em> команда да приключи…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1198
-msgctxt "Display translation packages"
-msgid "all"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
-msgctxt "Display translation packages"
-msgid "filtered"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
-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:1143
-msgid "unknown"
-msgstr "неизвестен"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
-msgid "~%1024mB compressed"
-msgstr "~%1024mB архивирани"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
-msgid "~%1024mB installed"
-msgstr "~%1024mB инсталирани"
-
-#~ msgid "Free space"
-#~ msgstr "Свободно място"
-
-#~ msgid "Overwrite files from other package(s)"
-#~ msgstr "Заместване на файлове от други пакет(и)"
+++ /dev/null
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-06-10 03:40+0200\n"
-"PO-Revision-Date: 2021-10-08 17:53+0000\n"
-"Last-Translator: Rayhan Nabi <rayhanjanam@gmail.com>\n"
-"Language-Team: Bengali (Bangladesh) <https://hosted.weblate.org/projects/"
-"openwrt/luciapplicationsopkg/bn_BD/>\n"
-"Language: bn_BD\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 4.9-dev\n"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
-msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
-msgid ""
-"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
-msgid "Actions"
-msgstr "ক্রিয়া"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
-msgid "Allow overwriting conflicting package files"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
-msgid "Automatically remove unused dependencies"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1218
-msgid "Available"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
-msgid ""
-"Below is a listing of the various configuration files used by <em>opkg</em>. "
-"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
-"custom repository entries. The configuration in the other files may be "
-"changed but is usually not preserved by <em>sysupgrade</em>."
-msgstr ""
-
-#: 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:1150
-msgid "Clear"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
-msgid "Configure opkg…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
-msgid "Dependencies"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
-msgid "Description"
-msgstr "বর্ণনা"
-
-#: 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:1142
-msgid "Disk space"
-msgstr ""
-
-#: 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:1172
-msgid "Display LuCI translation packages"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
-msgid "Display all available translation packages"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
-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:1155
-msgid "Download and install package"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
-msgid "Errors"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
-msgid "Executing package manager"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
-msgid "Filter"
-msgstr "ছাঁকনি"
-
-#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
-msgid "Grant access to opkg management"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1202
-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:1133
-msgid "Install additional software and upgrade existing packages with opkg."
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
-msgid "Install suggested translation packages as well"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
-msgid "Installed"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
-msgid ""
-"Installing packages from untrusted sources is a potential security risk! "
-"Really attempt to install <em>%h</em>?"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
-msgid "Install…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
-msgid "Loading configuration data…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
-msgid "Loading package information…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
-msgid "MD5"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
-msgid "Manually install package"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
-msgid "Needs upgrade"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
-msgid "Next page"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
-msgid "No information available"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
-msgid "No packages"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
-msgid "No packages matching \"<strong>%h</strong>\"."
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
-msgid "Not available"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
-msgid "Not installed"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
-msgid "OK"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
-msgid "OPKG Configuration"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
-msgid "Package name"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
-msgid "Package name or URL…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
-msgid "Previous page"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
-msgid "Really attempt to install <em>%h</em>?"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
-msgid "Remove"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
-msgid "Remove package <em>%h</em>"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
-msgid "Remove…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
-msgid "Require approx. %1024mB size for %d package(s) to install."
-msgstr ""
-
-#: 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: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:508
-msgid "Requires update to %h %h"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
-msgid "Reset"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
-msgid "SHA256"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
-msgid "Save"
-msgstr "সংরক্ষণ করুন"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
-msgid "Saving configuration data…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
-msgid "Size"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
-msgid "Size (.ipk)"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
-#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
-msgid "Software"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
-msgid "Suggested translations"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
-msgid "Suggested translations require approx. %1024mB additional space."
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
-msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
-msgstr ""
-
-#: 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: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: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:1149
-msgid "Type to filter…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
-msgid "Unable to execute <em>opkg %s</em> command: %s"
-msgstr ""
-
-#: 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:910
-msgid "Unable to save %s: %s"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1165
-msgid "Update lists…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
-msgid "Updates"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
-msgid "Upgrade…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1166
-msgid "Upload Package…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1234
-msgid "Version"
-msgstr "সংস্করণ"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
-msgid "Version incompatible"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
-msgid "Waiting for the <em>opkg %h</em> command to complete…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1198
-msgctxt "Display translation packages"
-msgid "all"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
-msgctxt "Display translation packages"
-msgid "filtered"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
-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:1143
-msgid "unknown"
-msgstr "অজ্ঞাত"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
-msgid "~%1024mB compressed"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
-msgid "~%1024mB installed"
-msgstr ""
+++ /dev/null
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-06-10 03:40+0200\n"
-"PO-Revision-Date: 2021-09-17 06:52+0000\n"
-"Last-Translator: Roger Pueyo Centelles <weblate@rogerpueyo.com>\n"
-"Language-Team: Catalan <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsopkg/ca/>\n"
-"Language: ca\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 4.9-dev\n"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
-msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
-msgid ""
-"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
-msgid "Actions"
-msgstr "Accions"
-
-#: 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:1218
-msgid "Available"
-msgstr "Disponible"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
-msgid ""
-"Below is a listing of the various configuration files used by <em>opkg</em>. "
-"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
-"custom repository entries. The configuration in the other files may be "
-"changed but is usually not preserved by <em>sysupgrade</em>."
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js: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:1150
-msgid "Clear"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
-#, fuzzy
-msgid "Configure opkg…"
-msgstr "Configuració"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
-msgid "Dependencies"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
-msgid "Description"
-msgstr "Descripció"
-
-#: 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:1142
-msgid "Disk space"
-msgstr ""
-
-#: 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:1172
-msgid "Display LuCI translation packages"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
-msgid "Display all available translation packages"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
-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:1155
-msgid "Download and install package"
-msgstr "Descarrega i instal·la el paquet"
-
-#: 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:982
-msgid "Executing package manager"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
-msgid "Filter"
-msgstr "Filtre"
-
-#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
-msgid "Grant access to opkg management"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1202
-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:1133
-msgid "Install additional software and upgrade existing packages with opkg."
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
-msgid "Install suggested translation packages as well"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
-#, fuzzy
-msgid "Installed"
-msgstr "Instal·la"
-
-#: 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:288
-#, fuzzy
-msgid "Install…"
-msgstr "Instal·la"
-
-#: 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:1084
-msgid "Loading package information…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
-msgid "MD5"
-msgstr "MD5"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
-#, fuzzy
-msgid "Manually install package"
-msgstr "Descarrega i instal·la el paquet"
-
-#: 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:1227
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
-msgid "Next page"
-msgstr ""
-
-#: 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:355
-#, fuzzy
-msgid "No packages"
-msgstr "Cerca paquet"
-
-#: 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:542
-#, fuzzy
-msgid "Not available"
-msgstr "Total disponible"
-
-#: 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:1158
-msgid "OK"
-msgstr "D'acord"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
-#, fuzzy
-msgid "OPKG Configuration"
-msgstr "Configuració d'OPKG"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
-msgid "Package name"
-msgstr "Nom del paquet"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
-#, fuzzy
-msgid "Package name or URL…"
-msgstr "Nom del paquet"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
-msgid "Previous page"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
-msgid "Really attempt to install <em>%h</em>?"
-msgstr ""
-
-#: 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:943
-msgid "Remove package <em>%h</em>"
-msgstr ""
-
-#: 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:737
-msgid "Require approx. %1024mB size for %d package(s) to install."
-msgstr ""
-
-#: 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: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:508
-msgid "Requires update to %h %h"
-msgstr ""
-
-#: 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:1047
-msgid "SHA256"
-msgstr "SHA256"
-
-#: 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:905
-#, fuzzy
-msgid "Saving configuration data…"
-msgstr "Configuració de dispositiu"
-
-#: 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:1235
-msgid "Size (.ipk)"
-msgstr "Mida (.ipk)"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
-#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
-msgid "Software"
-msgstr "Programari"
-
-#: 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: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: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: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:1149
-msgid "Type to filter…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
-msgid "Unable to execute <em>opkg %s</em> command: %s"
-msgstr ""
-
-#: 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:910
-msgid "Unable to save %s: %s"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1165
-#, fuzzy
-msgid "Update lists…"
-msgstr "Actualitza les llistes"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
-#, fuzzy
-msgid "Updates"
-msgstr "Actualitza les llistes"
-
-#: 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:1166
-msgid "Upload Package…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1234
-msgid "Version"
-msgstr "Versió"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
-msgid "Version incompatible"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
-#, 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:1198
-msgctxt "Display translation packages"
-msgid "all"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
-msgctxt "Display translation packages"
-msgid "filtered"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
-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:1143
-msgid "unknown"
-msgstr "desconegut"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
-msgid "~%1024mB compressed"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
-msgid "~%1024mB installed"
-msgstr ""
-
-#~ msgid "Free space"
-#~ msgstr "Espai lliure"
+++ /dev/null
-msgid ""
-msgstr ""
-"Project-Id-Version: \n"
-"POT-Creation-Date: \n"
-"PO-Revision-Date: 2023-01-13 15:13+0000\n"
-"Last-Translator: Lukáš Wagner <lukaswagner1@gmail.com>\n"
-"Language-Team: Czech <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsopkg/cs/>\n"
-"Language: cs\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-"X-Generator: Weblate 4.15.1-dev\n"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
-msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
-msgid ""
-"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
-msgid "Actions"
-msgstr "Akce"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
-msgid "Allow overwriting conflicting package files"
-msgstr "Povolit přepsání souborů konfliktních balíčků"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
-msgid "Automatically remove unused dependencies"
-msgstr "Automatické odstranění nepoužívaných závislostí"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1218
-msgid "Available"
-msgstr "K dispozici"
-
-#: 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 ""
-"Níže je uveden seznam různých konfiguračních souborů, které <em>opkg</em> "
-"používá. Použijte <em>opkg.conf</em> pro globální nastavení a "
-"<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: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šit"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150
-msgid "Clear"
-msgstr "Prázdný"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
-msgid "Configure opkg…"
-msgstr "Nakonfigurujte opkg…"
-
-#: 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:750
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
-msgid "Description"
-msgstr "Popis"
-
-#: 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:1142
-msgid "Disk space"
-msgstr ""
-
-#: 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:1172
-msgid "Display LuCI translation packages"
-msgstr "Zobrazit balíčky překladů LuCI"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
-msgid "Display all available translation packages"
-msgstr "Zobrazit všechny dostupné balíčky překladů"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
-msgid ""
-"Display base translation packages and translation packages for already "
-"installed languages only"
-msgstr ""
-"Zobrazit základní balíčky překladů a balíčky překladů pro již nainstalované "
-"jazyky"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354
-msgid "Displaying %d-%d of %d"
-msgstr "Zobrazuji %d-%d z %d"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155
-msgid "Download and install package"
-msgstr "Stáhnout a nainstalovat balíček"
-
-#: 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:982
-msgid "Executing package manager"
-msgstr "Spuštění správce balíčků"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
-msgid "Filter"
-msgstr "Filtr"
-
-#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
-msgid "Grant access to opkg management"
-msgstr "Udělit přístup ke správě opkg"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1202
-msgid "Hide all translation packages"
-msgstr "Skrýt všechny balíčky překladů"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066
-msgid "Install"
-msgstr "Instalovat"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1133
-msgid "Install additional software and upgrade existing packages with opkg."
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
-msgid "Install suggested translation packages as well"
-msgstr "Instalovat také navrhované balíčky překladů"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
-msgid "Installed"
-msgstr "Instalováno"
-
-#: 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 ""
-"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:288
-msgid "Install…"
-msgstr "Instalovat…"
-
-#: 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:1084
-msgid "Loading package information…"
-msgstr "Načítání informací o balíčku…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
-msgid "MD5"
-msgstr "MD5"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
-msgid "Manually install package"
-msgstr "Ručně nainstalujte balíček"
-
-#: 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:1227
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
-msgid "Next page"
-msgstr "Další stránka"
-
-#: 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:355
-msgid "No packages"
-msgstr "Žádné balíčky"
-
-#: 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:542
-msgid "Not available"
-msgstr "Není dostupný"
-
-#: 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:1158
-msgid "OK"
-msgstr "OK"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
-msgid "OPKG Configuration"
-msgstr "Konfigurace OPKG"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
-msgid "Package name"
-msgstr "Název balíčku"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
-msgid "Package name or URL…"
-msgstr "Název balíčku nebo adresa URLL…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
-msgid "Previous page"
-msgstr "Předchozí stránka"
-
-#: 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:967
-msgid "Remove"
-msgstr "Odstranit"
-
-#: 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:276
-msgid "Remove…"
-msgstr "Odstranit…"
-
-#: 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: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: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: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:373
-msgid "Reset"
-msgstr "Reset"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
-msgid "SHA256"
-msgstr "SHA256"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
-msgid "Save"
-msgstr "Uložit"
-
-#: 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: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:1235
-msgid "Size (.ipk)"
-msgstr "Velikost (.ipk)"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
-#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
-msgid "Software"
-msgstr "Software"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
-msgid "Suggested translations"
-msgstr "Navrhované překlady"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
-msgid "Suggested translations require approx. %1024mB additional space."
-msgstr "Navrhované překlady vyžadují přibližně %1024mB dalšího prostoru."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
-msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
-msgstr "Příkaz <em>opkg %h</em> byl označen kódem <code>%d</code>."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
-msgid ""
-"The installed version of package <em>%h</em> is not compatible, require %s "
-"while %s is installed."
-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: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:530
-msgid ""
-"The repository version of package <em>%h</em> is not compatible, require %s "
-"but only %s is available."
-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:1149
-msgid "Type to filter…"
-msgstr "Začněte psát pro filtrování…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
-msgid "Unable to execute <em>opkg %s</em> command: %s"
-msgstr "Nelze provést <em>opkg %s</em> příkaz: %s"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871
-msgid "Unable to read %s: %s"
-msgstr "Nelze přečíst %s: %s"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910
-msgid "Unable to save %s: %s"
-msgstr "Nelze uložit %s: %s"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1165
-msgid "Update lists…"
-msgstr "Aktualizovat seznamy…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
-msgid "Updates"
-msgstr "Aktualizace"
-
-#: 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:1166
-msgid "Upload Package…"
-msgstr "Nahrát balíček…"
-
-#: 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:1234
-msgid "Version"
-msgstr "Verze"
-
-#: 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: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:1198
-msgctxt "Display translation packages"
-msgid "all"
-msgstr "vše"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
-msgctxt "Display translation packages"
-msgid "filtered"
-msgstr "filtrovaný"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
-msgctxt "Display translation packages"
-msgid "none"
-msgstr "žádný"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1143
-msgid "unknown"
-msgstr "neznámý"
-
-#: 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"
-
-#~ msgid "Free space"
-#~ msgstr "Volné místo"
-
-#~ msgid "Overwrite files from other package(s)"
-#~ msgstr "Přepsat soubory z jiných balíčků"
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2022-08-05 01:21+0000\n"
-"Last-Translator: drax red <drax@outlook.dk>\n"
-"Language-Team: Danish <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsopkg/da/>\n"
-"Language: da\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 4.14-dev\n"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
-msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
-msgid ""
-"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
-msgid "Actions"
-msgstr "Handlinger"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
-msgid "Allow overwriting conflicting package files"
-msgstr "Tillad overskrivning af modstridende pakkefiler"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
-msgid "Automatically remove unused dependencies"
-msgstr "Fjern automatisk ubrugte dependencies"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1218
-msgid "Available"
-msgstr "Tilgængelig"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
-msgid ""
-"Below is a listing of the various configuration files used by <em>opkg</em>. "
-"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
-"custom repository entries. The configuration in the other files may be "
-"changed but is usually not preserved by <em>sysupgrade</em>."
-msgstr ""
-"Nedenfor er en liste over de forskellige konfigurationsfiler, der anvendes "
-"af <em>opkg</em>. Brug<em>opkg.conf</em>til globale indstillinger og "
-"<em>customfeeds.conf</em> til brugerdefinerede poster i repositoriet. "
-"Konfigurationen i de andre filer kan ændres, men den bevares normalt ikke af "
-"<em>sysupgrade</em>."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
-msgid "Cancel"
-msgstr "Annuller"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150
-msgid "Clear"
-msgstr "Ryd"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
-msgid "Configure opkg…"
-msgstr "Konfigurer opkg…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
-msgid "Dependencies"
-msgstr "Dependencies"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
-msgid "Description"
-msgstr "Beskrivelse"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755
-msgid "Details for package <em>%h</em>"
-msgstr "Detaljer for pakke <em>%h</em>"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142
-msgid "Disk space"
-msgstr ""
-
-#: 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:1172
-msgid "Display LuCI translation packages"
-msgstr "Vis LuCI-oversættelsespakker"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
-msgid "Display all available translation packages"
-msgstr "Vis alle tilgængelige oversættelsespakker"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
-msgid ""
-"Display base translation packages and translation packages for already "
-"installed languages only"
-msgstr ""
-"Vis kun basisoversættelsespakker og oversættelsespakker til allerede "
-"installerede sprog"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354
-msgid "Displaying %d-%d of %d"
-msgstr "Viser %d-%d af %d"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155
-msgid "Download and install package"
-msgstr "Download og installer pakken"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
-msgid "Errors"
-msgstr "Fejl"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
-msgid "Executing package manager"
-msgstr "Udførelse af pakkeadministrator"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
-msgid "Filter"
-msgstr "Filter"
-
-#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
-msgid "Grant access to opkg management"
-msgstr "Giv adgang til opkg administration"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1202
-msgid "Hide all translation packages"
-msgstr "Skjul alle oversættelsespakker"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066
-msgid "Install"
-msgstr "Installer"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1133
-msgid "Install additional software and upgrade existing packages with opkg."
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
-msgid "Install suggested translation packages as well"
-msgstr "Installer også de foreslåede oversættelsespakker"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
-msgid "Installed"
-msgstr "Installeret"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
-msgid ""
-"Installing packages from untrusted sources is a potential security risk! "
-"Really attempt to install <em>%h</em>?"
-msgstr ""
-"Installation af pakker fra kilder, der ikke er tillid til, er en potentiel "
-"sikkerhedsrisiko! Forsøger du virkelig at installere <em>%h</em>?"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
-msgid "Install…"
-msgstr "Installer…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
-msgid "Loading configuration data…"
-msgstr "Indlæser konfigurationsdata…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
-msgid "Loading package information…"
-msgstr "Indlæser pakkeoplysninger…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
-msgid "MD5"
-msgstr "MD5"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
-msgid "Manually install package"
-msgstr "Installer pakke manuelt"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
-msgid "Needs upgrade"
-msgstr "Skal opgraderes"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
-msgid "Next page"
-msgstr "Næste side"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
-msgid "No information available"
-msgstr "Ingen oplysninger tilgængelige"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
-msgid "No packages"
-msgstr "Ingen pakker"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
-msgid "No packages matching \"<strong>%h</strong>\"."
-msgstr "Ingen pakker, der matcher \"<strong>%h</strong>\"."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
-msgid "Not available"
-msgstr "Ikke tilgængelig"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
-msgid "Not installed"
-msgstr "Ikke installeret"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
-msgid "OK"
-msgstr "OK"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
-msgid "OPKG Configuration"
-msgstr "OPKG konfiguration"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
-msgid "Package name"
-msgstr "Pakkenavn"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
-msgid "Package name or URL…"
-msgstr "Pakkenavn eller URL…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
-msgid "Previous page"
-msgstr "Forrige side"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
-msgid "Really attempt to install <em>%h</em>?"
-msgstr "Forsøger du virkelig at installere <em>%h</em>?"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
-msgid "Remove"
-msgstr "Fjern"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
-msgid "Remove package <em>%h</em>"
-msgstr "Fjern pakke <em>%h</em>"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
-msgid "Remove…"
-msgstr "Fjern…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
-msgid "Require approx. %1024mB size for %d package(s) to install."
-msgstr "Kræver ca. %1024mB størrelse for %d pakke(r) at installere."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
-msgid "Require version %h %h, installed %h"
-msgstr "Kræver version %h %h, installeret %h"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540
-msgid ""
-"Required dependency package <em>%h</em> is not available in any repository."
-msgstr ""
-"Påkrævet dependency pakke <em>%h</em> er ikke tilgængelig i noget repository."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508
-msgid "Requires update to %h %h"
-msgstr "Kræver opdatering til %h %h"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
-msgid "Reset"
-msgstr "Nulstil"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
-msgid "SHA256"
-msgstr "SHA256"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
-msgid "Save"
-msgstr "Gem"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
-msgid "Saving configuration data…"
-msgstr "Gemmer konfigurationsdata…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
-msgid "Size"
-msgstr "Størrelse"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
-msgid "Size (.ipk)"
-msgstr "Størrelse (.ipk)"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
-#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
-msgid "Software"
-msgstr "Software"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
-msgid "Suggested translations"
-msgstr "Forslag til oversættelser"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
-msgid "Suggested translations require approx. %1024mB additional space."
-msgstr "Foreslåede oversættelser kræver ca. %1024mB ekstra plads."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
-msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
-msgstr "Kommandoen <em>opkg %h</em> mislykkedes med koden <code>%d</code>."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
-msgid ""
-"The installed version of package <em>%h</em> is not compatible, require %s "
-"while %s is installed."
-msgstr ""
-"Den installerede version af pakken <em>%h</em> er ikke kompatibel, kræver %s "
-"mens %s er installeret."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833
-msgid "The package <em>%h</em> is not available in any configured repository."
-msgstr ""
-"Pakken <em>%h</em> er ikke tilgængelig i noget konfigureret repository."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530
-msgid ""
-"The repository version of package <em>%h</em> is not compatible, require %s "
-"but only %s is available."
-msgstr ""
-"repository version af pakken <em>%h</em> er ikke kompatibel, kræver %s, men "
-"kun %s er tilgængelig."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
-msgid "Type to filter…"
-msgstr "Skriv for at filtrere…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
-msgid "Unable to execute <em>opkg %s</em> command: %s"
-msgstr "Kan ikke udføre <em>opkg %s</em> kommando: %s"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871
-msgid "Unable to read %s: %s"
-msgstr "Kan ikke læse %s: %s"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910
-msgid "Unable to save %s: %s"
-msgstr "Kan ikke gemme %s: %s"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1165
-msgid "Update lists…"
-msgstr "Opdater lister…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
-msgid "Updates"
-msgstr "Opdateringer"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
-msgid "Upgrade…"
-msgstr "Opgrader…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1166
-msgid "Upload Package…"
-msgstr "Upload pakke…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1234
-msgid "Version"
-msgstr "Version"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
-msgid "Version incompatible"
-msgstr "Version inkompatibel"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
-msgid "Waiting for the <em>opkg %h</em> command to complete…"
-msgstr "Venter på at kommandoen <em>opkg %h</em> afsluttes…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1198
-msgctxt "Display translation packages"
-msgid "all"
-msgstr "alle"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
-msgctxt "Display translation packages"
-msgid "filtered"
-msgstr "filtreret"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
-msgctxt "Display translation packages"
-msgid "none"
-msgstr "ingen"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1143
-msgid "unknown"
-msgstr "ukendt"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
-msgid "~%1024mB compressed"
-msgstr "~%1024mB komprimeret"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
-msgid "~%1024mB installed"
-msgstr "~%1024mB installeret"
-
-#~ msgid "Free space"
-#~ msgstr "Ledig plads"
-
-#~ msgid "Overwrite files from other package(s)"
-#~ msgstr "Overskriv filer fra andre pakke(r)"
+++ /dev/null
-msgid ""
-msgstr ""
-"Project-Id-Version: \n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-05-26 17:57+0200\n"
-"PO-Revision-Date: 2024-03-23 00:13+0000\n"
-"Last-Translator: ssantos <ssantos@web.de>\n"
-"Language-Team: German <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsopkg/de/>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 5.5-dev\n"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
-msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
-msgstr "%s benutzt (%1024mB von %1024mB benutzt, %1024mB frei)"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
-msgid ""
-"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
-msgstr ""
-"<strong>Warnung!</strong> Paketoperationen können <a %s>Ihr System "
-"zerstören</a>."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
-msgid "Actions"
-msgstr "Aktionen"
-
-#: 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:1218
-msgid "Available"
-msgstr "Verfügbar"
-
-#: 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 ""
-"Dies ist eine Auflistung der verschiedenen von <em>opkg</em> genutzten "
-"Konfigurationsdateien. Die <em>opkg.conf</em>-Datei sollte für globale "
-"Einstellungen und die <em>customfeeds.conf</em>-Datei für benutzerdefinierte "
-"Repository-Einträge verwendet werden. Der Inhalt der anderen "
-"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: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:1150
-msgid "Clear"
-msgstr "Zurücksetzen"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
-msgid "Configure opkg…"
-msgstr "Konfiguriere opkg…"
-
-#: 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:750
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
-msgid "Description"
-msgstr "Beschreibung"
-
-#: 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:1142
-msgid "Disk space"
-msgstr "Plattenplatz"
-
-#: 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:1172
-msgid "Display LuCI translation packages"
-msgstr "LuCI Sprachpakete anzeigen"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
-msgid "Display all available translation packages"
-msgstr "Alle verfügbaren Sprachpakete anzeigen"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
-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:1155
-msgid "Download and install package"
-msgstr "Paket herunterladen und installieren"
-
-#: 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:982
-msgid "Executing package manager"
-msgstr "Paketmanager ausführen"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
-msgid "Filter"
-msgstr "Filter"
-
-#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
-msgid "Grant access to opkg management"
-msgstr "Zugriff auf die opkg-Verwaltung gewähren"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1202
-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:1133
-msgid "Install additional software and upgrade existing packages with opkg."
-msgstr ""
-"Installieren Sie zusätzliche Software und aktualisieren Sie bestehende "
-"Pakete mit opkg."
-
-#: 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:1219
-msgid "Installed"
-msgstr "Installiert"
-
-#: 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 ""
-"Die Installation von Paketen aus unbekannten Quellen ist ein mögliches "
-"Sicherheitsrisiko! Soll wirklich versucht werden, <em>%h</em> zu "
-"installieren?"
-
-#: 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:857
-msgid "Loading configuration data…"
-msgstr "Lade Konfigurationsdaten…"
-
-#: 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:1046
-msgid "MD5"
-msgstr "MD5"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
-msgid "Manually install package"
-msgstr "Paket manuell installieren"
-
-#: 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:1227
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
-msgid "Next page"
-msgstr "Nächste Seite"
-
-#: 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:355
-msgid "No packages"
-msgstr "Keine Pakete"
-
-#: 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:542
-msgid "Not available"
-msgstr "Nicht verfügbar"
-
-#: 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:1158
-msgid "OK"
-msgstr "OK"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
-msgid "OPKG Configuration"
-msgstr "OPKG-Konfiguration"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
-msgid "Package name"
-msgstr "Paketname"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
-msgid "Package name or URL…"
-msgstr "Paketname oder URL…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
-msgid "Previous page"
-msgstr "Vorige Seite"
-
-#: 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:967
-msgid "Remove"
-msgstr "Entfernen"
-
-#: 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:276
-msgid "Remove…"
-msgstr "Entfernen…"
-
-#: 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)."
-
-#: 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: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: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:373
-msgid "Reset"
-msgstr "Zurücksetzen"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
-msgid "SHA256"
-msgstr "SHA256"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
-msgid "Save"
-msgstr "Speichern"
-
-#: 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: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:1235
-msgid "Size (.ipk)"
-msgstr "Größe (.ipk)"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
-#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
-msgid "Software"
-msgstr "Paketverwaltung"
-
-#: 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:513
-msgid ""
-"The installed version of package <em>%h</em> is not compatible, require %s "
-"while %s is installed."
-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: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:530
-msgid ""
-"The repository version of package <em>%h</em> is not compatible, require %s "
-"but only %s is available."
-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:1149
-msgid "Type to filter…"
-msgstr "Tippen zum Filtern…"
-
-#: 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:871
-msgid "Unable to read %s: %s"
-msgstr "Kann %s nicht lesen: %s"
-
-#: 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:1165
-msgid "Update lists…"
-msgstr "Listen aktualisieren…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
-msgid "Updates"
-msgstr "Aktualisierungen"
-
-#: 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:1166
-msgid "Upload Package…"
-msgstr "Paket hochladen…"
-
-#: 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:1234
-msgid "Version"
-msgstr "Version"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
-msgid "Version incompatible"
-msgstr "Version inkompatibel"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
-msgid "Waiting for the <em>opkg %h</em> command to complete…"
-msgstr "Warte auf das <em>opkg %h</em> Kommando…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1198
-msgctxt "Display translation packages"
-msgid "all"
-msgstr "alle"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
-msgctxt "Display translation packages"
-msgid "filtered"
-msgstr "gefiltert"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
-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:1143
-msgid "unknown"
-msgstr "unbekannt"
-
-#: 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"
-
-#~ msgid "Free space"
-#~ msgstr "Freier Platz"
-
-#~ msgid "Overwrite files from other package(s)"
-#~ msgstr "Überschreiben von Dateien anderer Pakete erlauben"
-
-#~ msgid ""
-#~ "Require version %h %h,\n"
-#~ "installed %h"
-#~ msgstr ""
-#~ "Benötige Version %h %h,\n"
-#~ "aber %h installiert"
+++ /dev/null
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-06-10 03:40+0200\n"
-"PO-Revision-Date: 2020-01-14 15:22+0000\n"
-"Last-Translator: Franco Castillo <castillofrancodamian@gmail.com>\n"
-"Language-Team: Greek <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsopkg/el/>\n"
-"Language: el\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 3.11-dev\n"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
-msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
-msgid ""
-"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
-msgid "Actions"
-msgstr "Ενέργειες"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
-msgid "Allow overwriting conflicting package files"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
-msgid "Automatically remove unused dependencies"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1218
-msgid "Available"
-msgstr "Διαθέσιμο"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
-msgid ""
-"Below is a listing of the various configuration files used by <em>opkg</em>. "
-"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
-"custom repository entries. The configuration in the other files may be "
-"changed but is usually not preserved by <em>sysupgrade</em>."
-msgstr ""
-
-#: 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:1150
-msgid "Clear"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
-#, fuzzy
-msgid "Configure opkg…"
-msgstr "Παραμετροποίηση"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
-msgid "Dependencies"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
-msgid "Description"
-msgstr "Περιγραφή"
-
-#: 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:1142
-msgid "Disk space"
-msgstr ""
-
-#: 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:1172
-msgid "Display LuCI translation packages"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
-msgid "Display all available translation packages"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
-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:1155
-msgid "Download and install package"
-msgstr "Κατέβασμα και εγκατάσταση πακέτου"
-
-#: 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:982
-msgid "Executing package manager"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
-msgid "Filter"
-msgstr "Φίλτρο"
-
-#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
-msgid "Grant access to opkg management"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1202
-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:1133
-msgid "Install additional software and upgrade existing packages with opkg."
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
-msgid "Install suggested translation packages as well"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
-#, fuzzy
-msgid "Installed"
-msgstr "Εγκατάσταση"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
-msgid ""
-"Installing packages from untrusted sources is a potential security risk! "
-"Really attempt to install <em>%h</em>?"
-msgstr ""
-
-#: 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:857
-#, fuzzy
-msgid "Loading configuration data…"
-msgstr "Μετάβαση στη σχετική σελίδα ρυθμίσεων"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
-msgid "Loading package information…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
-msgid "MD5"
-msgstr "MD5"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
-#, fuzzy
-msgid "Manually install package"
-msgstr "Κατέβασμα και εγκατάσταση πακέτου"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
-msgid "Needs upgrade"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
-msgid "Next page"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
-msgid "No information available"
-msgstr "Δεν υπάρχουν πληροφορίες διαθέσιμες"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
-#, fuzzy
-msgid "No packages"
-msgstr "Εύρεση πακέτου"
-
-#: 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:542
-#, fuzzy
-msgid "Not available"
-msgstr "Διαθέσιμο Συνολικά"
-
-#: 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:1158
-msgid "OK"
-msgstr "Εντάξει"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
-#, fuzzy
-msgid "OPKG Configuration"
-msgstr "Παραμετροποίηση OPKG"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
-msgid "Package name"
-msgstr "Όνομα πακέτου"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
-#, fuzzy
-msgid "Package name or URL…"
-msgstr "Όνομα πακέτου"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
-msgid "Previous page"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
-msgid "Really attempt to install <em>%h</em>?"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
-msgid "Remove"
-msgstr "Αφαίρεση"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
-msgid "Remove package <em>%h</em>"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
-msgid "Remove…"
-msgstr "Αφαίρεση…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
-msgid "Require approx. %1024mB size for %d package(s) to install."
-msgstr ""
-
-#: 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: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:508
-msgid "Requires update to %h %h"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
-msgid "Reset"
-msgstr "Αρχικοποίηση"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
-msgid "SHA256"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
-msgid "Save"
-msgstr "Αποθήκευση"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
-#, fuzzy
-msgid "Saving configuration data…"
-msgstr "Παραμετροποίηση Συσκευής"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
-msgid "Size"
-msgstr "Μέγεθος"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
-msgid "Size (.ipk)"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
-#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
-msgid "Software"
-msgstr "Λογισμικό"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
-msgid "Suggested translations"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
-msgid "Suggested translations require approx. %1024mB additional space."
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
-msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
-msgstr ""
-
-#: 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: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: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:1149
-msgid "Type to filter…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
-msgid "Unable to execute <em>opkg %s</em> command: %s"
-msgstr ""
-
-#: 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:910
-msgid "Unable to save %s: %s"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1165
-msgid "Update lists…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
-msgid "Updates"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
-msgid "Upgrade…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1166
-msgid "Upload Package…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1234
-msgid "Version"
-msgstr "Έκδοση"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
-msgid "Version incompatible"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
-msgid "Waiting for the <em>opkg %h</em> command to complete…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1198
-msgctxt "Display translation packages"
-msgid "all"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
-msgctxt "Display translation packages"
-msgid "filtered"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
-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:1143
-msgid "unknown"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
-msgid "~%1024mB compressed"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
-msgid "~%1024mB installed"
-msgstr ""
-
-#~ msgid "Free space"
-#~ msgstr "Ελεύθερος χώρος"
+++ /dev/null
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-06-10 03:40+0200\n"
-"PO-Revision-Date: 2023-11-30 14:34+0000\n"
-"Last-Translator: rygle <pittos@post.com>\n"
-"Language-Team: English <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsopkg/en/>\n"
-"Language: en\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 5.3-dev\n"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
-msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
-msgid ""
-"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
-msgid "Actions"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
-msgid "Allow overwriting conflicting package files"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
-msgid "Automatically remove unused dependencies"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1218
-msgid "Available"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
-msgid ""
-"Below is a listing of the various configuration files used by <em>opkg</em>. "
-"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
-"custom repository entries. The configuration in the other files may be "
-"changed but is usually not preserved by <em>sysupgrade</em>."
-msgstr ""
-
-#: 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"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150
-msgid "Clear"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
-msgid "Configure opkg…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
-msgid "Dependencies"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
-msgid "Description"
-msgstr ""
-
-#: 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:1142
-msgid "Disk space"
-msgstr ""
-
-#: 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:1172
-msgid "Display LuCI translation packages"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
-msgid "Display all available translation packages"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
-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:1155
-msgid "Download and install package"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
-msgid "Errors"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
-msgid "Executing package manager"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
-msgid "Filter"
-msgstr ""
-
-#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
-msgid "Grant access to opkg management"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1202
-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:1133
-msgid "Install additional software and upgrade existing packages with opkg."
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
-msgid "Install suggested translation packages as well"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
-msgid "Installed"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
-msgid ""
-"Installing packages from untrusted sources is a potential security risk! "
-"Really attempt to install <em>%h</em>?"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
-msgid "Install…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
-msgid "Loading configuration data…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
-msgid "Loading package information…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
-msgid "MD5"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
-msgid "Manually install package"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
-msgid "Needs upgrade"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
-msgid "Next page"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
-msgid "No information available"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
-msgid "No packages"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
-msgid "No packages matching \"<strong>%h</strong>\"."
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
-msgid "Not available"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
-msgid "Not installed"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
-msgid "OK"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
-msgid "OPKG Configuration"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
-msgid "Package name"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
-msgid "Package name or URL…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
-msgid "Previous page"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
-msgid "Really attempt to install <em>%h</em>?"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
-msgid "Remove"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
-msgid "Remove package <em>%h</em>"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
-msgid "Remove…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
-msgid "Require approx. %1024mB size for %d package(s) to install."
-msgstr ""
-
-#: 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: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:508
-msgid "Requires update to %h %h"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
-msgid "Reset"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
-msgid "SHA256"
-msgstr "SHA256"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
-msgid "Save"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
-msgid "Saving configuration data…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
-msgid "Size"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
-msgid "Size (.ipk)"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
-#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
-msgid "Software"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
-msgid "Suggested translations"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
-msgid "Suggested translations require approx. %1024mB additional space."
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
-msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
-msgstr ""
-
-#: 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: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: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:1149
-msgid "Type to filter…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
-msgid "Unable to execute <em>opkg %s</em> command: %s"
-msgstr ""
-
-#: 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:910
-msgid "Unable to save %s: %s"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1165
-msgid "Update lists…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
-msgid "Updates"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
-msgid "Upgrade…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1166
-msgid "Upload Package…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1234
-msgid "Version"
-msgstr "Version"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
-msgid "Version incompatible"
-msgstr ""
-
-#: 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:1198
-msgctxt "Display translation packages"
-msgid "all"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
-msgctxt "Display translation packages"
-msgid "filtered"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
-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:1143
-msgid "unknown"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
-msgid "~%1024mB compressed"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
-msgid "~%1024mB installed"
-msgstr ""
+++ /dev/null
-msgid ""
-msgstr ""
-"Project-Id-Version: \n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-06-10 03:41+0200\n"
-"PO-Revision-Date: 2024-07-17 00:19+0000\n"
-"Last-Translator: brodrigueznu <brodrigueznu@hotmail.com>\n"
-"Language-Team: Spanish <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsopkg/es/>\n"
-"Language: es\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 5.7-dev\n"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
-msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
-msgstr "%s usados (%1024mB usados de %1024mB, %1024mB libres)"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
-msgid ""
-"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
-msgstr ""
-"<strong>¡Advertencia!</strong> Las operaciones de paquetes pueden <a "
-"%s>romper su sistema</a>."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
-msgid "Actions"
-msgstr "Acciones"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
-msgid "Allow overwriting conflicting package files"
-msgstr "Permitir sobrescribir archivos de paquetes en conflicto"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
-msgid "Automatically remove unused dependencies"
-msgstr "Eliminar automáticamente las dependencias no utilizadas"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1218
-msgid "Available"
-msgstr "Disponible"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
-msgid ""
-"Below is a listing of the various configuration files used by <em>opkg</em>. "
-"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
-"custom repository entries. The configuration in the other files may be "
-"changed but is usually not preserved by <em>sysupgrade</em>."
-msgstr ""
-"A continuación se muestra una lista de los diversos archivos de "
-"configuración utilizados por <em>opkg</em>. Use <em>opkg.conf</em> para la "
-"configuración global y <em>customfeeds.conf</em> para entradas de "
-"repositorio personalizadas. La configuración en los otros archivos puede "
-"cambiarse, pero por lo general no se conserva mediante <em>sysupgrade</em>."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js: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:1150
-msgid "Clear"
-msgstr "Limpiar"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
-msgid "Configure opkg…"
-msgstr "Configurar opkg…"
-
-#: 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:750
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
-msgid "Description"
-msgstr "Descripción"
-
-#: 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:1142
-msgid "Disk space"
-msgstr "Espacio en disco"
-
-#: 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:1172
-msgid "Display LuCI translation packages"
-msgstr "Mostrar paquetes de traducción de LuCI"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
-msgid "Display all available translation packages"
-msgstr "Mostrar todos los paquetes de traducción disponibles"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
-msgid ""
-"Display base translation packages and translation packages for already "
-"installed languages only"
-msgstr ""
-"Mostrar paquetes de traducción base y paquetes de traducción solo para "
-"idiomas ya instalados"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354
-msgid "Displaying %d-%d of %d"
-msgstr "Mostrando %d-%d de %d"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155
-msgid "Download and install package"
-msgstr "Descargar e instalar paquete"
-
-#: 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:982
-msgid "Executing package manager"
-msgstr "Ejecutando el gestor de paquetes"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
-msgid "Filter"
-msgstr "Filtro"
-
-#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
-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:1202
-msgid "Hide all translation packages"
-msgstr "Ocultar todos los paquetes de traducción"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066
-msgid "Install"
-msgstr "Instalar"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1133
-msgid "Install additional software and upgrade existing packages with opkg."
-msgstr ""
-"Instale software adicional y actualice los paquetes existentes con opkg."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
-msgid "Install suggested translation packages as well"
-msgstr "Instalar también los paquetes de traducción sugeridos"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
-msgid "Installed"
-msgstr "Instalado"
-
-#: 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 ""
-"¡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:288
-msgid "Install…"
-msgstr "Instalar…"
-
-#: 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:1084
-msgid "Loading package information…"
-msgstr "Cargando información del paquete…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
-msgid "MD5"
-msgstr "MD5"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
-msgid "Manually install package"
-msgstr "Instalar manualmente el paquete"
-
-#: 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:1227
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
-msgid "Next page"
-msgstr "Página siguiente"
-
-#: 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:355
-msgid "No packages"
-msgstr "Sin paquetes"
-
-#: 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:542
-msgid "Not available"
-msgstr "No disponible"
-
-#: 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:1158
-msgid "OK"
-msgstr "Aceptar"
-
-#: 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:1233
-msgid "Package name"
-msgstr "Nombre del paquete"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
-msgid "Package name or URL…"
-msgstr "Nombre de paquete o URL…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
-msgid "Previous page"
-msgstr "Página anterior"
-
-#: 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:967
-msgid "Remove"
-msgstr "Eliminar"
-
-#: 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:276
-msgid "Remove…"
-msgstr "Desinstalar…"
-
-#: 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: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: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: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:373
-msgid "Reset"
-msgstr "Restablecer"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
-msgid "SHA256"
-msgstr "SHA256"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
-msgid "Save"
-msgstr "Guardar"
-
-#: 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: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:1235
-msgid "Size (.ipk)"
-msgstr "Tamaño (.ipk)"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
-#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
-msgid "Software"
-msgstr "Software"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
-msgid "Suggested translations"
-msgstr "Traducciones sugeridas"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
-msgid "Suggested translations require approx. %1024mB additional space."
-msgstr ""
-"Las traducciones sugeridas requieren aprox. %1024mB de espacio adicional."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
-msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
-msgstr "El comando <em>opkg %h</em> falló con el código <code>%d</code>."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
-msgid ""
-"The installed version of package <em>%h</em> is not compatible, require %s "
-"while %s is installed."
-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: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:530
-msgid ""
-"The repository version of package <em>%h</em> is not compatible, require %s "
-"but only %s is available."
-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:1149
-msgid "Type to filter…"
-msgstr "Escriba para filtrar…"
-
-#: 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: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: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:1165
-msgid "Update lists…"
-msgstr "Actualizar listas…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
-msgid "Updates"
-msgstr "Actualizaciones"
-
-#: 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:1166
-msgid "Upload Package…"
-msgstr "Subir paquete…"
-
-#: 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:1234
-msgid "Version"
-msgstr "Versión"
-
-#: 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: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:1198
-msgctxt "Display translation packages"
-msgid "all"
-msgstr "todos"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
-msgctxt "Display translation packages"
-msgid "filtered"
-msgstr "filtrado"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
-msgctxt "Display translation packages"
-msgid "none"
-msgstr "ninguno"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1143
-msgid "unknown"
-msgstr "desconocido"
-
-#: 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"
-
-#~ msgid "Free space"
-#~ msgstr "Espacio libre"
-
-#~ msgid "Overwrite files from other package(s)"
-#~ msgstr "Sobrescribir archivos de otro/s paquete/s"
-
-#~ msgid ""
-#~ "Require version %h %h,\n"
-#~ "installed %h"
-#~ msgstr ""
-#~ "Requiere versión %h %h,\n"
-#~ "instalado %h"
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2024-10-19 18:21+0000\n"
-"Last-Translator: Danial Behzadi <dani.behzi@ubuntu.com>\n"
-"Language-Team: Persian <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsopkg/fa/>\n"
-"Language: fa\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: Weblate 5.8-rc\n"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
-msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
-msgstr "%s استفاده شده (%1024mB از %1024mB استفاده شده. %1024mB آزاد)"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
-msgid ""
-"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
-msgstr ""
-"<strong>هشدار!</strong> عملیات بسته میتواند <a %s>سامانهتان را خراب کند</a>."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
-msgid "Actions"
-msgstr "کنشها"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
-msgid "Allow overwriting conflicting package files"
-msgstr "بازنویسی فایل های بسته متضاد را مجاز کنید"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
-msgid "Automatically remove unused dependencies"
-msgstr "حذف اتوماتیک پیش نیازهای بدون استفاده"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1218
-msgid "Available"
-msgstr "موجود"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
-msgid ""
-"Below is a listing of the various configuration files used by <em>opkg</em>. "
-"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
-"custom repository entries. The configuration in the other files may be "
-"changed but is usually not preserved by <em>sysupgrade</em>."
-msgstr ""
-"در زیر فهرستی از فایل های پیکربندی مختلف مورد استفاده توسط <em>opkg</em> "
-"است. استفاده از <em>opkg.conf</em> برای تنظیمات جهانی و <em>customfeeds."
-"conf</em> برای ورودی های مخزن سفارشی است. پیکربندی در فایل های دیگر ممکن است "
-"تغییر کند اما معمولاً توسط <em>sysupgrade</em> حفظ نمی شود."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
-msgid "Cancel"
-msgstr "لغو"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150
-msgid "Clear"
-msgstr "پاک کردن"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
-msgid "Configure opkg…"
-msgstr "پیکربندی opkg…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
-msgid "Dependencies"
-msgstr "وابستگی ها"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
-msgid "Description"
-msgstr "شرح"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755
-msgid "Details for package <em>%h</em>"
-msgstr "جزئیات مربوط به بسته بندی <em>%h</em>"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142
-msgid "Disk space"
-msgstr "فضای ذخیره سازی"
-
-#: 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:1172
-msgid "Display LuCI translation packages"
-msgstr "نمایش بسته های ترجمه LuCI"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
-msgid "Display all available translation packages"
-msgstr "نمایش همه موارد موجود در بسته های ترجمه"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
-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:1155
-msgid "Download and install package"
-msgstr "دانلود و نصب بسته"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
-msgid "Errors"
-msgstr "خطاها"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
-msgid "Executing package manager"
-msgstr "در حال اجرای مدیر بسته"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
-msgid "Filter"
-msgstr "پالایه"
-
-#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
-msgid "Grant access to opkg management"
-msgstr "اعطای دسترسی به مدیریت opkg"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1202
-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:1133
-msgid "Install additional software and upgrade existing packages with opkg."
-msgstr "نصب نرمافزارهای اضافی و ارتقای بستههای موجود با opkg."
-
-#: 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:1219
-msgid "Installed"
-msgstr "نصب شد"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
-msgid ""
-"Installing packages from untrusted sources is a potential security risk! "
-"Really attempt to install <em>%h</em>?"
-msgstr ""
-"نصب بسته ها از منابع نامعتبر یک خطر امنیتی بالقوه است! آیا واقعاً سعی میکنید "
-"<em>%h</em> را نصب کنید؟"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
-msgid "Install…"
-msgstr "نصب…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
-msgid "Loading configuration data…"
-msgstr "در حال بارگیری داده های پیکربندی…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
-msgid "Loading package information…"
-msgstr "در حال بارگیری اطلاعات بسته…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
-msgid "MD5"
-msgstr "MD5"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
-msgid "Manually install package"
-msgstr "بسته را به صورت دستی نصب کنید"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
-msgid "Needs upgrade"
-msgstr "نیاز به ارتقا دارد"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
-msgid "Next page"
-msgstr "صفحه بعد"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
-msgid "No information available"
-msgstr "اطلاعاتی در دسترس نیست"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
-msgid "No packages"
-msgstr "بدون بسته"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
-msgid "No packages matching \"<strong>%h</strong>\"."
-msgstr "هیچ بسته ای مطابق با «<strong>%h</strong>» وجود ندارد."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
-msgid "Not available"
-msgstr "در دسترس نیست"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
-msgid "Not installed"
-msgstr "نصب نشده است"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
-msgid "OK"
-msgstr "تایید"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
-msgid "OPKG Configuration"
-msgstr "پیکربندی OPKG"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
-msgid "Package name"
-msgstr "نام بسته"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
-msgid "Package name or URL…"
-msgstr "نام بسته یا نشانی وب…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
-msgid "Previous page"
-msgstr "صفحه قبلی"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
-msgid "Really attempt to install <em>%h</em>?"
-msgstr "آیا واقعاً سعی میکنید <em>%h</em> را نصب کنید؟"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
-msgid "Remove"
-msgstr "برداشتن"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
-msgid "Remove package <em>%h</em>"
-msgstr "بسته <em>%h</em> را حذف کنید"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
-msgid "Remove…"
-msgstr "حذف…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
-msgid "Require approx. %1024mB size for %d package(s) to install."
-msgstr "نیاز به حدود اندازه %1024 مگابایت برای %d بسته(های) برای نصب."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
-msgid "Require version %h %h, installed %h"
-msgstr "نیاز به نسخه %h% .h %h نصب شده است"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540
-msgid ""
-"Required dependency package <em>%h</em> is not available in any repository."
-msgstr "بسته وابستگی مورد نیاز <em>%h</em> در هیچ مخزنی موجود نیست."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508
-msgid "Requires update to %h %h"
-msgstr "نیاز به بروز رسانی به %h %h"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
-msgid "Reset"
-msgstr "بازنشانی"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
-msgid "SHA256"
-msgstr "SHA256"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
-msgid "Save"
-msgstr "ذخیره"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
-msgid "Saving configuration data…"
-msgstr "در حال ذخیره داده های پیکربندی…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
-msgid "Size"
-msgstr "اندازه"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
-msgid "Size (.ipk)"
-msgstr "اندازه (ipk.)"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
-#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
-msgid "Software"
-msgstr "نرم افزار"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
-msgid "Suggested translations"
-msgstr "ترجمه های پیشنهادی"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
-msgid "Suggested translations require approx. %1024mB additional space."
-msgstr "ترجمه های پیشنهادی نیاز به فضای اضافی ٪1024mB دارند."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
-msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
-msgstr "فرمان <em>opkg %h</em> با کد <code>%d</code> ناموفق بود."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
-msgid ""
-"The installed version of package <em>%h</em> is not compatible, require %s "
-"while %s is installed."
-msgstr ""
-"نسخه نصب شده بسته <em>%h</em> سازگار نیست، تا زمانی که %s نصب شده باشد به %s "
-"نیاز دارید."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833
-msgid "The package <em>%h</em> is not available in any configured repository."
-msgstr "بسته <em>%h</em> در هیچ مخزن پیکربندی شده ای موجود نیست."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530
-msgid ""
-"The repository version of package <em>%h</em> is not compatible, require %s "
-"but only %s is available."
-msgstr ""
-"نسخه مخزن بسته <em>%h</em> سازگار نیست، به %s نیاز دارد اما فقط %s موجود است."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
-msgid "Type to filter…"
-msgstr "برای فیلتر کردن تایپ کنید …"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
-msgid "Unable to execute <em>opkg %s</em> command: %s"
-msgstr "فرمان <em>opkg %s</em> را نمیتوان اجرا کرد: %s"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871
-msgid "Unable to read %s: %s"
-msgstr "قادر به خواندن %s: %s نیست"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910
-msgid "Unable to save %s: %s"
-msgstr "قادر به ذخیره %s: %s نیست"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1165
-msgid "Update lists…"
-msgstr "به روز رسانی لیست ها…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
-msgid "Updates"
-msgstr "به روز رسانی ها"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
-msgid "Upgrade…"
-msgstr "ارتقا…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1166
-msgid "Upload Package…"
-msgstr "آپلود بسته…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1234
-msgid "Version"
-msgstr "نسخه"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
-msgid "Version incompatible"
-msgstr "نسخه ناسازگار است"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
-msgid "Waiting for the <em>opkg %h</em> command to complete…"
-msgstr "در انتظار تکمیل شدن دستور <em>opkg %h</em>…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1198
-msgctxt "Display translation packages"
-msgid "all"
-msgstr "همه"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
-msgctxt "Display translation packages"
-msgid "filtered"
-msgstr "فیلتر شده"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
-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:1143
-msgid "unknown"
-msgstr "ناشناخته"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
-msgid "~%1024mB compressed"
-msgstr "~% 1024 مگابایت فشرده شده است"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
-msgid "~%1024mB installed"
-msgstr "~% 1024 مگابایت نصب شده است"
-
-#~ msgid "Free space"
-#~ msgstr "فضای خالی"
+++ /dev/null
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-06-10 03:40+0200\n"
-"PO-Revision-Date: 2023-10-18 05:43+0000\n"
-"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n"
-"Language-Team: Finnish <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsopkg/fi/>\n"
-"Language: fi\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 5.1\n"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
-msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
-msgid ""
-"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
-msgid "Actions"
-msgstr "Toiminnot"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
-msgid "Allow overwriting conflicting package files"
-msgstr "Salli ristiriitoja aiheuttavien pakettien ylikirjoittaminen"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
-msgid "Automatically remove unused dependencies"
-msgstr "Poista tarpeettomat riippuvuudet automaattisesti"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1218
-msgid "Available"
-msgstr "Saatavilla"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
-msgid ""
-"Below is a listing of the various configuration files used by <em>opkg</em>. "
-"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
-"custom repository entries. The configuration in the other files may be "
-"changed but is usually not preserved by <em>sysupgrade</em>."
-msgstr ""
-"Alla on luettelo <em>opkg</em>:n käyttämistä määritystiedostoista. Käytä "
-"<em>opkg.conf</em>-tiedostoa yleisiä asetuksia varten ja <em>customfeeds."
-"conf</em>-tiedostoa mukautettujen arkistojen merkinnöille. Voit toki muuttaa "
-"myös muita tiedostoja, mutta <em>sysupgrade</em> ei yleensä säilytä "
-"muutoksia."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
-msgid "Cancel"
-msgstr "Peruuta"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150
-msgid "Clear"
-msgstr "Tyhjennä"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
-msgid "Configure opkg…"
-msgstr "Määritä opkg…"
-
-#: 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:750
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
-msgid "Description"
-msgstr "Kuvaus"
-
-#: 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:1142
-msgid "Disk space"
-msgstr ""
-
-#: 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:1172
-msgid "Display LuCI translation packages"
-msgstr "Näytä LuCI:n kielikäännöspaketit"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
-msgid "Display all available translation packages"
-msgstr "Näytä kaikki saatavilla olevat kielikäännöspaketit"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
-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:1155
-msgid "Download and install package"
-msgstr "Lataa ja asenna paketti"
-
-#: 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:982
-msgid "Executing package manager"
-msgstr "Suoritetaan paketinhallintaa"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
-msgid "Filter"
-msgstr "Suodatin"
-
-#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
-msgid "Grant access to opkg management"
-msgstr "Salli pääsy pakettiasennusten hallintaan (opkg)"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1202
-msgid "Hide all translation packages"
-msgstr "Piilota kaikki kielikäännöspaketit"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066
-msgid "Install"
-msgstr "Asenna"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1133
-msgid "Install additional software and upgrade existing packages with opkg."
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
-msgid "Install suggested translation packages as well"
-msgstr "Asenna myös ehdotetut kielikäännöspaketit"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
-msgid "Installed"
-msgstr "Asennettu"
-
-#: 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 ""
-"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:288
-msgid "Install…"
-msgstr "Asenna…"
-
-#: 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:1084
-msgid "Loading package information…"
-msgstr "Ladataan paketin tietoja…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
-msgid "MD5"
-msgstr "MD5"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
-msgid "Manually install package"
-msgstr "Asenna paketti käsin"
-
-#: 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:1227
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
-msgid "Next page"
-msgstr "Seuraava sivu"
-
-#: 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:355
-msgid "No packages"
-msgstr "Ei paketteja"
-
-#: 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:542
-msgid "Not available"
-msgstr "Ei saatavilla"
-
-#: 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:1158
-msgid "OK"
-msgstr "OK"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
-msgid "OPKG Configuration"
-msgstr "OPKG-määritys"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
-msgid "Package name"
-msgstr "Paketin nimi"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
-msgid "Package name or URL…"
-msgstr "Paketin nimi tai URL…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
-msgid "Previous page"
-msgstr "Edellinen sivu"
-
-#: 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:967
-msgid "Remove"
-msgstr "Poista"
-
-#: 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:276
-msgid "Remove…"
-msgstr "Poista…"
-
-#: 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: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: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: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:373
-msgid "Reset"
-msgstr "Palauta"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
-msgid "SHA256"
-msgstr "SHA256"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
-msgid "Save"
-msgstr "Tallenna"
-
-#: 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: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:1235
-msgid "Size (.ipk)"
-msgstr "Koko (.ipk)"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
-#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
-msgid "Software"
-msgstr "Ohjelmisto"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
-msgid "Suggested translations"
-msgstr "Ehdotetut kielikäännökset"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
-msgid "Suggested translations require approx. %1024mB additional space."
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
-msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
-msgstr "<em>opkg %h</em> -komento epäonnistui koodilla <code>%d</code>."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
-msgid ""
-"The installed version of package <em>%h</em> is not compatible, require %s "
-"while %s is installed."
-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: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:530
-msgid ""
-"The repository version of package <em>%h</em> is not compatible, require %s "
-"but only %s is available."
-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:1149
-msgid "Type to filter…"
-msgstr "Kirjoita suodattaaksesi…"
-
-#: 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:871
-msgid "Unable to read %s: %s"
-msgstr "Ei voida lukea %s: %s"
-
-#: 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:1165
-msgid "Update lists…"
-msgstr "Päivitä luettelot…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
-msgid "Updates"
-msgstr "Päivitykset"
-
-#: 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:1166
-msgid "Upload Package…"
-msgstr "Lähetä paketti…"
-
-#: 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:1234
-msgid "Version"
-msgstr "Versio"
-
-#: 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: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:1198
-msgctxt "Display translation packages"
-msgid "all"
-msgstr "kaikki"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
-msgctxt "Display translation packages"
-msgid "filtered"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
-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:1143
-msgid "unknown"
-msgstr "tuntematon"
-
-#: 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"
-
-#~ msgid "Free space"
-#~ msgstr "Vapaa levytila"
-
-#~ msgid "Overwrite files from other package(s)"
-#~ msgstr "Korvaa tiedostoja muista paketeista"
+++ /dev/null
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-06-10 03:40+0200\n"
-"PO-Revision-Date: 2023-06-11 22:12+0000\n"
-"Last-Translator: viking76 <liaudetgael@gmail.com>\n"
-"Language-Team: French <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsopkg/fr/>\n"
-"Language: fr\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: Weblate 4.18-dev\n"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
-msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
-msgid ""
-"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
-msgid "Actions"
-msgstr "Actions"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
-msgid "Allow overwriting conflicting package files"
-msgstr "Autoriser l'écrasement des fichiers en conflit du package"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
-msgid "Automatically remove unused dependencies"
-msgstr "Supprimez automatiquement les dépendances inutilisées"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1218
-msgid "Available"
-msgstr "Disponible"
-
-#: 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 ""
-"Vous trouverez ci-dessous une liste des différents fichiers de configuration "
-"utilisés par <em>opkg</em>. Utilisez <em>opkg.conf</em> pour les paramètres "
-"globaux et <em>customfeeds.conf</em> pour les entrées de référentiel "
-"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: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:1150
-msgid "Clear"
-msgstr "Nettoyer"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
-msgid "Configure opkg…"
-msgstr "Configuration opkg…"
-
-#: 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:750
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
-msgid "Description"
-msgstr "Description"
-
-#: 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:1142
-msgid "Disk space"
-msgstr ""
-
-#: 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:1172
-msgid "Display LuCI translation packages"
-msgstr "Afficher les paquets de traduction LuCI"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
-msgid "Display all available translation packages"
-msgstr "Afficher tous les paquets de traduction disponibles"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
-msgid ""
-"Display base translation packages and translation packages for already "
-"installed languages only"
-msgstr ""
-"Afficher uniquement les paquets de traduction de base et les paquets de "
-"traduction pour les langues déjà installées"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354
-msgid "Displaying %d-%d of %d"
-msgstr "Affichage de %d-%d sur %d"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155
-msgid "Download and install package"
-msgstr "Télécharge et installe le paquet"
-
-#: 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:982
-msgid "Executing package manager"
-msgstr "Exécution du gestionnaire de packages"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
-msgid "Filter"
-msgstr "Filtrer"
-
-#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
-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:1202
-msgid "Hide all translation packages"
-msgstr "Masquer tous les paquets de traduction"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066
-msgid "Install"
-msgstr "Installer"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1133
-msgid "Install additional software and upgrade existing packages with opkg."
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
-msgid "Install suggested translation packages as well"
-msgstr "Installer également les paquets de traduction suggérés"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
-msgid "Installed"
-msgstr "Installé"
-
-#: 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 ""
-"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:288
-msgid "Install…"
-msgstr "Installer…"
-
-#: 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:1084
-msgid "Loading package information…"
-msgstr "Chargement des informations sur le package…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
-msgid "MD5"
-msgstr "MD5"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
-msgid "Manually install package"
-msgstr "Installer manuellement le package"
-
-#: 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:1227
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
-msgid "Next page"
-msgstr "Page suivante"
-
-#: 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:355
-msgid "No packages"
-msgstr "Pas de paquet"
-
-#: 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:542
-msgid "Not available"
-msgstr "Indisponible"
-
-#: 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:1158
-msgid "OK"
-msgstr "OK"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
-msgid "OPKG Configuration"
-msgstr "Configuration OPKG"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
-msgid "Package name"
-msgstr "Nom du paquet"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
-msgid "Package name or URL…"
-msgstr "Nom ou URL du package…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
-msgid "Previous page"
-msgstr "Page précédente"
-
-#: 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:967
-msgid "Remove"
-msgstr "Désinstaller"
-
-#: 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:276
-msgid "Remove…"
-msgstr "Désinstaller…"
-
-#: 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: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: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: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:373
-msgid "Reset"
-msgstr "Remise à zéro"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
-msgid "SHA256"
-msgstr "SHA256"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
-msgid "Save"
-msgstr "Sauvegarder"
-
-#: 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: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:1235
-msgid "Size (.ipk)"
-msgstr "Taille (.ipk)"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
-#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
-msgid "Software"
-msgstr "Logiciels"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
-msgid "Suggested translations"
-msgstr "Traductions suggérées"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
-msgid "Suggested translations require approx. %1024mB additional space."
-msgstr ""
-"Les traductions proposées nécessitent environ %1024mB d'espace "
-"supplémentaire."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
-msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
-msgstr "La commande <em>opkg %h</em> a échoué avec le code <code>%d</code>."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
-msgid ""
-"The installed version of package <em>%h</em> is not compatible, require %s "
-"while %s is installed."
-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: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:530
-msgid ""
-"The repository version of package <em>%h</em> is not compatible, require %s "
-"but only %s is available."
-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:1149
-msgid "Type to filter…"
-msgstr "Type à filtrer…"
-
-#: 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:871
-msgid "Unable to read %s: %s"
-msgstr "Impossible de lire %s: %s"
-
-#: 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:1165
-msgid "Update lists…"
-msgstr "Mettre à jour les listes…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
-msgid "Updates"
-msgstr "Mises à jour"
-
-#: 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:1166
-msgid "Upload Package…"
-msgstr "Télécharger le package…"
-
-#: 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:1234
-msgid "Version"
-msgstr "Version"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
-msgid "Version incompatible"
-msgstr "Version incompatible"
-
-#: 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:1198
-msgctxt "Display translation packages"
-msgid "all"
-msgstr "tout"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
-msgctxt "Display translation packages"
-msgid "filtered"
-msgstr "filtrée"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
-msgctxt "Display translation packages"
-msgid "none"
-msgstr "aucun"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1143
-msgid "unknown"
-msgstr "inconnu"
-
-#: 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é"
-
-#~ msgid "Free space"
-#~ msgstr "Espace libre"
-
-#~ msgid "Overwrite files from other package(s)"
-#~ msgstr "Écraser les fichiers d'autres packages"
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2024-09-07 19:01+0000\n"
-"Last-Translator: Aindriú Mac Giolla Eoin <aindriu80@gmail.com>\n"
-"Language-Team: Irish <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsopkg/ga/>\n"
-"Language: ga\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=5; plural=n==1 ? 0 : n==2 ? 1 : (n>2 && n<7) ? 2 :("
-"n>6 && n<11) ? 3 : 4;\n"
-"X-Generator: Weblate 5.8-dev\n"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
-msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
-msgstr "%s a úsáidtear (%1024MB a úsáidtear as %1024MB, %1024MB saor in aisce)"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
-msgid ""
-"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
-msgstr ""
-"<strong>Rabhadh!</strong> Is féidir le hoibríochtaí pacála <a %s>do chóras a "
-"bhriseadh</a>."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
-msgid "Actions"
-msgstr "Gníomhartha"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
-msgid "Allow overwriting conflicting package files"
-msgstr "Lig comhaid pacáiste contrártha a athscríobh"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
-msgid "Automatically remove unused dependencies"
-msgstr "Bain spleáchais neamhúsáidte a"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1218
-msgid "Available"
-msgstr "Ar fáil"
-
-#: 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 ""
-"Anseo thíos tá liosta de na comhaid chumraíochta éagsúla a úsáideann "
-"<em>opkg</em>. Úsáid <em>opkg.conf</em> le haghaidh socruithe domhanda agus "
-"<em>customfeeds.conf</em> le haghaidh iontrálacha stórtha saincheaptha. "
-"Seans go n-athrófar an chumraíocht sna comhaid eile ach de ghnáth ní "
-"choinnítear í le <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 "Cealaigh"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150
-msgid "Clear"
-msgstr "Soiléir"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
-msgid "Configure opkg…"
-msgstr "Cumraigh opkg…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
-msgid "Dependencies"
-msgstr "Spleithiúlachtaí"
-
-#: 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:1236
-msgid "Description"
-msgstr "Cur síos"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755
-msgid "Details for package <em>%h</em>"
-msgstr "Sonraí an phacáiste <em>%h</em>"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142
-msgid "Disk space"
-msgstr "Spás diosca"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
-msgid "Dismiss"
-msgstr "Díbhe"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1172
-msgid "Display LuCI translation packages"
-msgstr "Taispeáin pacáistí aistriúcháin Lu"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
-msgid "Display all available translation packages"
-msgstr "Taispeáin na pacáistí aistriúcháin"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
-msgid ""
-"Display base translation packages and translation packages for already "
-"installed languages only"
-msgstr ""
-"Taispeáin bhunphacáistí aistriúcháin agus pacáistí aistriúcháin le haghaidh"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354
-msgid "Displaying %d-%d of %d"
-msgstr "Ag taispeáint %d-%d de %d"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155
-msgid "Download and install package"
-msgstr "Íoslódáil agus suiteáil pacáiste"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
-msgid "Errors"
-msgstr "Earráidí"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
-msgid "Executing package manager"
-msgstr "Bainisteoir pacáiste a chur"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
-msgid "Filter"
-msgstr "Scagaire"
-
-#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
-msgid "Grant access to opkg management"
-msgstr "Rochtain a dheonú ar bhainistíocht opkg"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1202
-msgid "Hide all translation packages"
-msgstr "Folaigh gach pacáiste aistriúcháin"
-
-#: 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 "Suiteáil"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1133
-msgid "Install additional software and upgrade existing packages with opkg."
-msgstr ""
-"Suiteáil bogearraí breise agus uasghrádaigh na pacáistí atá ann cheana féin "
-"le opkg."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
-msgid "Install suggested translation packages as well"
-msgstr "Suiteáil pacáistí aistriúcháin atá molta freisin"
-
-#: 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:1219
-msgid "Installed"
-msgstr "Suiteáilte"
-
-#: 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 ""
-"Is baol slándála féideartha é pacáistí a shuiteáil ó fhoinsí neamhiontaofa! "
-"An bhfuil fonn ort <em>%h</em> a shuiteáil i ndáiríre?"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
-msgid "Install…"
-msgstr "Suiteáil…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
-msgid "Loading configuration data…"
-msgstr "Sonraí cumraíochta á luchtú…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
-msgid "Loading package information…"
-msgstr "Faisnéis pacáiste á luchtú…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
-msgid "MD5"
-msgstr "MD5"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
-msgid "Manually install package"
-msgstr "Suiteáil pacáiste de láimh"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
-msgid "Needs upgrade"
-msgstr "Riachtanais uasgh"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
-msgid "Next page"
-msgstr "An chéad leathanach eile"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
-msgid "No information available"
-msgstr "Níl aon eolas ar fáil"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
-msgid "No packages"
-msgstr "Gan aon phacáistí"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
-msgid "No packages matching \"<strong>%h</strong>\"."
-msgstr "Níl aon phacáiste ag teacht le \"<strong>%h</strong>\"."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
-msgid "Not available"
-msgstr "Níl ar fáil"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
-msgid "Not installed"
-msgstr "Níl suiteáilte"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
-msgid "OK"
-msgstr "CEART GO LEOR"
-
-#: 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 "Cumraíocht OPKG"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
-msgid "Package name"
-msgstr "Ainm an phacáiste"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
-msgid "Package name or URL…"
-msgstr "Ainm pacáiste nó URL…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
-msgid "Previous page"
-msgstr "Leathanach roimhe seo"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
-msgid "Really attempt to install <em>%h</em>?"
-msgstr "An bhfuil fonn ort <em>%h</em> a shuiteáil i ndáiríre?"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
-msgid "Remove"
-msgstr "Bain"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
-msgid "Remove package <em>%h</em>"
-msgstr "Bain pacáiste <em>%h</em>"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
-msgid "Remove…"
-msgstr "Bain…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
-msgid "Require approx. %1024mB size for %d package(s) to install."
-msgstr "Teastaíonn thart. %1024MB de mhéid chun pacáistí %d a shuiteáil."
-
-#: 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 "Teastaíonn leagan %h %h, %h suiteáilte"
-
-#: 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 ""
-"Níl an pacáiste spleáchais riachtanach <em>%h</em> ar fáil i stór ar bith."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508
-msgid "Requires update to %h %h"
-msgstr "Éilíonn nuashonrú chuig %h %h"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
-msgid "Reset"
-msgstr "Athshocraigh"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
-msgid "SHA256"
-msgstr "SHA256"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
-msgid "Save"
-msgstr "Sábháil"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
-msgid "Saving configuration data…"
-msgstr "Sonraí cumraíochta a shábháil…"
-
-#: 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éid"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
-msgid "Size (.ipk)"
-msgstr "Méid (.ipk)"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
-#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
-msgid "Software"
-msgstr "Bogearraí"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
-msgid "Suggested translations"
-msgstr "Aistriúcháin molta"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
-msgid "Suggested translations require approx. %1024mB additional space."
-msgstr "Teastaíonn thart ar %1024MB spás breise ó aistriúcháin mholta."
-
-#: 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 "Theip ar an ordú <em>opkg %h</em> leis an gcód <code>%d</code>."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
-msgid ""
-"The installed version of package <em>%h</em> is not compatible, require %s "
-"while %s is installed."
-msgstr ""
-"Níl an leagan suiteáilte den phacáiste <em>%h</em> comhoiriúnach, teastaíonn "
-"%s agus %s suiteáilte."
-
-#: 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 "Níl an pacáiste <em>%h</em> ar fáil in aon stór cumraithe."
-
-#: 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 ""
-"Níl an leagan stórtha den phacáiste <em>%h</em> comhoiriúnach, teastaíonn %s "
-"ach níl ach %s ar fáil."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
-msgid "Type to filter…"
-msgstr "Cineál chun scagadh…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
-msgid "Unable to execute <em>opkg %s</em> command: %s"
-msgstr "Ní féidir an t-ordú <em>opkg %s</em> a rith: %s"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871
-msgid "Unable to read %s: %s"
-msgstr "Ní féidir %s a léamh: %s"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910
-msgid "Unable to save %s: %s"
-msgstr "Ní féidir %s a shábháil: %s"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1165
-msgid "Update lists…"
-msgstr "Nuashonraigh liostaí…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
-msgid "Updates"
-msgstr "Nuashonruithe"
-
-#: 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 "Uasghrádú…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1166
-msgid "Upload Package…"
-msgstr "Uaslódáil Pacáiste…"
-
-#: 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:1234
-msgid "Version"
-msgstr "Leagan"
-
-#: 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 "Leagan neamhluí"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
-msgid "Waiting for the <em>opkg %h</em> command to complete…"
-msgstr "Ag fanacht leis an ordú <em>opkg % h</em> a chur i gcrích…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1198
-msgctxt "Display translation packages"
-msgid "all"
-msgstr "go léir"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
-msgctxt "Display translation packages"
-msgid "filtered"
-msgstr "scagtha"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
-msgctxt "Display translation packages"
-msgid "none"
-msgstr "níl aon"
-
-#: 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:1143
-msgid "unknown"
-msgstr "anaithnid"
-
-#: 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 comhbhrúite"
-
-#: 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 suiteáilte"
+++ /dev/null
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"PO-Revision-Date: 2023-09-18 21:37+0000\n"
-"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
-"Language-Team: Hebrew <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsopkg/he/>\n"
-"Language: he\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Weblate 5.0.2\n"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
-msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
-msgid ""
-"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
-msgid "Actions"
-msgstr "פעולות"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
-msgid "Allow overwriting conflicting package files"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
-msgid "Automatically remove unused dependencies"
-msgstr "להסיר אוטומטית תלויות שאינן בשימוש"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1218
-msgid "Available"
-msgstr "זמין"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
-msgid ""
-"Below is a listing of the various configuration files used by <em>opkg</em>. "
-"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
-"custom repository entries. The configuration in the other files may be "
-"changed but is usually not preserved by <em>sysupgrade</em>."
-msgstr ""
-
-#: 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:1150
-msgid "Clear"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
-msgid "Configure opkg…"
-msgstr "הגדר opkg…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
-msgid "Dependencies"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
-msgid "Description"
-msgstr "תיאור"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755
-msgid "Details for package <em>%h</em>"
-msgstr "פרטים על החבילה <em>%h</em>"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142
-msgid "Disk space"
-msgstr ""
-
-#: 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:1172
-msgid "Display LuCI translation packages"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
-msgid "Display all available translation packages"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
-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:1155
-msgid "Download and install package"
-msgstr "הורדת והתקנת חבילות"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
-msgid "Errors"
-msgstr "שגיאות"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
-msgid "Executing package manager"
-msgstr "מנהל החבילות מופעל"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
-msgid "Filter"
-msgstr "מסנן"
-
-#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
-msgid "Grant access to opkg management"
-msgstr "הענקת גישה לניהול opkg"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1202
-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:1133
-msgid "Install additional software and upgrade existing packages with opkg."
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
-msgid "Install suggested translation packages as well"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
-msgid "Installed"
-msgstr "מותקנת"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
-msgid ""
-"Installing packages from untrusted sources is a potential security risk! "
-"Really attempt to install <em>%h</em>?"
-msgstr ""
-"התקנת חבילות ממקורות מפוקפקים היא הזמנה לסיכון אבטחה! לנסות להתקין את <em>"
-"%h</em>?"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
-msgid "Install…"
-msgstr "התקנה…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
-msgid "Loading configuration data…"
-msgstr "נתוני התצורה נטענים…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
-msgid "Loading package information…"
-msgstr "פרטי החבילה נטענים…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
-msgid "MD5"
-msgstr "MD5"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
-msgid "Manually install package"
-msgstr "התקנת חבילה באופן ידני"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
-msgid "Needs upgrade"
-msgstr "נדרש שדרוג"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
-msgid "Next page"
-msgstr "העמוד הבא"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
-msgid "No information available"
-msgstr "אין פרטים זמינים"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
-msgid "No packages"
-msgstr "אין חבילות"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
-msgid "No packages matching \"<strong>%h</strong>\"."
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
-msgid "Not available"
-msgstr "לא זמין"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
-msgid "Not installed"
-msgstr "לא מותקן"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
-msgid "OK"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
-msgid "OPKG Configuration"
-msgstr "תצורת OPKG"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
-msgid "Package name"
-msgstr "שם החבילה"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
-msgid "Package name or URL…"
-msgstr "שם החבילה או URL…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
-msgid "Previous page"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
-msgid "Really attempt to install <em>%h</em>?"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
-msgid "Remove"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
-msgid "Remove package <em>%h</em>"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
-msgid "Remove…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
-msgid "Require approx. %1024mB size for %d package(s) to install."
-msgstr ""
-
-#: 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: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:508
-msgid "Requires update to %h %h"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
-msgid "Reset"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
-msgid "SHA256"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
-msgid "Save"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
-msgid "Saving configuration data…"
-msgstr "שומר נתוני תצורה…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
-msgid "Size"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
-msgid "Size (.ipk)"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
-#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
-msgid "Software"
-msgstr "תוכנה"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
-msgid "Suggested translations"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
-msgid "Suggested translations require approx. %1024mB additional space."
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
-msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
-msgstr ""
-
-#: 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: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: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:1149
-msgid "Type to filter…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
-msgid "Unable to execute <em>opkg %s</em> command: %s"
-msgstr ""
-
-#: 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:910
-msgid "Unable to save %s: %s"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1165
-msgid "Update lists…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
-msgid "Updates"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
-msgid "Upgrade…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1166
-msgid "Upload Package…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1234
-msgid "Version"
-msgstr "גרסה"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
-msgid "Version incompatible"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
-msgid "Waiting for the <em>opkg %h</em> command to complete…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1198
-msgctxt "Display translation packages"
-msgid "all"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
-msgctxt "Display translation packages"
-msgid "filtered"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
-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:1143
-msgid "unknown"
-msgstr "לא ידוע"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
-msgid "~%1024mB compressed"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
-msgid "~%1024mB installed"
-msgstr ""
-
-#~ msgid "Free space"
-#~ msgstr "מקום פנוי"
+++ /dev/null
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-06-10 03:40+0200\n"
-"PO-Revision-Date: 2024-07-06 11:32+0000\n"
-"Last-Translator: Sathvic <sathvic.p@gmail.com>\n"
-"Language-Team: Hindi <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsopkg/hi/>\n"
-"Language: hi\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: Weblate 5.7-dev\n"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
-msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
-msgid ""
-"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
-msgid "Actions"
-msgstr "चाल-चलन"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
-msgid "Allow overwriting conflicting package files"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
-msgid "Automatically remove unused dependencies"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1218
-msgid "Available"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
-msgid ""
-"Below is a listing of the various configuration files used by <em>opkg</em>. "
-"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
-"custom repository entries. The configuration in the other files may be "
-"changed but is usually not preserved by <em>sysupgrade</em>."
-msgstr ""
-
-#: 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:1150
-msgid "Clear"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
-msgid "Configure opkg…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
-msgid "Dependencies"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
-msgid "Description"
-msgstr ""
-
-#: 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:1142
-msgid "Disk space"
-msgstr ""
-
-#: 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:1172
-msgid "Display LuCI translation packages"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
-msgid "Display all available translation packages"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
-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:1155
-msgid "Download and install package"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
-msgid "Errors"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
-msgid "Executing package manager"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
-msgid "Filter"
-msgstr ""
-
-#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
-msgid "Grant access to opkg management"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1202
-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:1133
-msgid "Install additional software and upgrade existing packages with opkg."
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
-msgid "Install suggested translation packages as well"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
-msgid "Installed"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
-msgid ""
-"Installing packages from untrusted sources is a potential security risk! "
-"Really attempt to install <em>%h</em>?"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
-msgid "Install…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
-msgid "Loading configuration data…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
-msgid "Loading package information…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
-msgid "MD5"
-msgstr "MD5"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
-msgid "Manually install package"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
-msgid "Needs upgrade"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
-msgid "Next page"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
-msgid "No information available"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
-msgid "No packages"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
-msgid "No packages matching \"<strong>%h</strong>\"."
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
-msgid "Not available"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
-msgid "Not installed"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
-msgid "OK"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
-msgid "OPKG Configuration"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
-msgid "Package name"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
-msgid "Package name or URL…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
-msgid "Previous page"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
-msgid "Really attempt to install <em>%h</em>?"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
-msgid "Remove"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
-msgid "Remove package <em>%h</em>"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
-msgid "Remove…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
-msgid "Require approx. %1024mB size for %d package(s) to install."
-msgstr ""
-
-#: 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: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:508
-msgid "Requires update to %h %h"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
-msgid "Reset"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
-msgid "SHA256"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
-msgid "Save"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
-msgid "Saving configuration data…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
-msgid "Size"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
-msgid "Size (.ipk)"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
-#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
-msgid "Software"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
-msgid "Suggested translations"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
-msgid "Suggested translations require approx. %1024mB additional space."
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
-msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
-msgstr ""
-
-#: 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: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: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:1149
-msgid "Type to filter…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
-msgid "Unable to execute <em>opkg %s</em> command: %s"
-msgstr ""
-
-#: 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:910
-msgid "Unable to save %s: %s"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1165
-msgid "Update lists…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
-msgid "Updates"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
-msgid "Upgrade…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1166
-msgid "Upload Package…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1234
-msgid "Version"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
-msgid "Version incompatible"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
-msgid "Waiting for the <em>opkg %h</em> command to complete…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1198
-msgctxt "Display translation packages"
-msgid "all"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
-msgctxt "Display translation packages"
-msgid "filtered"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
-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:1143
-msgid "unknown"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
-msgid "~%1024mB compressed"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
-msgid "~%1024mB installed"
-msgstr ""
+++ /dev/null
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"PO-Revision-Date: 2024-08-18 14:10+0000\n"
-"Last-Translator: hmzs <hmzs@1szer1.hu>\n"
-"Language-Team: Hungarian <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsopkg/hu/>\n"
-"Language: hu\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 5.7\n"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
-msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
-msgstr "%s foglalt (%1024mB / %1024mB, szabad: %1024mB)"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
-msgid ""
-"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
-msgstr ""
-"<strong>Figyelem!</strong> A csomagművelet(ek) hatására <a %s> a rendszert "
-"működésképtelenné válhat</a>."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
-msgid "Actions"
-msgstr "Műveletek"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
-msgid "Allow overwriting conflicting package files"
-msgstr "Ütköző csomagfájlok felülírásának engedélyezése"
-
-#: 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:1218
-msgid "Available"
-msgstr "Elérhető"
-
-#: 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 ""
-"Alább található az <em>opkg</em> által használt különféle beállítófájlok "
-"listája. Használja az <code>opkg.conf</code> fájlt a globális "
-"beállításokhoz, és a <code>customfeeds.conf</code> fájlt az egyéni "
-"tárolóbejegyzésekhez. Az egyéb 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: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:1150
-msgid "Clear"
-msgstr "Törlés"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
-msgid "Configure opkg…"
-msgstr "Az opkg beállítása…"
-
-#: 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:750
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
-msgid "Description"
-msgstr "Leírás"
-
-#: 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:1142
-msgid "Disk space"
-msgstr "Szabad tárterület"
-
-#: 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:1172
-msgid "Display LuCI translation packages"
-msgstr "LuCI nyelvi csomagok megjelenítése"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
-msgid "Display all available translation packages"
-msgstr "Minden elérhető nyelvi csomag megjelenítése."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
-msgid ""
-"Display base translation packages and translation packages for already "
-"installed languages only"
-msgstr ""
-"Csak az alapvető nyelvi csomagok, és a már telepített nyelvekhez tartozó "
-"nyelvi csomagok megjelenítése."
-
-#: 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:1155
-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:1008
-msgid "Errors"
-msgstr "Hibák"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
-msgid "Executing package manager"
-msgstr "Csomagkezelő műveletek végrehajtása"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
-msgid "Filter"
-msgstr "Szűrő"
-
-#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
-msgid "Grant access to opkg management"
-msgstr "Jogosultság adása az opkg csomagkezelőnek"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1202
-msgid "Hide all translation packages"
-msgstr "Minden nyelvi csomag rejtve marad."
-
-#: 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:1133
-msgid "Install additional software and upgrade existing packages with opkg."
-msgstr ""
-"Telepítsen további szoftvereket, és frissítse a meglévő csomagokat az opkg "
-"segítségével."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
-msgid "Install suggested translation packages as well"
-msgstr "Telepítse a javasolt nyelvi csomagokat is"
-
-#: 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:1219
-msgid "Installed"
-msgstr "Telepítve"
-
-#: 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 ""
-"A nem megbízható forrásokból származó csomagok telepítése biztonsági "
-"kockázattal jár! Valóban megpróbálja telepíteni a(z) <em>%h</em> csomagot?"
-
-#: 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: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:1084
-msgid "Loading package information…"
-msgstr "Csomaginformációk betöltése…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
-msgid "MD5"
-msgstr "MD5"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
-msgid "Manually install package"
-msgstr "Csomag kézi telepítése"
-
-#: 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:1227
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
-msgid "Next page"
-msgstr "Következő oldal"
-
-#: 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:355
-msgid "No packages"
-msgstr "Nincsenek csomagok"
-
-#: 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:542
-msgid "Not available"
-msgstr "Nem érhető el"
-
-#: 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:1158
-msgid "OK"
-msgstr "Rendben"
-
-#: 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 "Csomagkezelő beállítása"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
-msgid "Package name"
-msgstr "Csomagnév"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
-msgid "Package name or URL…"
-msgstr "Csomagnév vagy URL…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
-msgid "Previous page"
-msgstr "Előző oldal"
-
-#: 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:967
-msgid "Remove"
-msgstr "Eltávolítás"
-
-#: 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:276
-msgid "Remove…"
-msgstr "Eltávolítá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 "~%1024mB hely szükséges %d csomag telepítéséhez."
-
-#: 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, telepített: %h"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540
-msgid ""
-"Required dependency package <em>%h</em> is not available in any repository."
-msgstr ""
-"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: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:373
-msgid "Reset"
-msgstr "Visszaállítás"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
-msgid "SHA256"
-msgstr "SHA256"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
-msgid "Save"
-msgstr "Mentés"
-
-#: 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: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:1235
-msgid "Size (.ipk)"
-msgstr "Méret (.ipk)"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
-#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
-msgid "Software"
-msgstr "Szoftver"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
-msgid "Suggested translations"
-msgstr "Javasolt nyelvi csomagok"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
-msgid "Suggested translations require approx. %1024mB additional space."
-msgstr "A javasolt nyelvi csomagokhoz további kb. %1024mB hely szükséges."
-
-#: 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:513
-msgid ""
-"The installed version of package <em>%h</em> is not compatible, require %s "
-"while %s is installed."
-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: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:530
-msgid ""
-"The repository version of package <em>%h</em> is not compatible, require %s "
-"but only %s is available."
-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:1149
-msgid "Type to filter…"
-msgstr "Gépeljen a szűréshez…"
-
-#: 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: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: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:1165
-msgid "Update lists…"
-msgstr "Listák frissítése…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
-msgid "Updates"
-msgstr "Frissítések"
-
-#: 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:1166
-msgid "Upload Package…"
-msgstr "Csomag feltöltése…"
-
-#: 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:1234
-msgid "Version"
-msgstr "Verzió"
-
-#: 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: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:1198
-msgctxt "Display translation packages"
-msgid "all"
-msgstr "összes"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
-msgctxt "Display translation packages"
-msgid "filtered"
-msgstr "szűrt"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
-msgctxt "Display translation packages"
-msgid "none"
-msgstr "nincs"
-
-#: 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:1143
-msgid "unknown"
-msgstr "ismeretlen"
-
-#: 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"
-
-#~ msgid "Free space"
-#~ msgstr "Szabad hely"
-
-#~ msgid "Overwrite files from other package(s)"
-#~ msgstr "Fájlok felülírása más csomagokból"
+++ /dev/null
-msgid ""
-msgstr ""
-"Project-Id-Version: LuCI\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-06-10 03:40+0200\n"
-"PO-Revision-Date: 2024-05-18 06:49+0000\n"
-"Last-Translator: Random <random-r@users.noreply.hosted.weblate.org>\n"
-"Language-Team: Italian <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsopkg/it/>\n"
-"Language: it\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 5.6-dev\n"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
-msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
-msgstr "%s usato (%1024mB usati di %1024mB, %1024mB liberi)"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
-msgid ""
-"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
-msgstr ""
-"<strong>Attenzione!</strong>Operazioni sul pacchetto possono <a %s>rendere "
-"inutilizzabile il sistema</a>."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
-msgid "Actions"
-msgstr "Azioni"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
-msgid "Allow overwriting conflicting package files"
-msgstr "Consenti la sovrascrittura dei pacchetti in conflitto"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
-msgid "Automatically remove unused dependencies"
-msgstr "Rimuovi automaticamente le dipendenze inutilizzate"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1218
-msgid "Available"
-msgstr "Disponibili"
-
-#: 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 ""
-"Di seguito è riportato un elenco dei vari file di configurazione utilizzati "
-"da <em>opkg</em>. Usa <em>opkg.conf</em> per le impostazioni globali e "
-"<em>customfeeds.conf</em> per le voci di repository personalizzati. La "
-"configurazione negli altri file può essere cambiata, ma solitamente non "
-"viene conservata da <em>sysupgrade</em>."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js: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:1150
-msgid "Clear"
-msgstr "Cancella"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
-msgid "Configure opkg…"
-msgstr "Configura opkg…"
-
-#: 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:750
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
-msgid "Description"
-msgstr "Descrizione"
-
-#: 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:1142
-msgid "Disk space"
-msgstr "Spazio su disco"
-
-#: 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:1172
-msgid "Display LuCI translation packages"
-msgstr "Mostra pacchetti traduzione di LuCI"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
-msgid "Display all available translation packages"
-msgstr "Mostra tutti i pacchetti traduzione disponibili"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
-msgid ""
-"Display base translation packages and translation packages for already "
-"installed languages only"
-msgstr ""
-"Mostra i pacchetti di traduzione di base e i pacchetti di traduzione solo "
-"per le lingue già installate"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354
-msgid "Displaying %d-%d of %d"
-msgstr "Mostrando %d-%d di %d"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155
-msgid "Download and install package"
-msgstr "Scarica e installa il pacchetto"
-
-#: 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:982
-msgid "Executing package manager"
-msgstr "Esecuzione del gestore pacchetti"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
-msgid "Filter"
-msgstr "Filtro"
-
-#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
-msgid "Grant access to opkg management"
-msgstr "Concedi l'accesso alla gestione di opkg"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1202
-msgid "Hide all translation packages"
-msgstr "Nascondi tutti i pacchetti di traduzione"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066
-msgid "Install"
-msgstr "Installa"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1133
-msgid "Install additional software and upgrade existing packages with opkg."
-msgstr "Installa software aggiuntivo e aggiorna i pacchetti esistenti con opkg."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
-msgid "Install suggested translation packages as well"
-msgstr "Installa anche i pacchetti di traduzione suggeriti"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
-msgid "Installed"
-msgstr "Installati"
-
-#: 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 ""
-"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:288
-msgid "Install…"
-msgstr "Installa…"
-
-#: 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:1084
-msgid "Loading package information…"
-msgstr "Caricamento delle informazioni sul pacchetto…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
-msgid "MD5"
-msgstr "MD5"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
-msgid "Manually install package"
-msgstr "Installa pacchetto manualmente"
-
-#: 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:1227
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
-msgid "Next page"
-msgstr "Pagina successiva"
-
-#: 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:355
-msgid "No packages"
-msgstr "Nessun pacchetto"
-
-#: 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:542
-msgid "Not available"
-msgstr "Non disponibile"
-
-#: 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:1158
-msgid "OK"
-msgstr "OK"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
-msgid "OPKG Configuration"
-msgstr "Configurazione OPKG"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
-msgid "Package name"
-msgstr "Nome pacchetto"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
-msgid "Package name or URL…"
-msgstr "Nome pacchetto o URL…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
-msgid "Previous page"
-msgstr "Pagina precedente"
-
-#: 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:967
-msgid "Remove"
-msgstr "Rimuovi"
-
-#: 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:276
-msgid "Remove…"
-msgstr "Rimuovi…"
-
-#: 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: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: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 nessun "
-"repository."
-
-#: 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:373
-msgid "Reset"
-msgstr "Reimposta"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
-msgid "SHA256"
-msgstr "SHA256"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
-msgid "Save"
-msgstr "Salva"
-
-#: 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: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:1235
-msgid "Size (.ipk)"
-msgstr "Dimensione (.ipk)"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
-#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
-msgid "Software"
-msgstr "Software"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
-msgid "Suggested translations"
-msgstr "Traduzioni suggerite"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
-msgid "Suggested translations require approx. %1024mB additional space."
-msgstr "Le traduzioni suggerite richiedono ca. %1024 mB di spazio aggiuntivo."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
-msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
-msgstr "Il comando <em>opkg %h</em> è fallito con il codice <code>%d</code>."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
-msgid ""
-"The installed version of package <em>%h</em> is not compatible, require %s "
-"while %s is installed."
-msgstr ""
-"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:833
-msgid "The package <em>%h</em> is not available in any configured repository."
-msgstr ""
-"Il pacchetto <em>%h</em> non è disponibile in nessun repository configurato."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530
-msgid ""
-"The repository version of package <em>%h</em> is not compatible, require %s "
-"but only %s is available."
-msgstr ""
-"La versione del repository del pacchetto <em>%h</em> non è compatibile, "
-"richiede %s ma è disponibile solo %s."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
-msgid "Type to filter…"
-msgstr "Scrivi per filtrare…"
-
-#: 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:871
-msgid "Unable to read %s: %s"
-msgstr "Impossibile leggere %s: %s"
-
-#: 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:1165
-msgid "Update lists…"
-msgstr "Aggiorna liste…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
-msgid "Updates"
-msgstr "Aggiornamenti"
-
-#: 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:1166
-msgid "Upload Package…"
-msgstr "Carica pacchetto…"
-
-#: 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:1234
-msgid "Version"
-msgstr "Versione"
-
-#: 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: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:1198
-msgctxt "Display translation packages"
-msgid "all"
-msgstr "tutto"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
-msgctxt "Display translation packages"
-msgid "filtered"
-msgstr "filtrato"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
-msgctxt "Display translation packages"
-msgid "none"
-msgstr "nessuno"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1143
-msgid "unknown"
-msgstr "sconosciuto"
-
-#: 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"
-
-#~ msgid "Free space"
-#~ msgstr "Spazio libero"
-
-#~ msgid "Overwrite files from other package(s)"
-#~ msgstr "Sovrascrivere i file da altri pacchetti"
+++ /dev/null
-msgid ""
-msgstr ""
-"Project-Id-Version: \n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-06-10 03:40+0200\n"
-"PO-Revision-Date: 2024-07-15 18:06+0000\n"
-"Last-Translator: INAGAKI Hiroshi <musashino.open@gmail.com>\n"
-"Language-Team: Japanese <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsopkg/ja/>\n"
-"Language: ja\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Weblate 5.7-dev\n"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
-msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
-msgstr "%s 使用済み (%1024mB 中 %1024mB 使用済み, %1024mB 空き)"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
-msgid ""
-"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
-msgstr "<strong>警告!</strong> パッケージ操作は<a "
-"%s>システムを破壊</a>することがあります。"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
-msgid "Actions"
-msgstr "操作"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
-msgid "Allow overwriting conflicting package files"
-msgstr "重複するパッケージ内ファイルの上書きを許可"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
-msgid "Automatically remove unused dependencies"
-msgstr "使用されない依存パッケージを自動的に削除"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1218
-msgid "Available"
-msgstr "利用可能"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
-msgid ""
-"Below is a listing of the various configuration files used by <em>opkg</em>. "
-"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
-"custom repository entries. The configuration in the other files may be "
-"changed but is usually not preserved by <em>sysupgrade</em>."
-msgstr ""
-"以下は <em>opkg</em> によって使用される、様々な設定ファイルの一覧です。"
-"<em>opkg.conf</em> は全般的な設定に、<em>customfeeds.conf</em> はカスタム リ"
-"ポジトリの登録に使用します。これら以外のファイル内の設定を変更しても、通常は "
-"<em>sysupgrade</em> 時に保持されません。"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
-msgid "Cancel"
-msgstr "キャンセル"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150
-msgid "Clear"
-msgstr "クリア"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
-msgid "Configure opkg…"
-msgstr "opkg設定…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
-msgid "Dependencies"
-msgstr "依存関係"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
-msgid "Description"
-msgstr "説明"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755
-msgid "Details for package <em>%h</em>"
-msgstr "<em>%h</em> パッケージの詳細"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142
-msgid "Disk space"
-msgstr "ディスク領域"
-
-#: 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:1172
-msgid "Display LuCI translation packages"
-msgstr "LuCI 翻訳パッケージの表示"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
-msgid "Display all available translation packages"
-msgstr "利用可能な全ての翻訳パッケージを表示します"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
-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:1155
-msgid "Download and install package"
-msgstr "パッケージのダウンロードとインストール"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
-msgid "Errors"
-msgstr "エラー"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
-msgid "Executing package manager"
-msgstr "パッケージマネージャーが実行中"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
-msgid "Filter"
-msgstr "フィルター"
-
-#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
-msgid "Grant access to opkg management"
-msgstr "opkg 管理へのアクセスを許可"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1202
-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:1133
-msgid "Install additional software and upgrade existing packages with opkg."
-msgstr "opkg で追加のソフトウェアのインストールと既存パッケージのアップグレードを行い"
-"ます。"
-
-#: 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:1219
-msgid "Installed"
-msgstr "インストール済"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
-msgid ""
-"Installing packages from untrusted sources is a potential security risk! "
-"Really attempt to install <em>%h</em>?"
-msgstr ""
-"信頼されていない提供元からのパッケージのインストールは、セキュリティ リスクを"
-"伴います! <em>%h</em> のインストールを試行してもよろしいですか?"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
-msgid "Install…"
-msgstr "インストール…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
-msgid "Loading configuration data…"
-msgstr "設定データをロード中…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
-msgid "Loading package information…"
-msgstr "パッケージ情報をロード中…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
-msgid "MD5"
-msgstr "MD5"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
-msgid "Manually install package"
-msgstr "パッケージの手動インストール"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
-msgid "Needs upgrade"
-msgstr "要アップグレード"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
-msgid "Next page"
-msgstr "次のページ"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
-msgid "No information available"
-msgstr "情報なし"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
-msgid "No packages"
-msgstr "パッケージなし"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
-msgid "No packages matching \"<strong>%h</strong>\"."
-msgstr "\"<strong>%h</strong>\" に一致するパッケージはありません。"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
-msgid "Not available"
-msgstr "利用不可"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
-msgid "Not installed"
-msgstr "未インストール"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
-msgid "OK"
-msgstr "OK"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
-msgid "OPKG Configuration"
-msgstr "OPKG 設定"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
-msgid "Package name"
-msgstr "パッケージ名"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
-msgid "Package name or URL…"
-msgstr "パッケージ名または URL…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
-msgid "Previous page"
-msgstr "前のページ"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
-msgid "Really attempt to install <em>%h</em>?"
-msgstr "本当に <em>%h</em> をインストールしますか?"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
-msgid "Remove"
-msgstr "削除"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
-msgid "Remove package <em>%h</em>"
-msgstr "<em>%h</em> パッケージを削除"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
-msgid "Remove…"
-msgstr "削除…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
-msgid "Require approx. %1024mB size for %d package(s) to install."
-msgstr "%d のインストールには約 %1024mB の領域が必要です。"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
-msgid "Require version %h %h, installed %h"
-msgstr "バージョン %h %h が必要です。%h がインストール済みです"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540
-msgid ""
-"Required dependency package <em>%h</em> is not available in any repository."
-msgstr ""
-"必須の依存パッケージ <em>%h</em> は、設定されているリポジトリでは利用できませ"
-"ん。"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508
-msgid "Requires update to %h %h"
-msgstr "%h %h への更新が必要です"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
-msgid "Reset"
-msgstr "リセット"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
-msgid "SHA256"
-msgstr "SHA256"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
-msgid "Save"
-msgstr "保存"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
-msgid "Saving configuration data…"
-msgstr "設定データを保存中…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
-msgid "Size"
-msgstr "サイズ"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
-msgid "Size (.ipk)"
-msgstr "サイズ (.ipk)"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
-#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
-msgid "Software"
-msgstr "ソフトウェア"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
-msgid "Suggested translations"
-msgstr "提案された翻訳"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
-msgid "Suggested translations require approx. %1024mB additional space."
-msgstr "提案された翻訳は追加で約 %1024mB の領域を必要とします。"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
-msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
-msgstr "<em>opkg %h</em> コマンドが失敗しました(コード <code>%d</code>)。"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
-msgid ""
-"The installed version of package <em>%h</em> is not compatible, require %s "
-"while %s is installed."
-msgstr ""
-"<em>%h</em> のインストール済みバージョンは互換性がありません。 %s が、インス"
-"トールされている %s には必要です。"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833
-msgid "The package <em>%h</em> is not available in any configured repository."
-msgstr "<em>%h</em> パッケージは、設定済みのリポジトリでは利用できません。"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530
-msgid ""
-"The repository version of package <em>%h</em> is not compatible, require %s "
-"but only %s is available."
-msgstr ""
-"<em>%h</em> パッケージのリポジトリ バージョンは互換性がありません。 %s が必要"
-"ですが、 %s のみ利用可能です。"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
-msgid "Type to filter…"
-msgstr "検索…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
-msgid "Unable to execute <em>opkg %s</em> command: %s"
-msgstr "<em>opkg %s</em> コマンドを実行できません: %s"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871
-msgid "Unable to read %s: %s"
-msgstr "%s を読み取れません: %s"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910
-msgid "Unable to save %s: %s"
-msgstr "%s を保存できません: %s"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1165
-msgid "Update lists…"
-msgstr "リストを更新…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
-msgid "Updates"
-msgstr "アップデート"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
-msgid "Upgrade…"
-msgstr "アップグレード…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1166
-msgid "Upload Package…"
-msgstr "パッケージをアップロード…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1234
-msgid "Version"
-msgstr "バージョン"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
-msgid "Version incompatible"
-msgstr "互換性の無いバージョン"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
-msgid "Waiting for the <em>opkg %h</em> command to complete…"
-msgstr "<em>opkg %h</em> コマンドが完了するのを待っています…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1198
-msgctxt "Display translation packages"
-msgid "all"
-msgstr "全て"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
-msgctxt "Display translation packages"
-msgid "filtered"
-msgstr "フィルター済"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
-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:1143
-msgid "unknown"
-msgstr "不明"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
-msgid "~%1024mB compressed"
-msgstr "~%1024mB(圧縮後)"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
-msgid "~%1024mB installed"
-msgstr "~%1024mB(インストール後)"
-
-#~ msgid "Free space"
-#~ msgstr "空き容量"
-
-#~ msgid "Overwrite files from other package(s)"
-#~ msgstr "他のパッケージからファイルを上書き"
-
-#~ msgid ""
-#~ "Require version %h %h,\n"
-#~ "installed %h"
-#~ msgstr ""
-#~ "必要バージョン: %h %h,\n"
-#~ "インストール済: %h"
+++ /dev/null
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-06-10 03:40+0200\n"
-"PO-Revision-Date: 2023-10-04 03:38+0000\n"
-"Last-Translator: Wonchul Kang <teshi85@gmail.com>\n"
-"Language-Team: Korean <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsopkg/ko/>\n"
-"Language: ko\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n == 1 ? 0 : 1;\n"
-"X-Generator: Weblate 5.1-dev\n"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
-msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
-msgid ""
-"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
-msgid "Actions"
-msgstr "관리 도구"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
-msgid "Allow overwriting conflicting package files"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
-msgid "Automatically remove unused dependencies"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1218
-msgid "Available"
-msgstr "사용 가능"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
-msgid ""
-"Below is a listing of the various configuration files used by <em>opkg</em>. "
-"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
-"custom repository entries. The configuration in the other files may be "
-"changed but is usually not preserved by <em>sysupgrade</em>."
-msgstr ""
-
-#: 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:1150
-msgid "Clear"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
-msgid "Configure opkg…"
-msgstr "opkg 설정…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
-msgid "Dependencies"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
-msgid "Description"
-msgstr "설명"
-
-#: 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:1142
-msgid "Disk space"
-msgstr ""
-
-#: 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:1172
-msgid "Display LuCI translation packages"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
-msgid "Display all available translation packages"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
-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:1155
-msgid "Download and install package"
-msgstr "패키지 다운로드 후 설치"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
-msgid "Errors"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
-msgid "Executing package manager"
-msgstr "패키지 관리자 실행 중"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
-msgid "Filter"
-msgstr "필터"
-
-#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
-msgid "Grant access to opkg management"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1202
-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:1133
-msgid "Install additional software and upgrade existing packages with opkg."
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
-msgid "Install suggested translation packages as well"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
-msgid "Installed"
-msgstr "설치됨"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
-msgid ""
-"Installing packages from untrusted sources is a potential security risk! "
-"Really attempt to install <em>%h</em>?"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
-msgid "Install…"
-msgstr "설치…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
-msgid "Loading configuration data…"
-msgstr "공통 설정 읽는 중…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
-msgid "Loading package information…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
-msgid "MD5"
-msgstr "MD5"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
-#, fuzzy
-msgid "Manually install package"
-msgstr "패키지 다운로드 후 설치"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
-msgid "Needs upgrade"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
-msgid "Next page"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
-msgid "No information available"
-msgstr "이용 가능한 정보가 없습니다"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
-#, fuzzy
-msgid "No packages"
-msgstr "패키지 찾기"
-
-#: 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:542
-#, fuzzy
-msgid "Not available"
-msgstr "총 이용 가능한 양"
-
-#: 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:1158
-msgid "OK"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
-#, fuzzy
-msgid "OPKG Configuration"
-msgstr "OPKG-설정"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
-msgid "Package name"
-msgstr "패키지 이름"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
-msgid "Package name or URL…"
-msgstr "패키지 이름 또는 URL…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
-msgid "Previous page"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
-msgid "Really attempt to install <em>%h</em>?"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
-msgid "Remove"
-msgstr "제거"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
-msgid "Remove package <em>%h</em>"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
-msgid "Remove…"
-msgstr "제거…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
-msgid "Require approx. %1024mB size for %d package(s) to install."
-msgstr ""
-
-#: 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: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:508
-msgid "Requires update to %h %h"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
-msgid "Reset"
-msgstr "초기화"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
-#, fuzzy
-msgid "SHA256"
-msgstr "SHA256"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
-msgid "Save"
-msgstr "저장"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
-msgid "Saving configuration data…"
-msgstr "장치 설정 저장중…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
-msgid "Size"
-msgstr "크기"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
-msgid "Size (.ipk)"
-msgstr "크기 (.ipk)"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
-#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
-msgid "Software"
-msgstr "소프트웨어"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
-msgid "Suggested translations"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
-msgid "Suggested translations require approx. %1024mB additional space."
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
-msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
-msgstr ""
-
-#: 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: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: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:1149
-msgid "Type to filter…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
-msgid "Unable to execute <em>opkg %s</em> command: %s"
-msgstr ""
-
-#: 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:910
-msgid "Unable to save %s: %s"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1165
-msgid "Update lists…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
-msgid "Updates"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
-msgid "Upgrade…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1166
-msgid "Upload Package…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1234
-msgid "Version"
-msgstr "버전"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
-msgid "Version incompatible"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
-#, fuzzy
-msgid "Waiting for the <em>opkg %h</em> command to complete…"
-msgstr "실행한 명령이 끝나기를 기다리는 중입니다..."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1198
-msgctxt "Display translation packages"
-msgid "all"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
-msgctxt "Display translation packages"
-msgid "filtered"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
-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:1143
-msgid "unknown"
-msgstr "알 수 없는"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
-msgid "~%1024mB compressed"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
-msgid "~%1024mB installed"
-msgstr ""
-
-#~ msgid "Free space"
-#~ msgstr "여유 공간"
+++ /dev/null
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"PO-Revision-Date: 2024-10-07 15:11+0000\n"
-"Last-Translator: Džiugas Januševičius <dziugas1959@hotmail.com>\n"
-"Language-Team: Lithuanian <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsopkg/lt/>\n"
-"Language: lt\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && ("
-"n%100<10 || n%100>=20) ? 1 : 2);\n"
-"X-Generator: Weblate 5.8-dev\n"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
-msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
-msgstr ""
-"%s naudota/-s/-i (%1024mB naudojama/-s/-i iš %1024mB, %1024mB laisva/-s/-i)"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
-msgid ""
-"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
-msgstr ""
-"<strong>Įspėjimas!</strong> Prog. įrangos paketų operacijos *gali* <a "
-"%s>sugadinti Jūsų sistemą</a>."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
-msgid "Actions"
-msgstr "Veiksmai"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
-msgid "Allow overwriting conflicting package files"
-msgstr "Leisti perrašymą konfliktuojamų paketų failus"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
-msgid "Automatically remove unused dependencies"
-msgstr "Automatiškai pašalinti nenaudojamas priklausomybes"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1218
-msgid "Available"
-msgstr "Pasiekiama/-s/-i"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
-msgid ""
-"Below is a listing of the various configuration files used by <em>opkg</em>. "
-"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
-"custom repository entries. The configuration in the other files may be "
-"changed but is usually not preserved by <em>sysupgrade</em>."
-msgstr ""
-"Žemyn šio teksto yra įvairių konfigūracijų sąrašas, kurios naudoja "
-"„<em>opkg</em>“. Naudoti „<em>opkg.conf</em>“ visiems nustatymams ir "
-"„<em>customfeeds.conf</em>“ pasirinktinėms atsisiuntimo šaltinių įvestims. "
-"Konfigūracijos kitose failuose gali būti pakeistos, bet dažniausiai nėra "
-"išlaikomas „<em>sysupgrade</em>“."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
-msgid "Cancel"
-msgstr "Atšaukti"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150
-msgid "Clear"
-msgstr "Išvalyti"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
-msgid "Configure opkg…"
-msgstr "Konfigūruoti „opkg“…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
-msgid "Dependencies"
-msgstr "Priklausomybės"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
-msgid "Description"
-msgstr "Aprašas/-ymas"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755
-msgid "Details for package <em>%h</em>"
-msgstr "Išsami informacija paketui <em>„%h“</em>"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142
-msgid "Disk space"
-msgstr "Disko talpa/vietovė"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
-msgid "Dismiss"
-msgstr "Nepaisyti"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1172
-msgid "Display LuCI translation packages"
-msgstr "Rodyti „LuCI“ vertimo/kalbos paketus"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
-msgid "Display all available translation packages"
-msgstr "Rodyti visus galimus vertimo/kalbos paketus"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
-msgid ""
-"Display base translation packages and translation packages for already "
-"installed languages only"
-msgstr ""
-"Rody pagrindinius vertimų/kalbų paketus ir tik tuos kurie jau įdiegti "
-"dabartinei kalbai"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354
-msgid "Displaying %d-%d of %d"
-msgstr "Rodoma %d-%d iš %d"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155
-msgid "Download and install package"
-msgstr "Atsisiųsti ir įdiegti paketą"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
-msgid "Errors"
-msgstr "Klaidos"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
-msgid "Executing package manager"
-msgstr "Paleidžiama paketų tvarkyklė"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
-msgid "Filter"
-msgstr "Filtras/Filtruoti"
-
-#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
-msgid "Grant access to opkg management"
-msgstr "Suteikti prieigą „opkg management“"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1202
-msgid "Hide all translation packages"
-msgstr "Slėpti visus vertimo/kalbos paketus"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066
-msgid "Install"
-msgstr "Įdiegti"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1133
-msgid "Install additional software and upgrade existing packages with opkg."
-msgstr ""
-"Įdiegti papildomas taikomąsias programas ir aukštutiniškai atnaujinti "
-"egzistuojamus prog. įrangos paketus su „opkg“."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
-msgid "Install suggested translation packages as well"
-msgstr "Įdiegti pritaikytus pasiūlomus vertimo/kalbos paketus"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
-msgid "Installed"
-msgstr "Įdiegta/-s/-i"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
-msgid ""
-"Installing packages from untrusted sources is a potential security risk! "
-"Really attempt to install <em>%h</em>?"
-msgstr ""
-"Įdiegiant paketus iš nepatikimų šaltinių yra galimas saugos pažeidimas! Ar "
-"tikrai norite įdiegti <em>„%h“</em>?"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
-msgid "Install…"
-msgstr "Įdiegti…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
-msgid "Loading configuration data…"
-msgstr "Kraunama konfigūravimo data…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
-msgid "Loading package information…"
-msgstr "Kraunama paketo informacija…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
-msgid "MD5"
-msgstr "„MD5“"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
-msgid "Manually install package"
-msgstr "Savarankiškai įdiegti paketą"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
-msgid "Needs upgrade"
-msgstr "Reikia aukštutinio atnaujinimo"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
-msgid "Next page"
-msgstr "Kitas puslapis"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
-msgid "No information available"
-msgstr "Nėra informacijos"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
-msgid "No packages"
-msgstr "Nėra paketų"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
-msgid "No packages matching \"<strong>%h</strong>\"."
-msgstr "Nėra paketų atitinkančių \"<strong>„%h“</strong>\"."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
-msgid "Not available"
-msgstr "Nėra pasiekiama"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
-msgid "Not installed"
-msgstr "Neįdiegta"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
-msgid "OK"
-msgstr "Gerai"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
-msgid "OPKG Configuration"
-msgstr "„OPKG“ konfigūracija"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
-msgid "Package name"
-msgstr "Paketo pavadinimas"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
-msgid "Package name or URL…"
-msgstr "Paketo pavadinimas arba „URL“ – saitas…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
-msgid "Previous page"
-msgstr "Praeitas puslapis"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
-msgid "Really attempt to install <em>%h</em>?"
-msgstr "Ar tikrai norite pamėginti įdiegti <em>„%h“</em>?"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
-msgid "Remove"
-msgstr "Pašalinti"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
-msgid "Remove package <em>%h</em>"
-msgstr "Pašalinti paketą <em>„%h“</em>"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
-msgid "Remove…"
-msgstr "Pašalinti…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
-msgid "Require approx. %1024mB size for %d package(s) to install."
-msgstr ""
-"Reikalaujama apytiksliai %1024mB dydžio %d paketui/-ams, kad įdiegtumėte."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
-msgid "Require version %h %h, installed %h"
-msgstr "Reikalaujama versija %h %h, įdiegta %h"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540
-msgid ""
-"Required dependency package <em>%h</em> is not available in any repository."
-msgstr ""
-"Reikalaujamas priklausomybės paketas „<em>%h</em> “ nėra pasiekiamas jokioje "
-"atsisiuntimo vietovėje."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508
-msgid "Requires update to %h %h"
-msgstr "Reikalaujama, kad atnaujintumėte į %h %h"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
-msgid "Reset"
-msgstr "Grąžinti į pradinę padėti ar būsena"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
-msgid "SHA256"
-msgstr "„SHA256“"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
-msgid "Save"
-msgstr "Išsaugoti"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
-msgid "Saving configuration data…"
-msgstr "Saugoma konfigūracijos duomenis…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
-msgid "Size"
-msgstr "Dydis"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
-msgid "Size (.ipk)"
-msgstr "Dydis („*.ipk“)"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
-#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
-msgid "Software"
-msgstr "Taikomoji programa"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
-msgid "Suggested translations"
-msgstr "Pasiūlomi vertimai"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
-msgid "Suggested translations require approx. %1024mB additional space."
-msgstr ""
-"Siūlomi vertimai reikalauja apytiksliai %1024mB papildomos vietos/-ovės."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
-msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
-msgstr "<em>„opkg %h“</em> komanda nepavyko su kodu – <code>%d</code>."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
-msgid ""
-"The installed version of package <em>%h</em> is not compatible, require %s "
-"while %s is installed."
-msgstr ""
-"Įdiegta paketo versija „<em>%h</em>“ nėra palaikomas/-a. Reikalingas „%s“, "
-"kol „%s“ yra įdiegtas."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833
-msgid "The package <em>%h</em> is not available in any configured repository."
-msgstr ""
-"Paketas „<em>%h</em>“ nėra pasiekiamas jokioje konfigūruotame atsisiuntimo "
-"vietovėje."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530
-msgid ""
-"The repository version of package <em>%h</em> is not compatible, require %s "
-"but only %s is available."
-msgstr ""
-"Atsisiuntimo vietovės paketo versija „<em>%h</em>“ nėra palaikomas/-a, nes "
-"reikalinga „%s“, bet tik „%s“ yra pasiekiamas."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
-msgid "Type to filter…"
-msgstr "Rašykite, kad filtruotumėte…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
-msgid "Unable to execute <em>opkg %s</em> command: %s"
-msgstr "Negalima paleisti <em>„opkg %s“</em> komanda: %s"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871
-msgid "Unable to read %s: %s"
-msgstr "Negalima nuskaityti %s: %s"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910
-msgid "Unable to save %s: %s"
-msgstr "Negalima išsaugoti %s: %s"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1165
-msgid "Update lists…"
-msgstr "Atnaujinti sąrašus (reikalingą)…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
-msgid "Updates"
-msgstr "Atnaujinimai/Naujiniai"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
-msgid "Upgrade…"
-msgstr "Aukštutinis atnaujinimas…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1166
-msgid "Upload Package…"
-msgstr "Įkelti paketą…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1234
-msgid "Version"
-msgstr "Versija"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
-msgid "Version incompatible"
-msgstr "Versija nesutampa/nepalaikoma"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
-msgid "Waiting for the <em>opkg %h</em> command to complete…"
-msgstr "Laukiama kol <em>„opkg %h“</em> komanda bus atlikta…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1198
-msgctxt "Display translation packages"
-msgid "all"
-msgstr "visi"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
-msgctxt "Display translation packages"
-msgid "filtered"
-msgstr "filtruota/-s/-i"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
-msgctxt "Display translation packages"
-msgid "none"
-msgstr "joks (-ia/-ie)"
-
-#: 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:1143
-msgid "unknown"
-msgstr "nežinoma/-s/-i"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
-msgid "~%1024mB compressed"
-msgstr "~%1024mB kompresuota/suspausta"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
-msgid "~%1024mB installed"
-msgstr "~%1024mB įdiegtą"
-
-#~ msgid "Free space"
-#~ msgstr "Laisva vieta/-ovė"
+++ /dev/null
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-06-10 03:40+0200\n"
-"PO-Revision-Date: 2020-10-15 00:31+0000\n"
-"Last-Translator: Prachi Joshi <josprachi@yahoo.com>\n"
-"Language-Team: Marathi <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsopkg/mr/>\n"
-"Language: mr\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: Weblate 4.3-dev\n"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
-msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
-msgid ""
-"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
-msgid "Actions"
-msgstr "क्रिया"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
-msgid "Allow overwriting conflicting package files"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
-msgid "Automatically remove unused dependencies"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1218
-msgid "Available"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
-msgid ""
-"Below is a listing of the various configuration files used by <em>opkg</em>. "
-"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
-"custom repository entries. The configuration in the other files may be "
-"changed but is usually not preserved by <em>sysupgrade</em>."
-msgstr ""
-
-#: 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:1150
-msgid "Clear"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
-msgid "Configure opkg…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
-msgid "Dependencies"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
-msgid "Description"
-msgstr "वर्णन"
-
-#: 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:1142
-msgid "Disk space"
-msgstr ""
-
-#: 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:1172
-msgid "Display LuCI translation packages"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
-msgid "Display all available translation packages"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
-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:1155
-msgid "Download and install package"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
-msgid "Errors"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
-msgid "Executing package manager"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
-msgid "Filter"
-msgstr "फिल्टर करा"
-
-#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
-msgid "Grant access to opkg management"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1202
-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:1133
-msgid "Install additional software and upgrade existing packages with opkg."
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
-msgid "Install suggested translation packages as well"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
-msgid "Installed"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
-msgid ""
-"Installing packages from untrusted sources is a potential security risk! "
-"Really attempt to install <em>%h</em>?"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
-msgid "Install…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
-msgid "Loading configuration data…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
-msgid "Loading package information…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
-msgid "MD5"
-msgstr "MD5"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
-msgid "Manually install package"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
-msgid "Needs upgrade"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
-msgid "Next page"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
-msgid "No information available"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
-msgid "No packages"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
-msgid "No packages matching \"<strong>%h</strong>\"."
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
-msgid "Not available"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
-msgid "Not installed"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
-msgid "OK"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
-msgid "OPKG Configuration"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
-msgid "Package name"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
-msgid "Package name or URL…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
-msgid "Previous page"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
-msgid "Really attempt to install <em>%h</em>?"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
-msgid "Remove"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
-msgid "Remove package <em>%h</em>"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
-msgid "Remove…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
-msgid "Require approx. %1024mB size for %d package(s) to install."
-msgstr ""
-
-#: 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: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:508
-msgid "Requires update to %h %h"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
-msgid "Reset"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
-msgid "SHA256"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
-msgid "Save"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
-msgid "Saving configuration data…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
-msgid "Size"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
-msgid "Size (.ipk)"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
-#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
-msgid "Software"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
-msgid "Suggested translations"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
-msgid "Suggested translations require approx. %1024mB additional space."
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
-msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
-msgstr ""
-
-#: 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: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: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:1149
-msgid "Type to filter…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
-msgid "Unable to execute <em>opkg %s</em> command: %s"
-msgstr ""
-
-#: 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:910
-msgid "Unable to save %s: %s"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1165
-msgid "Update lists…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
-msgid "Updates"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
-msgid "Upgrade…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1166
-msgid "Upload Package…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1234
-msgid "Version"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
-msgid "Version incompatible"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
-msgid "Waiting for the <em>opkg %h</em> command to complete…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1198
-msgctxt "Display translation packages"
-msgid "all"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
-msgctxt "Display translation packages"
-msgid "filtered"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
-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:1143
-msgid "unknown"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
-msgid "~%1024mB compressed"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
-msgid "~%1024mB installed"
-msgstr ""
+++ /dev/null
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-05-07 17:57+1000\n"
-"PO-Revision-Date: 2024-01-22 09:21+0000\n"
-"Last-Translator: Abdul Muizz Bin Abdul Jalil <abmuizz@gmail.com>\n"
-"Language-Team: Malay <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsopkg/ms/>\n"
-"Language: ms\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Weblate 5.4-dev\n"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
-msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
-msgid ""
-"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
-msgid "Actions"
-msgstr "Tindakkan"
-
-#: 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:1218
-msgid "Available"
-msgstr "Boleh didapati"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
-msgid ""
-"Below is a listing of the various configuration files used by <em>opkg</em>. "
-"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
-"custom repository entries. The configuration in the other files may be "
-"changed but is usually not preserved by <em>sysupgrade</em>."
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js: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:1150
-msgid "Clear"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
-#, fuzzy
-msgid "Configure opkg…"
-msgstr "Konfigurasi"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
-msgid "Dependencies"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
-msgid "Description"
-msgstr "Keterangan"
-
-#: 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:1142
-msgid "Disk space"
-msgstr ""
-
-#: 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:1172
-msgid "Display LuCI translation packages"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
-msgid "Display all available translation packages"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
-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:1155
-msgid "Download and install package"
-msgstr "Turun dan memasang pakej"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
-msgid "Errors"
-msgstr "Ralat"
-
-#: 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:1147
-msgid "Filter"
-msgstr "Penapis"
-
-#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
-msgid "Grant access to opkg management"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1202
-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:1133
-msgid "Install additional software and upgrade existing packages with opkg."
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
-msgid "Install suggested translation packages as well"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
-#, fuzzy
-msgid "Installed"
-msgstr "Memasang"
-
-#: 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:288
-#, fuzzy
-msgid "Install…"
-msgstr "Memasang"
-
-#: 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:1084
-msgid "Loading package information…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
-msgid "MD5"
-msgstr "MD5"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
-#, fuzzy
-msgid "Manually install package"
-msgstr "Turun dan memasang pakej"
-
-#: 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:1227
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
-msgid "Next page"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
-msgid "No information available"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
-#, fuzzy
-msgid "No packages"
-msgstr "Cari pakej"
-
-#: 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:542
-#, fuzzy
-msgid "Not available"
-msgstr "(%s sedia)"
-
-#: 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:1158
-msgid "OK"
-msgstr "Baik"
-
-#: 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:1233
-msgid "Package name"
-msgstr "Nama pakej"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
-#, fuzzy
-msgid "Package name or URL…"
-msgstr "Nama pakej"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
-msgid "Previous page"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
-msgid "Really attempt to install <em>%h</em>?"
-msgstr ""
-
-#: 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:943
-msgid "Remove package <em>%h</em>"
-msgstr ""
-
-#: 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:737
-msgid "Require approx. %1024mB size for %d package(s) to install."
-msgstr ""
-
-#: 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: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:508
-msgid "Requires update to %h %h"
-msgstr ""
-
-#: 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:1047
-msgid "SHA256"
-msgstr ""
-
-#: 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:905
-msgid "Saving configuration data…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
-msgid "Size"
-msgstr "Saiz"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
-msgid "Size (.ipk)"
-msgstr ""
-
-#: 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: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: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: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: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:1149
-msgid "Type to filter…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
-msgid "Unable to execute <em>opkg %s</em> command: %s"
-msgstr ""
-
-#: 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:910
-msgid "Unable to save %s: %s"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1165
-msgid "Update lists…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
-msgid "Updates"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
-msgid "Upgrade…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1166
-msgid "Upload Package…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1234
-msgid "Version"
-msgstr "Versi"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
-msgid "Version incompatible"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
-msgid "Waiting for the <em>opkg %h</em> command to complete…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1198
-msgctxt "Display translation packages"
-msgid "all"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
-msgctxt "Display translation packages"
-msgid "filtered"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
-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:1143
-msgid "unknown"
-msgstr "tidak diketahui"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
-msgid "~%1024mB compressed"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
-msgid "~%1024mB installed"
-msgstr ""
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2024-01-03 18:37+0000\n"
-"Last-Translator: Allan Nordhøy <epost@anotheragency.no>\n"
-"Language-Team: Norwegian Bokmål <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsopkg/nb_NO/>\n"
-"Language: nb_NO\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 5.4-dev\n"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
-msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
-msgid ""
-"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
-msgid "Actions"
-msgstr "Handlinger"
-
-#: 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:1218
-msgid "Available"
-msgstr "Tilgjengelig"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
-msgid ""
-"Below is a listing of the various configuration files used by <em>opkg</em>. "
-"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
-"custom repository entries. The configuration in the other files may be "
-"changed but is usually not preserved by <em>sysupgrade</em>."
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js: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:1150
-msgid "Clear"
-msgstr "Tøm"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
-#, fuzzy
-msgid "Configure opkg…"
-msgstr "Sett opp opkg…"
-
-#: 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:750
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
-msgid "Description"
-msgstr "Beskrivelse"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755
-msgid "Details for package <em>%h</em>"
-msgstr "Detaljer for pakken <em>%h</em>"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142
-msgid "Disk space"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
-msgid "Dismiss"
-msgstr "Avslå"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1172
-msgid "Display LuCI translation packages"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
-msgid "Display all available translation packages"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
-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:1155
-msgid "Download and install package"
-msgstr "Last ned og installer pakken"
-
-#: 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:982
-msgid "Executing package manager"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
-#, fuzzy
-msgid "Filter"
-msgstr "Filter"
-
-#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
-msgid "Grant access to opkg management"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1202
-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:1133
-msgid "Install additional software and upgrade existing packages with opkg."
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
-msgid "Install suggested translation packages as well"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
-#, fuzzy
-msgid "Installed"
-msgstr "Installer"
-
-#: 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:288
-msgid "Install…"
-msgstr "Installer…"
-
-#: 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:1084
-msgid "Loading package information…"
-msgstr "Last inn pakkeinfo …"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
-msgid "MD5"
-msgstr "MD5"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
-#, fuzzy
-msgid "Manually install package"
-msgstr "Last ned og installer pakken"
-
-#: 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:1227
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
-msgid "Next page"
-msgstr "Neste side"
-
-#: 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:355
-#, fuzzy
-msgid "No packages"
-msgstr "Finn pakke"
-
-#: 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:542
-#, fuzzy
-msgid "Not available"
-msgstr "Totalt Tilgjengelig"
-
-#: 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:1158
-msgid "OK"
-msgstr "OK"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
-#, fuzzy
-msgid "OPKG Configuration"
-msgstr "<abbr title=\"Open PacKaGe Management\">OPKG</abbr>-Konfigurasjon"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
-msgid "Package name"
-msgstr "Pakkenavn"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
-msgid "Package name or URL…"
-msgstr "Pakkenavn eller nettadresse…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
-msgid "Previous page"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
-msgid "Really attempt to install <em>%h</em>?"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
-msgid "Remove"
-msgstr "Fjern"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
-msgid "Remove package <em>%h</em>"
-msgstr ""
-
-#: 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:737
-msgid "Require approx. %1024mB size for %d package(s) to install."
-msgstr ""
-
-#: 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: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:508
-msgid "Requires update to %h %h"
-msgstr ""
-
-#: 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:1047
-msgid "SHA256"
-msgstr ""
-
-#: 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:905
-msgid "Saving configuration data…"
-msgstr "Lagrer oppsettsdata…"
-
-#: 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:1235
-msgid "Size (.ipk)"
-msgstr "Størrelse (.ipk)"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
-#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
-msgid "Software"
-msgstr "Programvare"
-
-#: 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: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: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: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:1149
-msgid "Type to filter…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
-msgid "Unable to execute <em>opkg %s</em> command: %s"
-msgstr ""
-
-#: 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:910
-msgid "Unable to save %s: %s"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1165
-msgid "Update lists…"
-msgstr "Oppdater lister…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
-#, fuzzy
-msgid "Updates"
-msgstr "Oppdater lister"
-
-#: 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:1166
-msgid "Upload Package…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1234
-msgid "Version"
-msgstr "Versjon"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
-msgid "Version incompatible"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
-msgid "Waiting for the <em>opkg %h</em> command to complete…"
-msgstr "Venter på at <em>opkg %h</em>-kommando fullføres…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1198
-msgctxt "Display translation packages"
-msgid "all"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
-msgctxt "Display translation packages"
-msgid "filtered"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
-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:1143
-msgid "unknown"
-msgstr "ukjent"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
-msgid "~%1024mB compressed"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
-msgid "~%1024mB installed"
-msgstr ""
-
-#~ msgid "Free space"
-#~ msgstr "Ledig plass"
+++ /dev/null
-msgid ""
-msgstr ""
-"Content-Type: text/plain; charset=UTF-8\n"
-"Project-Id-Version: PACKAGE VERSION\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
-"Language: nl\n"
-"MIME-Version: 1.0\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
-msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
-msgid ""
-"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
-msgid "Actions"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
-msgid "Allow overwriting conflicting package files"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
-msgid "Automatically remove unused dependencies"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1218
-msgid "Available"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
-msgid ""
-"Below is a listing of the various configuration files used by <em>opkg</em>. "
-"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
-"custom repository entries. The configuration in the other files may be "
-"changed but is usually not preserved by <em>sysupgrade</em>."
-msgstr ""
-
-#: 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:1150
-msgid "Clear"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
-msgid "Configure opkg…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
-msgid "Dependencies"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
-msgid "Description"
-msgstr ""
-
-#: 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:1142
-msgid "Disk space"
-msgstr ""
-
-#: 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:1172
-msgid "Display LuCI translation packages"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
-msgid "Display all available translation packages"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
-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:1155
-msgid "Download and install package"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
-msgid "Errors"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
-msgid "Executing package manager"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
-msgid "Filter"
-msgstr ""
-
-#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
-msgid "Grant access to opkg management"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1202
-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:1133
-msgid "Install additional software and upgrade existing packages with opkg."
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
-msgid "Install suggested translation packages as well"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
-msgid "Installed"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
-msgid ""
-"Installing packages from untrusted sources is a potential security risk! "
-"Really attempt to install <em>%h</em>?"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
-msgid "Install…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
-msgid "Loading configuration data…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
-msgid "Loading package information…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
-msgid "MD5"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
-msgid "Manually install package"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
-msgid "Needs upgrade"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
-msgid "Next page"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
-msgid "No information available"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
-msgid "No packages"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
-msgid "No packages matching \"<strong>%h</strong>\"."
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
-msgid "Not available"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
-msgid "Not installed"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
-msgid "OK"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
-msgid "OPKG Configuration"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
-msgid "Package name"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
-msgid "Package name or URL…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
-msgid "Previous page"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
-msgid "Really attempt to install <em>%h</em>?"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
-msgid "Remove"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
-msgid "Remove package <em>%h</em>"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
-msgid "Remove…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
-msgid "Require approx. %1024mB size for %d package(s) to install."
-msgstr ""
-
-#: 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: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:508
-msgid "Requires update to %h %h"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
-msgid "Reset"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
-msgid "SHA256"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
-msgid "Save"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
-msgid "Saving configuration data…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
-msgid "Size"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
-msgid "Size (.ipk)"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
-#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
-msgid "Software"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
-msgid "Suggested translations"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
-msgid "Suggested translations require approx. %1024mB additional space."
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
-msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
-msgstr ""
-
-#: 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: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: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:1149
-msgid "Type to filter…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
-msgid "Unable to execute <em>opkg %s</em> command: %s"
-msgstr ""
-
-#: 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:910
-msgid "Unable to save %s: %s"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1165
-msgid "Update lists…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
-msgid "Updates"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
-msgid "Upgrade…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1166
-msgid "Upload Package…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1234
-msgid "Version"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
-msgid "Version incompatible"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
-msgid "Waiting for the <em>opkg %h</em> command to complete…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1198
-msgctxt "Display translation packages"
-msgid "all"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
-msgctxt "Display translation packages"
-msgid "filtered"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
-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:1143
-msgid "unknown"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
-msgid "~%1024mB compressed"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
-msgid "~%1024mB installed"
-msgstr ""
+++ /dev/null
-msgid ""
-msgstr ""
-"Project-Id-Version: LuCI\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-04-20 09:40+0200\n"
-"PO-Revision-Date: 2024-09-16 17:15+0000\n"
-"Last-Translator: Matthaiks <kitynska@gmail.com>\n"
-"Language-Team: Polish <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsopkg/pl/>\n"
-"Language: pl\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
-"|| n%100>=20) ? 1 : 2);\n"
-"X-Generator: Weblate 5.8-dev\n"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
-msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
-msgstr "Zajęte: %s (zajęte: %1024mB z %1024mB, wolne: %1024mB)"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
-msgid ""
-"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
-msgstr ""
-"<strong>Uwaga!</strong> Operacje na pakietach mogą <a %s>uszkodzić "
-"system</a>."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
-msgid "Actions"
-msgstr "Akcje"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
-msgid "Allow overwriting conflicting package files"
-msgstr "Zezwalaj na zastępowanie plików powodujących konflikty"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
-msgid "Automatically remove unused dependencies"
-msgstr "Automatycznie usuwaj nieużywane zależności"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1218
-msgid "Available"
-msgstr "Dostępne"
-
-#: 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 ""
-"Poniżej znajduje się lista różnych plików konfiguracyjnych używanych przez "
-"<em>opkg</em>. Użyj <em>opkg.conf</em> dla ustawień globalnych i "
-"<em>customfeeds.conf</em> dla niestandardowych wpisów w repozytorium. "
-"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: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:1150
-msgid "Clear"
-msgstr "Wyczyść"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
-msgid "Configure opkg…"
-msgstr "Skonfiguruj opkg…"
-
-#: 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:750
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
-msgid "Description"
-msgstr "Opis"
-
-#: 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:1142
-msgid "Disk space"
-msgstr "Miejsce na dysku"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
-msgid "Dismiss"
-msgstr "Zamknij"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1172
-msgid "Display LuCI translation packages"
-msgstr "Wyświetl pakiety tłumaczeń LuCI"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
-msgid "Display all available translation packages"
-msgstr "Wyświetl wszystkie dostępne pakiety tłumaczeń"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
-msgid ""
-"Display base translation packages and translation packages for already "
-"installed languages only"
-msgstr ""
-"Wyświetl tylko podstawowe pakiety tłumaczeń i pakiety tłumaczeń dla już "
-"zainstalowanych języków"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354
-msgid "Displaying %d-%d of %d"
-msgstr "Wyświetlanie %d-%d z %d"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155
-msgid "Download and install package"
-msgstr "Pobierz i zainstaluj pakiet"
-
-#: 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:982
-msgid "Executing package manager"
-msgstr "Uruchamianie menedżera pakietów"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
-msgid "Filter"
-msgstr "Filtr"
-
-#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
-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:1202
-msgid "Hide all translation packages"
-msgstr "Ukryj wszystkie pakiety tłumaczeń"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066
-msgid "Install"
-msgstr "Instaluj"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1133
-msgid "Install additional software and upgrade existing packages with opkg."
-msgstr ""
-"Instaluj dodatkowe oprogramowanie i aktualizuj istniejące pakiety za pomocą "
-"opkg."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
-msgid "Install suggested translation packages as well"
-msgstr "Zainstaluj również sugerowane pakiety tłumaczeń"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
-msgid "Installed"
-msgstr "Zainstalowane"
-
-#: 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 ""
-"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:288
-msgid "Install…"
-msgstr "Zainstaluj.…"
-
-#: 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:1084
-msgid "Loading package information…"
-msgstr "Ładowanie informacji o pakietach…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
-msgid "MD5"
-msgstr "MD5"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
-msgid "Manually install package"
-msgstr "Ręczna instalacja pakietu"
-
-#: 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:1227
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
-msgid "Next page"
-msgstr "Następna strona"
-
-#: 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:355
-msgid "No packages"
-msgstr "Brak pakietów"
-
-#: 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:542
-msgid "Not available"
-msgstr "Niedostępne"
-
-#: 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:1158
-msgid "OK"
-msgstr "OK"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
-msgid "OPKG Configuration"
-msgstr "Konfiguracja OPKG"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
-msgid "Package name"
-msgstr "Nazwa pakietu"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
-msgid "Package name or URL…"
-msgstr "Nazwa pakietu lub adres URL…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
-msgid "Previous page"
-msgstr "Poprzednia strona"
-
-#: 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:967
-msgid "Remove"
-msgstr "Usuń"
-
-#: 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:276
-msgid "Remove…"
-msgstr "Usuń…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
-msgid "Require approx. %1024mB size for %d package(s) to install."
-msgstr "Wymaga ok. %1024mB miejsca i instalacji %d pakietu(-ów)."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js: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: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:508
-msgid "Requires update to %h %h"
-msgstr "Wymaga aktualizacji do %h %h"
-
-#: 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:1047
-msgid "SHA256"
-msgstr "SHA256"
-
-#: 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:905
-msgid "Saving configuration data…"
-msgstr "Zapisywanie danych konfiguracyjnych…"
-
-#: 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:1235
-msgid "Size (.ipk)"
-msgstr "Rozmiar (.ipk)"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
-#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
-msgid "Software"
-msgstr "Oprogramowanie"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
-msgid "Suggested translations"
-msgstr "Sugerowane tłumaczenia"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
-msgid "Suggested translations require approx. %1024mB additional space."
-msgstr "Sugerowane tłumaczenia wymagają ok. %1024mB dodatkowej przestrzeni."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
-msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
-msgstr ""
-"Polecenie <em>opkg %h</em> zakończyło się niepowodzeniem z kodem "
-"<code>%d</code>."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
-msgid ""
-"The installed version of package <em>%h</em> is not compatible, require %s "
-"while %s is installed."
-msgstr ""
-"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: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:530
-msgid ""
-"The repository version of package <em>%h</em> is not compatible, require %s "
-"but only %s is available."
-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:1149
-msgid "Type to filter…"
-msgstr "Wpisz, aby przefiltrować…"
-
-#: 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: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: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:1165
-msgid "Update lists…"
-msgstr "Aktualizuj listy…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
-msgid "Updates"
-msgstr "Aktualizacje"
-
-#: 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:1166
-msgid "Upload Package…"
-msgstr "Prześlij pakiet…"
-
-#: 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:1234
-msgid "Version"
-msgstr "Wersja"
-
-#: 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:984
-msgid "Waiting for the <em>opkg %h</em> command to complete…"
-msgstr "Oczekiwanie na wykonanie polecenia <em>opkg %h</em>…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1198
-msgctxt "Display translation packages"
-msgid "all"
-msgstr "wszystkie"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
-msgctxt "Display translation packages"
-msgid "filtered"
-msgstr "przefiltrowane"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
-msgctxt "Display translation packages"
-msgid "none"
-msgstr "żadne"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1143
-msgid "unknown"
-msgstr "nieznana"
-
-#: 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"
-
-#~ msgid "Free space"
-#~ msgstr "Wolna przestrzeń"
-
-#~ msgid "Overwrite files from other package(s)"
-#~ msgstr "Nadpisz pliki z innych pakietów"
-
-#~ msgid ""
-#~ "Require version %h %h,\n"
-#~ "installed %h"
-#~ msgstr ""
-#~ "Wymaga wersji %h %h,\n"
-#~ "zainstalowanej %h"
+++ /dev/null
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-05-26 19:03+0200\n"
-"PO-Revision-Date: 2024-03-23 00:13+0000\n"
-"Last-Translator: ssantos <ssantos@web.de>\n"
-"Language-Team: Portuguese <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsopkg/pt/>\n"
-"Language: pt\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 5.5-dev\n"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
-msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
-msgstr "%s usado (%1024mB de %1024mB usados, %1024mB livre)"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
-msgid ""
-"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
-msgstr ""
-"<strong>Atenção!</strong>Operações de pacotes podem <a %s>destruir o seu "
-"sistema</a>."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
-msgid "Actions"
-msgstr "Ações"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
-msgid "Allow overwriting conflicting package files"
-msgstr "Permitir sobrescrever ficheiros de pacotes em conflito"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
-msgid "Automatically remove unused dependencies"
-msgstr "Remover automaticamente dependências não utilizadas"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1218
-msgid "Available"
-msgstr "Disponível"
-
-#: 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 baixo está uma listagem dos vários ficheiros de configuração utilizados "
-"pelo <em>opkg</em>. Utilize <em>opkg.conf</em> para definições globais e "
-"<em>customfeeds.conf</em> para entradas de repositórios personalizados. A "
-"configuração dos outros ficheiros pode ser alterada mas geralmente não é "
-"preservada pelo <em>sysupgrade</em>."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js: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:1150
-msgid "Clear"
-msgstr "Limpar"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
-msgid "Configure opkg…"
-msgstr "Configurar opkg…"
-
-#: 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:750
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
-msgid "Description"
-msgstr "Descrição"
-
-#: 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:1142
-msgid "Disk space"
-msgstr "Espaço no disco"
-
-#: 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:1172
-msgid "Display LuCI translation packages"
-msgstr "Mostrar pacotes de tradução do LuCI"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
-msgid "Display all available translation packages"
-msgstr "Mostrar todos os pacotes de tradução disponíveis"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
-msgid ""
-"Display base translation packages and translation packages for already "
-"installed languages only"
-msgstr ""
-"Mostrar apenas pacotes de tradução base e pacotes de tradução apenas para "
-"idiomas já instalados"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354
-msgid "Displaying %d-%d of %d"
-msgstr "A mostrar %d-%d de %d"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155
-msgid "Download and install package"
-msgstr "Descarregar e instalar o pacote"
-
-#: 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:982
-msgid "Executing package manager"
-msgstr "A executar o gestor de pacotes"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
-msgid "Filter"
-msgstr "Filtro"
-
-#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
-msgid "Grant access to opkg management"
-msgstr "Conceder acesso à gestão do opkg"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1202
-msgid "Hide all translation packages"
-msgstr "Ocultar todos os pacotes de tradução"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066
-msgid "Install"
-msgstr "Instalar"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1133
-msgid "Install additional software and upgrade existing packages with opkg."
-msgstr "Instale software adicional e atualize pacotes existentes com opkg."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
-msgid "Install suggested translation packages as well"
-msgstr "Também instalar os pacotes de tradução sugeridos"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
-msgid "Installed"
-msgstr "Instalado"
-
-#: 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 ""
-"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:288
-msgid "Install…"
-msgstr "Instalar…"
-
-#: 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:1084
-msgid "Loading package information…"
-msgstr "A carregar informações do pacote…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
-msgid "MD5"
-msgstr "MD5"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
-msgid "Manually install package"
-msgstr "Instalar pacote manualmente"
-
-#: 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:1227
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
-msgid "Next page"
-msgstr "Próxima página"
-
-#: 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:355
-msgid "No packages"
-msgstr "Não há pacotes"
-
-#: 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:542
-msgid "Not available"
-msgstr "Não disponível"
-
-#: 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:1158
-msgid "OK"
-msgstr "OK"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
-msgid "OPKG Configuration"
-msgstr "Configuração do OPKG"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
-msgid "Package name"
-msgstr "Nome do pacote"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
-msgid "Package name or URL…"
-msgstr "Nome do pacote ou URL…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
-msgid "Previous page"
-msgstr "Página anterior"
-
-#: 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:967
-msgid "Remove"
-msgstr "Remover"
-
-#: 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:276
-msgid "Remove…"
-msgstr "Remover…"
-
-#: 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: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: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: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:373
-msgid "Reset"
-msgstr "Reset"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
-msgid "SHA256"
-msgstr "SHA256"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
-msgid "Save"
-msgstr "Guardar"
-
-#: 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: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:1235
-msgid "Size (.ipk)"
-msgstr "Tamanho (.ipk)"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
-#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
-msgid "Software"
-msgstr "Software"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
-msgid "Suggested translations"
-msgstr "Traduções sugeridas"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
-msgid "Suggested translations require approx. %1024mB additional space."
-msgstr ""
-"As traduções sugeridas requerem aproximadamente %1024mB de espaço adicional."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
-msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
-msgstr ""
-"O comando <em>opkg %h</em> falhou com o código de erro <code>%d</code>."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
-msgid ""
-"The installed version of package <em>%h</em> is not compatible, require %s "
-"while %s is installed."
-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: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:530
-msgid ""
-"The repository version of package <em>%h</em> is not compatible, require %s "
-"but only %s is available."
-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:1149
-msgid "Type to filter…"
-msgstr "Escreva para filtrar…"
-
-#: 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:871
-msgid "Unable to read %s: %s"
-msgstr "Incapaz de ler %s: %s"
-
-#: 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:1165
-msgid "Update lists…"
-msgstr "Atualizar listas…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
-msgid "Updates"
-msgstr "Atualizações"
-
-#: 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:1166
-msgid "Upload Package…"
-msgstr "Enviar pacote…"
-
-#: 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:1234
-msgid "Version"
-msgstr "Versão"
-
-#: 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: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:1198
-msgctxt "Display translation packages"
-msgid "all"
-msgstr "todos"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
-msgctxt "Display translation packages"
-msgid "filtered"
-msgstr "filtrado"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
-msgctxt "Display translation packages"
-msgid "none"
-msgstr "nenhum"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1143
-msgid "unknown"
-msgstr "desconhecido"
-
-#: 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"
-
-#~ msgid "Free space"
-#~ msgstr "Espaço livre"
-
-#~ msgid "Overwrite files from other package(s)"
-#~ msgstr "Substituir ficheiros de outro(s) pacote(s)"
+++ /dev/null
-msgid ""
-msgstr ""
-"Project-Id-Version: \n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-06-10 03:41+0200\n"
-"PO-Revision-Date: 2024-07-17 07:32+0000\n"
-"Last-Translator: Janderson Vieira Santos <jandersonvs79@gmail.com>\n"
-"Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/"
-"openwrt/luciapplicationsopkg/pt_BR/>\n"
-"Language: pt_BR\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: Weblate 5.7-dev\n"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
-msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
-msgstr "%s utilizado (%1024mB utilizados de %1024mB, %1024mB livres)"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
-msgid ""
-"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
-msgstr ""
-"<strong>Aviso!</strong> Operações de pacotes podem <a %s>danificar seu "
-"sistema</a>."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
-msgid "Actions"
-msgstr "Ações"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
-msgid "Allow overwriting conflicting package files"
-msgstr "Permite a substituição dos arquivos dos pacotes com conflito"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
-msgid "Automatically remove unused dependencies"
-msgstr "Remover automaticamente dependentes não-utilizados"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1218
-msgid "Available"
-msgstr "Disponível"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
-msgid ""
-"Below is a listing of the various configuration files used by <em>opkg</em>. "
-"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
-"custom repository entries. The configuration in the other files may be "
-"changed but is usually not preserved by <em>sysupgrade</em>."
-msgstr ""
-"Abaixo está uma lista dos diversos arquivos de configuração utilizados por "
-"<em>opkg</em>. Use <em>opkg.conf</em> para configuração geral e "
-"<em>customfeeds.conf</em> para inserir repositórios personalizados. As "
-"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: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:1150
-msgid "Clear"
-msgstr "Limpar"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
-msgid "Configure opkg…"
-msgstr "Configurar o opkg…"
-
-#: 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:750
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
-msgid "Description"
-msgstr "Descrição"
-
-#: 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:1142
-msgid "Disk space"
-msgstr "Espaço no disco"
-
-#: 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:1172
-msgid "Display LuCI translation packages"
-msgstr "Exibe os pacotes de tradução do LuCI"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
-msgid "Display all available translation packages"
-msgstr "Exibe todos os pacotes de tradução disponíveis"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
-msgid ""
-"Display base translation packages and translation packages for already "
-"installed languages only"
-msgstr ""
-"Exibe os pacotes base de tradução e os pacotes de tradução apenas para os "
-"idiomas já instalados"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354
-msgid "Displaying %d-%d of %d"
-msgstr "Exibindo %d-%d de %d"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155
-msgid "Download and install package"
-msgstr "Baixe e instale o pacote"
-
-#: 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:982
-msgid "Executing package manager"
-msgstr "Executando o gerenciador de pacotes"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
-msgid "Filter"
-msgstr "Filtro"
-
-#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
-msgid "Grant access to opkg management"
-msgstr "Conceder acesso ao gerenciador opkg"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1202
-msgid "Hide all translation packages"
-msgstr "Oculte todos os pacotes de tradução"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066
-msgid "Install"
-msgstr "Instalar"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1133
-msgid "Install additional software and upgrade existing packages with opkg."
-msgstr "Instale software adicional e atualize pacotes existentes com o opkg."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
-msgid "Install suggested translation packages as well"
-msgstr "Instale também os pacotes sugeridos de tradução"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
-msgid "Installed"
-msgstr "Instalado"
-
-#: 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 ""
-"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:288
-msgid "Install…"
-msgstr "Instalar…"
-
-#: 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:1084
-msgid "Loading package information…"
-msgstr "Carregando informações de pacotes…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
-msgid "MD5"
-msgstr "MD5"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
-msgid "Manually install package"
-msgstr "Instalar o pacote manualmente"
-
-#: 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:1227
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
-msgid "Next page"
-msgstr "Próxima página"
-
-#: 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:355
-msgid "No packages"
-msgstr "Sem pacotes"
-
-#: 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:542
-msgid "Not available"
-msgstr "Não disponível"
-
-#: 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:1158
-msgid "OK"
-msgstr "OK"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
-msgid "OPKG Configuration"
-msgstr "Configuração do OPKG"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
-msgid "Package name"
-msgstr "Nome do Pacote"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
-msgid "Package name or URL…"
-msgstr "Nome do pacote ou URL…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
-msgid "Previous page"
-msgstr "Página anterior"
-
-#: 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:967
-msgid "Remove"
-msgstr "Remover"
-
-#: 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:276
-msgid "Remove…"
-msgstr "Remover…"
-
-#: 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."
-
-#: 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: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: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:373
-msgid "Reset"
-msgstr "Limpar"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
-msgid "SHA256"
-msgstr "SHA256"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
-msgid "Save"
-msgstr "Salvar"
-
-#: 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: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:1235
-msgid "Size (.ipk)"
-msgstr "Tamanho (.ipk)"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
-#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
-msgid "Software"
-msgstr "Software"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
-msgid "Suggested translations"
-msgstr "Traduções sugeridas"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
-msgid "Suggested translations require approx. %1024mB additional space."
-msgstr "As traduções sugeridas precisam de aprox. %1024mB de espaço adicional."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
-msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
-msgstr "O comando <em>opkg %h</em> falhou com o código <code>%d</code>."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
-msgid ""
-"The installed version of package <em>%h</em> is not compatible, require %s "
-"while %s is installed."
-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: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:530
-msgid ""
-"The repository version of package <em>%h</em> is not compatible, require %s "
-"but only %s is available."
-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:1149
-msgid "Type to filter…"
-msgstr "Digite para filtrar…"
-
-#: 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:871
-msgid "Unable to read %s: %s"
-msgstr "Impossível ler %s: %s"
-
-#: 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:1165
-msgid "Update lists…"
-msgstr "Atualizar listas…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
-msgid "Updates"
-msgstr "Atualizações"
-
-#: 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:1166
-msgid "Upload Package…"
-msgstr "Enviar Pacote…"
-
-#: 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:1234
-msgid "Version"
-msgstr "Versão"
-
-#: 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: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:1198
-msgctxt "Display translation packages"
-msgid "all"
-msgstr "todos"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
-msgctxt "Display translation packages"
-msgid "filtered"
-msgstr "filtrado"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
-msgctxt "Display translation packages"
-msgid "none"
-msgstr "nenhum"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1143
-msgid "unknown"
-msgstr "desconhecido"
-
-#: 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"
-
-#~ msgid "Free space"
-#~ msgstr "Espaço livre"
-
-#~ msgid "Overwrite files from other package(s)"
-#~ msgstr "Sobrescrever arquivos de outro(s) pacote(s)"
+++ /dev/null
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"PO-Revision-Date: 2023-03-09 19:13+0000\n"
-"Last-Translator: Simona Iacob <s@zp1.net>\n"
-"Language-Team: Romanian <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsopkg/ro/>\n"
-"Language: ro\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < "
-"20)) ? 1 : 2;\n"
-"X-Generator: Weblate 4.16.2-dev\n"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
-msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
-msgid ""
-"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
-msgid "Actions"
-msgstr "Acțiuni"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
-msgid "Allow overwriting conflicting package files"
-msgstr "Permiteți suprascrierea fișierelor pachetelor conflictuale"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
-msgid "Automatically remove unused dependencies"
-msgstr "Eliminați automat dependențele neutilizate"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1218
-msgid "Available"
-msgstr "Disponibile"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
-msgid ""
-"Below is a listing of the various configuration files used by <em>opkg</em>. "
-"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
-"custom repository entries. The configuration in the other files may be "
-"changed but is usually not preserved by <em>sysupgrade</em>."
-msgstr ""
-"Mai jos este o listă a diferitelor fișiere de configurare utilizate de "
-"<em>opkg</em>. Folosiți <em>opkg.conf</em> pentru setările globale și "
-"<em>customfeeds.conf</em> pentru intrările personalizate ale depozitelor. "
-"Configurația din celelalte fișiere poate fi modificată, dar de obicei nu "
-"este păstrată de <em>sysupgrade</em>."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js: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:1150
-msgid "Clear"
-msgstr "Curățați"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
-msgid "Configure opkg…"
-msgstr "Configurați opkg…"
-
-#: 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:750
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
-msgid "Description"
-msgstr "Descriere"
-
-#: 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:1142
-msgid "Disk space"
-msgstr ""
-
-#: 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:1172
-msgid "Display LuCI translation packages"
-msgstr "Afișați pachetele de traducere LuCI"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
-msgid "Display all available translation packages"
-msgstr "Afișați toate pachetele de traducere disponibile"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
-msgid ""
-"Display base translation packages and translation packages for already "
-"installed languages only"
-msgstr ""
-"Afișați pachetele de traducere de bază și pachetele de traducere numai "
-"pentru limbile deja instalate"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js: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:1155
-msgid "Download and install package"
-msgstr "Descărcați și instalați pachetul"
-
-#: 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:982
-msgid "Executing package manager"
-msgstr "Executarea managerului de pachete"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
-msgid "Filter"
-msgstr "Filtru"
-
-#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
-msgid "Grant access to opkg management"
-msgstr "Acordați acces la gestionarea opkg"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1202
-msgid "Hide all translation packages"
-msgstr "Ascundeți toate pachetele de traducere"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066
-msgid "Install"
-msgstr "Instalați"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1133
-msgid "Install additional software and upgrade existing packages with opkg."
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
-msgid "Install suggested translation packages as well"
-msgstr "Instalați și pachetele de traducere sugerate"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
-msgid "Installed"
-msgstr "Instalat"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
-msgid ""
-"Installing packages from untrusted sources is a potential security risk! "
-"Really attempt to install <em>%h</em>?"
-msgstr ""
-"Instalarea de pachete din surse nesigure reprezintă un potențial risc de "
-"securitate! Încercați cu adevărat să instalați <em>%h</em>?"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
-msgid "Install…"
-msgstr "Instalați…"
-
-#: 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:1084
-msgid "Loading package information…"
-msgstr "Se încarcă informațiile despre pachet…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
-msgid "MD5"
-msgstr "MD5"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
-msgid "Manually install package"
-msgstr "Instalați manual pachetul"
-
-#: 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:1227
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
-msgid "Next page"
-msgstr "Pagina următoare"
-
-#: 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:355
-msgid "No packages"
-msgstr "Fără pachete"
-
-#: 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:542
-msgid "Not available"
-msgstr "Nu este disponibil"
-
-#: 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:1158
-msgid "OK"
-msgstr "OK"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
-msgid "OPKG Configuration"
-msgstr "Configurația OPKG"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
-msgid "Package name"
-msgstr "Numele pachetului"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
-msgid "Package name or URL…"
-msgstr "Numele pachetului sau URL-ul…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
-msgid "Previous page"
-msgstr "Pagina anterioară"
-
-#: 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:967
-msgid "Remove"
-msgstr "Eliminați"
-
-#: 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:276
-msgid "Remove…"
-msgstr "Eliminaț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 "Este necesar aproximativ %1024mB pentru instalarea a %d pachete(e)."
-
-#: 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: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:508
-msgid "Requires update to %h %h"
-msgstr "Necesită actualizare la %h %h"
-
-#: 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:1047
-msgid "SHA256"
-msgstr "SHA256"
-
-#: 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:905
-msgid "Saving configuration data…"
-msgstr "Se salvează datele de configurare…"
-
-#: 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:1235
-msgid "Size (.ipk)"
-msgstr "Dimensiune (.ipk)"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
-#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
-msgid "Software"
-msgstr "Software"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
-msgid "Suggested translations"
-msgstr "Traduceri sugerate"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
-msgid "Suggested translations require approx. %1024mB additional space."
-msgstr "Traducerile sugerate necesită aproximativ %1024mB spațiu suplimentar."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
-msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
-msgstr "Comanda <em>opkg %h</em> a eșuat cu codul <code>%d</code>."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
-msgid ""
-"The installed version of package <em>%h</em> is not compatible, require %s "
-"while %s is installed."
-msgstr ""
-"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: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:530
-msgid ""
-"The repository version of package <em>%h</em> is not compatible, require %s "
-"but only %s is available."
-msgstr ""
-"Versiunea din depozit a pachetului <em>%h</em> nu este compatibilă, este "
-"necesar %s dar numai %s este disponibil."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
-msgid "Type to filter…"
-msgstr "Tastați pentru a filtra…"
-
-#: 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: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: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:1165
-msgid "Update lists…"
-msgstr "Actualizați listele…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
-msgid "Updates"
-msgstr "Actualizări"
-
-#: 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:1166
-msgid "Upload Package…"
-msgstr "Încărcați pachetul…"
-
-#: 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:1234
-msgid "Version"
-msgstr "Versiune"
-
-#: 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: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:1198
-msgctxt "Display translation packages"
-msgid "all"
-msgstr "toate"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
-msgctxt "Display translation packages"
-msgid "filtered"
-msgstr "Filtrate"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
-msgctxt "Display translation packages"
-msgid "none"
-msgstr "niciunul"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1143
-msgid "unknown"
-msgstr "necunoscut"
-
-#: 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"
-
-#~ msgid "Free space"
-#~ msgstr "Spațiu liber"
-
-#~ msgid "Overwrite files from other package(s)"
-#~ msgstr "Suprascrierea fișierelor din alt(e) pachet(e)"
+++ /dev/null
-msgid ""
-msgstr ""
-"Project-Id-Version: LuCI: base\n"
-"POT-Creation-Date: 2010-05-09 01:01+0300\n"
-"PO-Revision-Date: 2024-04-12 04:01+0000\n"
-"Last-Translator: st7105 <st7105@gmail.com>\n"
-"Language-Team: Russian <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsopkg/ru/>\n"
-"Language: ru\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
-"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-"X-Generator: Weblate 5.5-dev\n"
-"Project-Info: Это технический перевод, не дословный. Главное-удобный русский "
-"интерфейс, все проверялось в графическом режиме, совместим с другими apps\n"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
-msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
-msgstr "%s использовано (%1024mB использовано из %1024mB, %1024mB свободно)"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
-msgid ""
-"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
-msgstr ""
-"<strong>Внимание!</strong> Операции с пакетами могут <a %s>сломать вашу "
-"систему</a>."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
-msgid "Actions"
-msgstr "Действия"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
-msgid "Allow overwriting conflicting package files"
-msgstr "Разрешить перезапись конфликтующих файлов пакетов"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
-msgid "Automatically remove unused dependencies"
-msgstr "Удалить неиспользуемые зависимости"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1218
-msgid "Available"
-msgstr "Доступно"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
-msgid ""
-"Below is a listing of the various configuration files used by <em>opkg</em>. "
-"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
-"custom repository entries. The configuration in the other files may be "
-"changed but is usually not preserved by <em>sysupgrade</em>."
-msgstr ""
-"Ниже приведен список различных файлов конфигурации, используемых <em>opkg</"
-"em>. Используйте файл <em>opkg.conf</em> для глобальных настроек и "
-"<em>customfeeds.conf</em> для пользовательских настроек репозиториев. "
-"Конфигурация в других файлах может производится, но такие настройки могут не "
-"сохраняться утилитой <em>sysupgrade</em>."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
-msgid "Cancel"
-msgstr "Отмена"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150
-msgid "Clear"
-msgstr "Очистить"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
-msgid "Configure opkg…"
-msgstr "Настройки"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
-msgid "Dependencies"
-msgstr "Зависимости"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
-msgid "Description"
-msgstr "Описание"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755
-msgid "Details for package <em>%h</em>"
-msgstr "Подробная информация о пакете <em>%h</em>"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142
-msgid "Disk space"
-msgstr "Дисковое пространство"
-
-#: 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:1172
-msgid "Display LuCI translation packages"
-msgstr "Отображение пакетов перевода LuCI"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
-msgid "Display all available translation packages"
-msgstr "Показывать все доступные переводы пакетов"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
-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:1155
-msgid "Download and install package"
-msgstr "Загрузить и установить пакет"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
-msgid "Errors"
-msgstr "Ошибки"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
-msgid "Executing package manager"
-msgstr "Выполнение..."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
-msgid "Filter"
-msgstr "Фильтр"
-
-#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
-msgid "Grant access to opkg management"
-msgstr "Предоставить доступ к управлению opkg"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1202
-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:1133
-msgid "Install additional software and upgrade existing packages with opkg."
-msgstr ""
-"Устанавливайте дополнительное программное обеспечение и обновляйте "
-"существующие пакеты с помощью opkg."
-
-#: 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:1219
-msgid "Installed"
-msgstr "Установлено"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
-msgid ""
-"Installing packages from untrusted sources is a potential security risk! "
-"Really attempt to install <em>%h</em>?"
-msgstr ""
-"Установка пакетов из недоверенных источников может привести к угрозе "
-"безопасности! Вы действительно хотите установить <em>%h</em>?"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
-msgid "Install…"
-msgstr "Установить…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
-msgid "Loading configuration data…"
-msgstr "Загрузка данных конфигурации…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
-msgid "Loading package information…"
-msgstr "Загрузка информации о пакете…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
-msgid "MD5"
-msgstr "MD5"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
-msgid "Manually install package"
-msgstr "Ручная установка пакета"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
-msgid "Needs upgrade"
-msgstr "Требуется обновление"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
-msgid "Next page"
-msgstr "Следующая страница"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
-msgid "No information available"
-msgstr "Нет доступной информации"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
-msgid "No packages"
-msgstr "Нет пакетов"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
-msgid "No packages matching \"<strong>%h</strong>\"."
-msgstr "Нет пакетов соответствующих запросу «<strong>%h</strong>»."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
-msgid "Not available"
-msgstr "Не доступно"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
-msgid "Not installed"
-msgstr "Не установлено"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
-msgid "OK"
-msgstr "OK"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
-msgid "OPKG Configuration"
-msgstr "Настройка OPKG"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
-msgid "Package name"
-msgstr "Имя пакета"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
-msgid "Package name or URL…"
-msgstr "Имя пакета или URL…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
-msgid "Previous page"
-msgstr "Предыдущая страница"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
-msgid "Really attempt to install <em>%h</em>?"
-msgstr "Вы действительно хотите установить <em>%h</em>?"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
-msgid "Remove"
-msgstr "Удалить"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
-msgid "Remove package <em>%h</em>"
-msgstr "Удалить пакет <em>%h</em>"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
-msgid "Remove…"
-msgstr "Удалить…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
-msgid "Require approx. %1024mB size for %d package(s) to install."
-msgstr ""
-"Требуется примерно %1024mБ свободного пространства для установки %d пакетов."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
-msgid "Require version %h %h, installed %h"
-msgstr "Требуемая версия %h %h, установлена %h"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540
-msgid ""
-"Required dependency package <em>%h</em> is not available in any repository."
-msgstr ""
-"Требуемый в качестве зависимости пакет <em>%h</em> не доступен ни в одном из "
-"сконфигурированных репозиториев."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508
-msgid "Requires update to %h %h"
-msgstr "Требуется обновить до %h %h"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
-msgid "Reset"
-msgstr "Очистить"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
-msgid "SHA256"
-msgstr "SHA256"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
-msgid "Save"
-msgstr "Сохранить"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
-msgid "Saving configuration data…"
-msgstr "Сохранение данных конфигурации…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
-msgid "Size"
-msgstr "Размер"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
-msgid "Size (.ipk)"
-msgstr "Размер (.ipk)"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
-#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
-msgid "Software"
-msgstr "Менеджер пакетов"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
-msgid "Suggested translations"
-msgstr "Рекомендуемые переводы"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
-msgid "Suggested translations require approx. %1024mB additional space."
-msgstr "Рекомендуемые переводы требуют примерно %1024мБ дополнительного места."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
-msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
-msgstr "Команда <em>opkg %h</em> завершилась с кодом ошибки <code>%d</code>."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
-msgid ""
-"The installed version of package <em>%h</em> is not compatible, require %s "
-"while %s is installed."
-msgstr ""
-"Установленная версия пакета <em>%h</em> не совместима. Требуется версия %s, "
-"а установлена %s."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833
-msgid "The package <em>%h</em> is not available in any configured repository."
-msgstr ""
-"Пакет <em>%h</em> не доступен ни в одном из сконфигурированных репозиториев."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530
-msgid ""
-"The repository version of package <em>%h</em> is not compatible, require %s "
-"but only %s is available."
-msgstr ""
-"Версия пакета <em>%h</em>, доступная в репозитории, несовместима. Требуется "
-"%s, но доступна только %s."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
-msgid "Type to filter…"
-msgstr "Введите для фильтрации"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
-msgid "Unable to execute <em>opkg %s</em> command: %s"
-msgstr "Не удалось выполнить команду <em>opkg %s</em>: %s"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871
-msgid "Unable to read %s: %s"
-msgstr "Не удалось прочитать %s: %s"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910
-msgid "Unable to save %s: %s"
-msgstr "Не удалось сохранить %s: %s"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1165
-msgid "Update lists…"
-msgstr "Обновить списки"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
-msgid "Updates"
-msgstr "Обновления"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
-msgid "Upgrade…"
-msgstr "Обновление…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1166
-msgid "Upload Package…"
-msgstr "Загрузить пакет"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1234
-msgid "Version"
-msgstr "Версия"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
-msgid "Version incompatible"
-msgstr "Версия несовместима"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
-msgid "Waiting for the <em>opkg %h</em> command to complete…"
-msgstr "Выполнение команды <em>opkg %h</em>…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1198
-msgctxt "Display translation packages"
-msgid "all"
-msgstr "все"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
-msgctxt "Display translation packages"
-msgid "filtered"
-msgstr "отфильтровать"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
-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:1143
-msgid "unknown"
-msgstr "неизвестно"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
-msgid "~%1024mB compressed"
-msgstr "~%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Б установлено"
-
-#~ msgid "Free space"
-#~ msgstr "Свободное место"
-
-#~ msgid "Overwrite files from other package(s)"
-#~ msgstr "Переписать файлы для других пакетов"
-
-#~ msgid ""
-#~ "Require version %h %h,\n"
-#~ "installed %h"
-#~ msgstr ""
-#~ "Требуется версия %h %h,\n"
-#~ "установлен %h"
+++ /dev/null
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"PO-Revision-Date: 2023-07-10 15:50+0000\n"
-"Last-Translator: MaycoH <hudec.marian@hotmail.com>\n"
-"Language-Team: Slovak <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsopkg/sk/>\n"
-"Language: sk\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-"X-Generator: Weblate 5.0-dev\n"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
-msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
-msgid ""
-"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
-msgid "Actions"
-msgstr "Akcie"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
-msgid "Allow overwriting conflicting package files"
-msgstr "Povoliť prepísanie konfliktných súborov balíkov"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
-msgid "Automatically remove unused dependencies"
-msgstr "Automatické odstránenie nepoužitých závislostí"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1218
-msgid "Available"
-msgstr "Dostupné"
-
-#: 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 ""
-"Nižšie je uvedený zoznam rôznych konfiguračných súborov, ktoré používa "
-"<em>opkg</em>. Pre globálne nastavenia použite <em>opkg.conf</em> a pre "
-"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: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:1150
-msgid "Clear"
-msgstr "Vymazať"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
-msgid "Configure opkg…"
-msgstr "Konfigurovať opkg…"
-
-#: 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:750
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
-msgid "Description"
-msgstr "Popis"
-
-#: 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:1142
-msgid "Disk space"
-msgstr ""
-
-#: 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:1172
-#, fuzzy
-msgid "Display LuCI translation packages"
-msgstr "Zobraziť balíky prekladov LuCI"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
-#, fuzzy
-msgid "Display all available translation packages"
-msgstr "Zobraziť všetky dostupné balíky prekladov"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
-#, fuzzy
-msgid ""
-"Display base translation packages and translation packages for already "
-"installed languages only"
-msgstr ""
-"Zobraziť základné balíky prekladov a balíky prekladov len pre už "
-"nainštalované jazyky"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354
-msgid "Displaying %d-%d of %d"
-msgstr "Zobrazených %d-%d z %d"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155
-msgid "Download and install package"
-msgstr "Prevziať a nainštalovať balík"
-
-#: 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:982
-msgid "Executing package manager"
-msgstr "Spúšťanie správcu balíkov"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
-msgid "Filter"
-msgstr "Filter"
-
-#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
-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:1202
-#, fuzzy
-msgid "Hide all translation packages"
-msgstr "Skryť všetky balíky prekladov"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066
-msgid "Install"
-msgstr "Inštalovať"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1133
-msgid "Install additional software and upgrade existing packages with opkg."
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
-#, fuzzy
-msgid "Install suggested translation packages as well"
-msgstr "Inštalovať aj navrhované balíky prekladov"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
-msgid "Installed"
-msgstr "Nainštalované"
-
-#: 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 ""
-"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:288
-msgid "Install…"
-msgstr "Inštalovať…"
-
-#: 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: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:1046
-msgid "MD5"
-msgstr "MD5"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
-msgid "Manually install package"
-msgstr "Manuálna inštalácia balíka"
-
-#: 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:1227
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
-msgid "Next page"
-msgstr "Ďalšia strana"
-
-#: 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:355
-msgid "No packages"
-msgstr "Žiadne balíčky"
-
-#: 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:542
-msgid "Not available"
-msgstr "Nie je k dispozícií"
-
-#: 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:1158
-msgid "OK"
-msgstr "OK"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
-msgid "OPKG Configuration"
-msgstr "Konfigurácia OPKG"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
-msgid "Package name"
-msgstr "Názov balíka"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
-msgid "Package name or URL…"
-msgstr "Názov balíka alebo URL adresa…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
-msgid "Previous page"
-msgstr "Predošlá strana"
-
-#: 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:967
-msgid "Remove"
-msgstr "Odstrániť"
-
-#: 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:276
-msgid "Remove…"
-msgstr "Odstrániť…"
-
-#: 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)."
-
-#: 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: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: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:373
-msgid "Reset"
-msgstr "Obnoviť"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
-msgid "SHA256"
-msgstr "SHA256"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
-msgid "Save"
-msgstr "Uložiť"
-
-#: 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: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:1235
-msgid "Size (.ipk)"
-msgstr "Veľkosť (.ipk)"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
-#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
-msgid "Software"
-msgstr "Softvér"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
-msgid "Suggested translations"
-msgstr "Navrhované preklady"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
-msgid "Suggested translations require approx. %1024mB additional space."
-msgstr "Navrhované preklady vyžadujú približne %1024mB ďalšieho priestoru."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
-msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
-msgstr "Príkaz <em>opkg %h</em> zlyhal s kódom <code>%d</code>."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
-msgid ""
-"The installed version of package <em>%h</em> is not compatible, require %s "
-"while %s is installed."
-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: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:530
-msgid ""
-"The repository version of package <em>%h</em> is not compatible, require %s "
-"but only %s is available."
-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:1149
-msgid "Type to filter…"
-msgstr "Reťazec na filtrovanie…"
-
-#: 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: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: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:1165
-msgid "Update lists…"
-msgstr "Aktualizovať zoznamy…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
-msgid "Updates"
-msgstr "Aktualizácie"
-
-#: 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:1166
-msgid "Upload Package…"
-msgstr "Odovzdať balík…"
-
-#: 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:1234
-msgid "Version"
-msgstr "Verzia"
-
-#: 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: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:1198
-msgctxt "Display translation packages"
-msgid "all"
-msgstr "všetko"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
-msgctxt "Display translation packages"
-msgid "filtered"
-msgstr "filtrované"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
-msgctxt "Display translation packages"
-msgid "none"
-msgstr "žiadne"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1143
-msgid "unknown"
-msgstr "neznámy"
-
-#: 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"
-
-#~ msgid "Free space"
-#~ msgstr "Voľné miesto"
-
-#~ msgid "Overwrite files from other package(s)"
-#~ msgstr "Prepísať súbory z iného balíka(kov)"
+++ /dev/null
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"PO-Revision-Date: 2024-05-12 08:00+0000\n"
-"Last-Translator: Daniel Nilsson <daniel.nilsson94@outlook.com>\n"
-"Language-Team: Swedish <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsopkg/sv/>\n"
-"Language: sv\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 5.5.4\n"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
-msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
-msgstr "%s använt (%1024mB använt av %1024mB, %1024mB ledigt)"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
-msgid ""
-"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
-msgstr ""
-"<strong>Varning!</strong> Ändringar av paket kan <a %s>förstöra ditt "
-"system</a>."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
-msgid "Actions"
-msgstr "Åtgärder"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
-msgid "Allow overwriting conflicting package files"
-msgstr "Tillåt överskrivning av paketfiler med konflikter"
-
-#: 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:1218
-msgid "Available"
-msgstr "Tillgänglig"
-
-#: 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 ""
-"Nedan är en lista på olika konfigurationsfiler som används av <em>opkg</em>. "
-"Använd <em>opkg.conf</em> för globala inställningar och <em>customfeeds."
-"conf</em> för anpassade filförrådsposter. Konfigurationen i de andra filerna "
-"kan vara ändrade, men är oftast inte reserverad av <em>sysupgrade</em>."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
-msgid "Cancel"
-msgstr "Avbryt"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150
-msgid "Clear"
-msgstr "Rensa"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
-msgid "Configure opkg…"
-msgstr "Ställ in opkg…"
-
-#: 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:750
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
-msgid "Description"
-msgstr "Beskrivning"
-
-#: 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:1142
-msgid "Disk space"
-msgstr "Diskutrymme"
-
-#: 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:1172
-msgid "Display LuCI translation packages"
-msgstr "Visa LuCI översättningspaket"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
-msgid "Display all available translation packages"
-msgstr "Visa alla tillgängliga översättningspaket"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
-msgid ""
-"Display base translation packages and translation packages for already "
-"installed languages only"
-msgstr ""
-"Visa endast grundöversättningspaket och översättningspaket för installerade "
-"språk"
-
-#: 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:1155
-msgid "Download and install package"
-msgstr "Ladda ner och installera paket"
-
-#: 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:982
-msgid "Executing package manager"
-msgstr "Kör pakethanteraren"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
-msgid "Filter"
-msgstr "Filter"
-
-#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
-msgid "Grant access to opkg management"
-msgstr "Tillåt åtkomst till hantering av opkg"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1202
-msgid "Hide all translation packages"
-msgstr "Göm alla översättningspaket"
-
-#: 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:1133
-msgid "Install additional software and upgrade existing packages with opkg."
-msgstr "Installera extra mjukvara och uppgradera existerande paket med opkg."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
-msgid "Install suggested translation packages as well"
-msgstr "Installera också föreslagna översättningspaket"
-
-#: 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:1219
-msgid "Installed"
-msgstr "Installerad"
-
-#: 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 ""
-"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:288
-msgid "Install…"
-msgstr "Installera…"
-
-#: 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:1084
-msgid "Loading package information…"
-msgstr "Laddar paketinformationen…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
-msgid "MD5"
-msgstr "MD5"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
-msgid "Manually install package"
-msgstr "Installera paket manuellt"
-
-#: 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:1227
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
-msgid "Next page"
-msgstr "Nästa sida"
-
-#: 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:355
-msgid "No packages"
-msgstr "Inga paket"
-
-#: 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:542
-msgid "Not available"
-msgstr "Ej tillgängligt"
-
-#: 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:1158
-msgid "OK"
-msgstr "OK"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
-msgid "OPKG Configuration"
-msgstr "Konfiguration av OPKG"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
-msgid "Package name"
-msgstr "Paketnamn"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
-msgid "Package name or URL…"
-msgstr "Paketnamn eller URL…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
-msgid "Previous page"
-msgstr "Föregående sida"
-
-#: 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:967
-msgid "Remove"
-msgstr "Ta bort"
-
-#: 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:276
-msgid "Remove…"
-msgstr "Ta bort…"
-
-#: 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: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: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: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:373
-msgid "Reset"
-msgstr "Återställ"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
-msgid "SHA256"
-msgstr "SHA256"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
-msgid "Save"
-msgstr "Spara"
-
-#: 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: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:1235
-msgid "Size (.ipk)"
-msgstr "Storlek (.ipk)"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
-#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
-msgid "Software"
-msgstr "Mjukvara"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
-msgid "Suggested translations"
-msgstr "Föreslagna översättningar"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
-msgid "Suggested translations require approx. %1024mB additional space."
-msgstr "Föreslagna översättningar kommer kräva ungefär %1024mB extra utrymme."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
-msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
-msgstr "<em>opkg %h</em>-kommandot misslyckades med koden <code>%d</code>."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
-msgid ""
-"The installed version of package <em>%h</em> is not compatible, require %s "
-"while %s is installed."
-msgstr ""
-"Den installerade versionen av paketet <em>%h</em>är inte kompatibel, kräver "
-"%s medans %s är installerat."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js: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:530
-msgid ""
-"The repository version of package <em>%h</em> is not compatible, require %s "
-"but only %s is available."
-msgstr ""
-"Filförrådets version av paketet <em>%h</em> är inte tillgängligt, kräver %s, "
-"men endast %s är tillgänglig."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
-msgid "Type to filter…"
-msgstr "Skriv för att filtrera…"
-
-#: 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: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:910
-msgid "Unable to save %s: %s"
-msgstr "Kunde inte spara %s: %s"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1165
-msgid "Update lists…"
-msgstr "Uppdatera listor…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
-msgid "Updates"
-msgstr "Uppdateringar"
-
-#: 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:1166
-msgid "Upload Package…"
-msgstr "Ladda upp paket…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1234
-msgid "Version"
-msgstr "Version"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
-msgid "Version incompatible"
-msgstr "Versionen passar inte"
-
-#: 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:1198
-msgctxt "Display translation packages"
-msgid "all"
-msgstr "alla"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
-msgctxt "Display translation packages"
-msgid "filtered"
-msgstr "filtrerade"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
-msgctxt "Display translation packages"
-msgid "none"
-msgstr "inga"
-
-#: 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:1143
-msgid "unknown"
-msgstr "okänd"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
-msgid "~%1024mB compressed"
-msgstr "~%1024mB komprimerat"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
-msgid "~%1024mB installed"
-msgstr "~%1024mB installerat"
-
-#~ msgid "Free space"
-#~ msgstr "Fritt utrymme"
-
-#~ msgid "Overwrite files from other package(s)"
-#~ msgstr "Skriv över filer från andra paket(en)"
+++ /dev/null
-msgid ""
-msgstr "Content-Type: text/plain; charset=UTF-8"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
-msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
-msgid ""
-"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
-msgid "Actions"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
-msgid "Allow overwriting conflicting package files"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
-msgid "Automatically remove unused dependencies"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1218
-msgid "Available"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
-msgid ""
-"Below is a listing of the various configuration files used by <em>opkg</em>. "
-"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
-"custom repository entries. The configuration in the other files may be "
-"changed but is usually not preserved by <em>sysupgrade</em>."
-msgstr ""
-
-#: 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:1150
-msgid "Clear"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
-msgid "Configure opkg…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
-msgid "Dependencies"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
-msgid "Description"
-msgstr ""
-
-#: 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:1142
-msgid "Disk space"
-msgstr ""
-
-#: 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:1172
-msgid "Display LuCI translation packages"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
-msgid "Display all available translation packages"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
-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:1155
-msgid "Download and install package"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
-msgid "Errors"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
-msgid "Executing package manager"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
-msgid "Filter"
-msgstr ""
-
-#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
-msgid "Grant access to opkg management"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1202
-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:1133
-msgid "Install additional software and upgrade existing packages with opkg."
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
-msgid "Install suggested translation packages as well"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
-msgid "Installed"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
-msgid ""
-"Installing packages from untrusted sources is a potential security risk! "
-"Really attempt to install <em>%h</em>?"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
-msgid "Install…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
-msgid "Loading configuration data…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
-msgid "Loading package information…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
-msgid "MD5"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
-msgid "Manually install package"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
-msgid "Needs upgrade"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
-msgid "Next page"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
-msgid "No information available"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
-msgid "No packages"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
-msgid "No packages matching \"<strong>%h</strong>\"."
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
-msgid "Not available"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
-msgid "Not installed"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
-msgid "OK"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
-msgid "OPKG Configuration"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
-msgid "Package name"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
-msgid "Package name or URL…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
-msgid "Previous page"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
-msgid "Really attempt to install <em>%h</em>?"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
-msgid "Remove"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
-msgid "Remove package <em>%h</em>"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
-msgid "Remove…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
-msgid "Require approx. %1024mB size for %d package(s) to install."
-msgstr ""
-
-#: 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: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:508
-msgid "Requires update to %h %h"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
-msgid "Reset"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
-msgid "SHA256"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
-msgid "Save"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
-msgid "Saving configuration data…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
-msgid "Size"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
-msgid "Size (.ipk)"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
-#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
-msgid "Software"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
-msgid "Suggested translations"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
-msgid "Suggested translations require approx. %1024mB additional space."
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
-msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
-msgstr ""
-
-#: 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: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: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:1149
-msgid "Type to filter…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
-msgid "Unable to execute <em>opkg %s</em> command: %s"
-msgstr ""
-
-#: 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:910
-msgid "Unable to save %s: %s"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1165
-msgid "Update lists…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
-msgid "Updates"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
-msgid "Upgrade…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1166
-msgid "Upload Package…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1234
-msgid "Version"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
-msgid "Version incompatible"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
-msgid "Waiting for the <em>opkg %h</em> command to complete…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1198
-msgctxt "Display translation packages"
-msgid "all"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
-msgctxt "Display translation packages"
-msgid "filtered"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
-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:1143
-msgid "unknown"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
-msgid "~%1024mB compressed"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
-msgid "~%1024mB installed"
-msgstr ""
+++ /dev/null
-msgid ""
-msgstr ""
-"Project-Id-Version: \n"
-"POT-Creation-Date: \n"
-"PO-Revision-Date: 2024-03-24 13:06+0000\n"
-"Last-Translator: Oğuz Ersen <oguz@ersen.moe>\n"
-"Language-Team: Turkish <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsopkg/tr/>\n"
-"Language: tr\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Weblate 5.5-dev\n"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
-msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
-msgstr "%s kullanılıyor (%1024mB / %1024mB kullanılıyor, %1024mB boş)"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
-msgid ""
-"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
-msgstr ""
-"<strong>Uyarı!</strong> Paket işlemleri <a %s>sisteminizi bozabilir</a>."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
-msgid "Actions"
-msgstr "Eylemler"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
-msgid "Allow overwriting conflicting package files"
-msgstr "Çakışan paket dosyalarının üzerine yazılmasına izin ver"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
-msgid "Automatically remove unused dependencies"
-msgstr "Kullanılmayan bağımlılıkları otomatik olarak kaldır"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1218
-msgid "Available"
-msgstr "Kullanılabilir"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
-msgid ""
-"Below is a listing of the various configuration files used by <em>opkg</em>. "
-"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
-"custom repository entries. The configuration in the other files may be "
-"changed but is usually not preserved by <em>sysupgrade</em>."
-msgstr ""
-"Aşağıda <em>opkg</em> tarafından kullanılan çeşitli yapılandırma "
-"dosyalarının bir listesi bulunmaktadır. Genel ayarlar için <em>opkg.conf</"
-"em> ve özel depo girişleri için <em>customfeeds.conf</em> kullanın. Diğer "
-"dosyalardaki yapılandırmalar değiştirilebilir ancak genellikle "
-"<em>sysupgrade</em> tarafından korunmaz."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js: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:1150
-msgid "Clear"
-msgstr "Temizle"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
-msgid "Configure opkg…"
-msgstr "opkg'yi yapılandır…"
-
-#: 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:750
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
-msgid "Description"
-msgstr "Açıklama"
-
-#: 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:1142
-msgid "Disk space"
-msgstr "Disk alanı"
-
-#: 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:1172
-msgid "Display LuCI translation packages"
-msgstr "LuCI çeviri paketlerini görüntüle"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
-msgid "Display all available translation packages"
-msgstr "Mevcut tüm çeviri paketlerini göster"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
-msgid ""
-"Display base translation packages and translation packages for already "
-"installed languages only"
-msgstr ""
-"Yalnızca önceden kurulmuş diller için temel çeviri paketlerini ve çeviri "
-"paketlerini görüntüle"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354
-msgid "Displaying %d-%d of %d"
-msgstr "Görüntülenen %d-%d toplam %d"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155
-msgid "Download and install package"
-msgstr "Paket indir ve yükle"
-
-#: 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: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:1147
-msgid "Filter"
-msgstr "Filtre"
-
-#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
-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:1202
-msgid "Hide all translation packages"
-msgstr "Tüm çeviri paketlerini gizle"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066
-msgid "Install"
-msgstr "Yükle"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1133
-msgid "Install additional software and upgrade existing packages with opkg."
-msgstr "opkg ile ek yazılımlar kurun ve var olan paketleri yükseltin."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
-msgid "Install suggested translation packages as well"
-msgstr "Önerilen çeviri paketlerini de yükle"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
-msgid "Installed"
-msgstr "Yüklenenler"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
-msgid ""
-"Installing packages from untrusted sources is a potential security risk! "
-"Really attempt to install <em>%h</em>?"
-msgstr ""
-"Güvenilmeyen kaynaklardan paket yüklemek, güvenlik riski oluşturabilir! Bu "
-"paketi yüklemeyi gerçekten denemek istiyor musunuz <em>% h </em>?"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
-msgid "Install…"
-msgstr "Yükle…"
-
-#: 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:1084
-msgid "Loading package information…"
-msgstr "Paket bilgisi yükleniyor…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
-msgid "MD5"
-msgstr "MD5"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
-msgid "Manually install package"
-msgstr "Elle paket yükle"
-
-#: 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:1227
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
-msgid "Next page"
-msgstr "Sonraki sayfa"
-
-#: 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:355
-msgid "No packages"
-msgstr "Paket(ler) yok"
-
-#: 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:542
-msgid "Not available"
-msgstr "Mevcut değil"
-
-#: 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:1158
-msgid "OK"
-msgstr "Tamam"
-
-#: 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:1233
-msgid "Package name"
-msgstr "Paket adı"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
-msgid "Package name or URL…"
-msgstr "Paket adı veya URL…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
-msgid "Previous page"
-msgstr "Önceki sayfa"
-
-#: 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:967
-msgid "Remove"
-msgstr "Kaldır"
-
-#: 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:276
-msgid "Remove…"
-msgstr "Kaldır…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
-msgid "Require approx. %1024mB size for %d package(s) to install."
-msgstr ""
-"%d paket(ler)ini yüklemek için yaklaşık %1024mB boyutunda alan gerekli."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js: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: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: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:373
-msgid "Reset"
-msgstr "Sıfırla"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
-msgid "SHA256"
-msgstr "SHA256"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
-msgid "Save"
-msgstr "Kaydet"
-
-#: 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: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:1235
-msgid "Size (.ipk)"
-msgstr "Boyut (.ipk)"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
-#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
-msgid "Software"
-msgstr "Yazılım"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
-msgid "Suggested translations"
-msgstr "Önerilen çeviriler"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
-msgid "Suggested translations require approx. %1024mB additional space."
-msgstr "Önerilen çeviriler yaklaşık %1024mB ek alan gerektiriyor."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
-msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
-msgstr "<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:513
-msgid ""
-"The installed version of package <em>%h</em> is not compatible, require %s "
-"while %s is installed."
-msgstr ""
-"Yüklü olan <em>%h</em> paketinin sürümü uyumlu değil. Gerekli olan %s iken, "
-"%s sürümü yüklü."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js: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:530
-msgid ""
-"The repository version of package <em>%h</em> is not compatible, require %s "
-"but only %s is available."
-msgstr ""
-"<em>%h</em> paketinin depo bulunan sürümü uyumlu değil. Gerekli olan %s iken "
-"sadece %s sürümü mevcut."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
-msgid "Type to filter…"
-msgstr "Filtrelemek için yazın…"
-
-#: 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:871
-msgid "Unable to read %s: %s"
-msgstr "Okunamıyor %s: %s"
-
-#: 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:1165
-msgid "Update lists…"
-msgstr "Listeyi güncelle…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
-msgid "Updates"
-msgstr "Güncellemeler"
-
-#: 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:1166
-msgid "Upload Package…"
-msgstr "Paket Yükle…"
-
-#: 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:1234
-msgid "Version"
-msgstr "Sürüm"
-
-#: 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: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:1198
-msgctxt "Display translation packages"
-msgid "all"
-msgstr "tüm"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
-msgctxt "Display translation packages"
-msgid "filtered"
-msgstr "filtrelenmiş"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
-msgctxt "Display translation packages"
-msgid "none"
-msgstr "hiçbiri"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1143
-msgid "unknown"
-msgstr "bilinmeyen"
-
-#: 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"
-
-#~ msgid "Free space"
-#~ msgstr "Boş alan"
-
-#~ msgid "Overwrite files from other package(s)"
-#~ msgstr "Diğer paket(ler)in dosyalarının üzerine yaz"
+++ /dev/null
-msgid ""
-msgstr ""
-"Project-Id-Version: \n"
-"PO-Revision-Date: 2024-02-25 06:41+0000\n"
-"Last-Translator: Костянтин Серьогін <seryoginki@gmail.com>\n"
-"Language-Team: Ukrainian <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsopkg/uk/>\n"
-"Language: uk\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
-"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-"X-Generator: Weblate 5.5-dev\n"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
-msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
-msgstr "%s використано (%1024mB використано з %1024mB, вільно %1024mB)"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
-msgid ""
-"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
-msgid "Actions"
-msgstr "Дії"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
-msgid "Allow overwriting conflicting package files"
-msgstr "Дозволити перезапис файлів пакунків, які конфліктують"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
-msgid "Automatically remove unused dependencies"
-msgstr "Автоматичне видалення невикористовуваних залежностей"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1218
-msgid "Available"
-msgstr "Доступно"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
-msgid ""
-"Below is a listing of the various configuration files used by <em>opkg</em>. "
-"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
-"custom repository entries. The configuration in the other files may be "
-"changed but is usually not preserved by <em>sysupgrade</em>."
-msgstr ""
-"Нижче наведено список різних файлів конфігурації, котрі використовуються "
-"<em>opkg</em>. Використовуйте <em>opkg.conf</em> для глобальних налаштувань "
-"і <em>customfeeds.conf</em> для записів власного репозиторію. Конфігурацію в "
-"інших файлах може бути змінено, але вона зазвичай не зберігається при "
-"<em>оновленні системи</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:1150
-msgid "Clear"
-msgstr "Очистити"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
-msgid "Configure opkg…"
-msgstr "Налаштування opkg…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
-msgid "Dependencies"
-msgstr "Залежності"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
-msgid "Description"
-msgstr "Опис"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755
-msgid "Details for package <em>%h</em>"
-msgstr "Подробиці про пакет <em>%h</em>"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142
-msgid "Disk space"
-msgstr "Дисковий простір"
-
-#: 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:1172
-msgid "Display LuCI translation packages"
-msgstr "Відображати пакети перекладу LuCI"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
-msgid "Display all available translation packages"
-msgstr "Відображати всі доступні пакети перекладу"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
-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:1155
-msgid "Download and install package"
-msgstr "Завантажити та інсталювати пакети"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
-msgid "Errors"
-msgstr "Помилки"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
-msgid "Executing package manager"
-msgstr "Виконання менеджера пакетів"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
-msgid "Filter"
-msgstr "Фільтр"
-
-#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
-msgid "Grant access to opkg management"
-msgstr "Надати доступ до керування opkg"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1202
-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:1133
-msgid "Install additional software and upgrade existing packages with opkg."
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
-msgid "Install suggested translation packages as well"
-msgstr "Встановлювати запропоновані пакети перекладу також"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
-msgid "Installed"
-msgstr "Інстальовано"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
-msgid ""
-"Installing packages from untrusted sources is a potential security risk! "
-"Really attempt to install <em>%h</em>?"
-msgstr ""
-"Інсталяція пакетів з ненадійних джерел є потенційною загрозою безпеці! "
-"Дійсно спробувати інсталювати <em>%h</em>?"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
-msgid "Install…"
-msgstr "Інсталювати…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
-msgid "Loading configuration data…"
-msgstr "Завантаження даних конфігурації…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
-msgid "Loading package information…"
-msgstr "Завантаження інформації про пакети…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
-msgid "MD5"
-msgstr "MD5"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
-msgid "Manually install package"
-msgstr "Інсталяція пакета вручну"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
-msgid "Needs upgrade"
-msgstr "Потребує оновлення"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
-msgid "Next page"
-msgstr "Наступна сторінка"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
-msgid "No information available"
-msgstr "Інформація відсутня"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
-msgid "No packages"
-msgstr "Немає пакетів"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
-msgid "No packages matching \"<strong>%h</strong>\"."
-msgstr "Немає пакетів, що відповідають \"<strong>%h</strong>\"."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
-msgid "Not available"
-msgstr "Недоступно"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
-msgid "Not installed"
-msgstr "Не інстальовано"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
-msgid "OK"
-msgstr "OK"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
-msgid "OPKG Configuration"
-msgstr "Конфігурація OPKG"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
-msgid "Package name"
-msgstr "Назва пакунку"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
-msgid "Package name or URL…"
-msgstr "Назва пакунка чи URL-адреса…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
-msgid "Previous page"
-msgstr "Попередня сторінка"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
-msgid "Really attempt to install <em>%h</em>?"
-msgstr "Дійсно спробувати інсталювати <em>%h</em>?"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
-msgid "Remove"
-msgstr "Видалити"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
-msgid "Remove package <em>%h</em>"
-msgstr "Видалити пакет <em>%h</em>"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
-msgid "Remove…"
-msgstr "Видалити…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
-msgid "Require approx. %1024mB size for %d package(s) to install."
-msgstr "Потрібно приблизно %1024mB для інсталяції %d пакетів."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
-msgid "Require version %h %h, installed %h"
-msgstr "Потрібна версія %h %h, інстальовано %h"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540
-msgid ""
-"Required dependency package <em>%h</em> is not available in any repository."
-msgstr ""
-"Необхідний за залежністю пакет <em>%h</em> не доступний ні в одному "
-"репозиторії."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508
-msgid "Requires update to %h %h"
-msgstr "Потрібно оновити до %h %h"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
-msgid "Reset"
-msgstr "Скинути"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
-msgid "SHA256"
-msgstr "SHA256"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
-msgid "Save"
-msgstr "Зберегти"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
-msgid "Saving configuration data…"
-msgstr "Збереження даних конфігурації…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
-msgid "Size"
-msgstr "Розмір"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
-msgid "Size (.ipk)"
-msgstr "Розмір (.ipk)"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
-#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
-msgid "Software"
-msgstr "Програмне забезпечення"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
-msgid "Suggested translations"
-msgstr "Пропоновані переклади"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
-msgid "Suggested translations require approx. %1024mB additional space."
-msgstr ""
-"Запропоновані переклади потребують приблизно %1024мБ додаткового місця."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
-msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
-msgstr "Помилка виконання команди <em>opkg %h</em> з кодом <code>%d</code>."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
-msgid ""
-"The installed version of package <em>%h</em> is not compatible, require %s "
-"while %s is installed."
-msgstr ""
-"Інстальована версія пакета <em>%h</em> несумісна, потрібно %s, а "
-"інстальовано %s."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833
-msgid "The package <em>%h</em> is not available in any configured repository."
-msgstr ""
-"Пакет <em>%h</em> не доступний ні в одному сконфігурованому репозиторії."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530
-msgid ""
-"The repository version of package <em>%h</em> is not compatible, require %s "
-"but only %s is available."
-msgstr ""
-"Версія пакету <em>%h</em> у репозиторії несумісна, потрібно %s, але доступна "
-"лише %s."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
-msgid "Type to filter…"
-msgstr "Введіть текст для фільтра…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
-msgid "Unable to execute <em>opkg %s</em> command: %s"
-msgstr "Не вдалося виконати команду <em>opkg %s</em>: %s"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871
-msgid "Unable to read %s: %s"
-msgstr "Не вдалося прочитати %s: %s"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910
-msgid "Unable to save %s: %s"
-msgstr "Не вдалося зберегти %s: %s"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1165
-msgid "Update lists…"
-msgstr "Оновити списки…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
-msgid "Updates"
-msgstr "Оновлення"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
-msgid "Upgrade…"
-msgstr "Оновлення…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1166
-msgid "Upload Package…"
-msgstr "Відвантажити пакет…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1234
-msgid "Version"
-msgstr "Версія"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
-msgid "Version incompatible"
-msgstr "Несумісна версія"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
-msgid "Waiting for the <em>opkg %h</em> command to complete…"
-msgstr "Очікуємо завершення виконання команди <em>opkg %h</em> …"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1198
-msgctxt "Display translation packages"
-msgid "all"
-msgstr "усі"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
-msgctxt "Display translation packages"
-msgid "filtered"
-msgstr "фільтрувати"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
-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:1143
-msgid "unknown"
-msgstr "невідомо"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
-msgid "~%1024mB compressed"
-msgstr "~%1024mB стиснуто"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
-msgid "~%1024mB installed"
-msgstr "~%1024mB інстальовано"
-
-#~ msgid "Free space"
-#~ msgstr "Вільне місце"
-
-#~ msgid "Overwrite files from other package(s)"
-#~ msgstr "Перезаписати файли з інших пакетів"
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2022-07-24 14:21+0000\n"
-"Last-Translator: Usama Khursheed <Usamakhursheedkhan@gmail.com>\n"
-"Language-Team: Urdu <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsopkg/ur/>\n"
-"Language: ur\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 4.14-dev\n"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
-msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
-msgid ""
-"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
-msgid "Actions"
-msgstr "اعمال"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
-msgid "Allow overwriting conflicting package files"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
-msgid "Automatically remove unused dependencies"
-msgstr "غیر استعمال شدہ انحصار کو خود بخود ہٹا دیں"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1218
-msgid "Available"
-msgstr "موجود"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
-msgid ""
-"Below is a listing of the various configuration files used by <em>opkg</em>. "
-"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
-"custom repository entries. The configuration in the other files may be "
-"changed but is usually not preserved by <em>sysupgrade</em>."
-msgstr ""
-"ذیل میں <em>opkg</em> کے ذریعے استعمال ہونے والی مختلف کنفیگریشن فائلوں کی "
-"فہرست ہے۔ عالمی ترتیبات کے لیے <em>opkg.conf</em> اور حسب ضرورت ریپوزٹری "
-"اندراجات کے لیے <em>customfeeds.conf</em> استعمال کریں۔ دوسری فائلوں میں "
-"کنفیگریشن کو تبدیل کیا جا سکتا ہے لیکن عام طور پر <em>sysupgrade</em> کے "
-"ذریعے محفوظ نہیں کیا جاتا ہے۔"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
-msgid "Cancel"
-msgstr "کینسل"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150
-msgid "Clear"
-msgstr "کلیر"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
-msgid "Configure opkg…"
-msgstr "opkg کو ترتیب دیں…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
-msgid "Dependencies"
-msgstr "انحصار"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
-msgid "Description"
-msgstr "تفصیل"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755
-msgid "Details for package <em>%h</em>"
-msgstr "پیکیج <em>%h</em> کی تفصیلات"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142
-msgid "Disk space"
-msgstr ""
-
-#: 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:1172
-msgid "Display LuCI translation packages"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
-msgid "Display all available translation packages"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
-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:1155
-msgid "Download and install package"
-msgstr "پیکیج ڈاؤن لوڈ اور انسٹال کریں"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
-msgid "Errors"
-msgstr "غلطیاں"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
-msgid "Executing package manager"
-msgstr "پیکج مینیجر پر عمل درآمد ہو رہا"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
-msgid "Filter"
-msgstr "فلٹر"
-
-#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
-msgid "Grant access to opkg management"
-msgstr "opkg مینجمنٹ تک رسائی فراہم کریں"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1202
-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:1133
-msgid "Install additional software and upgrade existing packages with opkg."
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
-msgid "Install suggested translation packages as well"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
-msgid "Installed"
-msgstr "نصب خدمات"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
-msgid ""
-"Installing packages from untrusted sources is a potential security risk! "
-"Really attempt to install <em>%h</em>?"
-msgstr ""
-"غیر بھروسہ مند ذرائع سے پیکجز انسٹال کرنا ایک ممکنہ سیکورٹی رسک ہے! واقعی "
-"انسٹال کرنے کی کوشش کریں <em>%h</em>؟"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
-msgid "Install…"
-msgstr "انسٹال کریں…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
-msgid "Loading configuration data…"
-msgstr "کنفیگریشن ڈیٹا لوڈ ہو رہا ہے…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
-msgid "Loading package information…"
-msgstr "پیکیج کی معلومات لوڈ ہو رہی ہے…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
-#, fuzzy
-msgid "MD5"
-msgstr "MD5"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
-msgid "Manually install package"
-msgstr "دستی طور پر پیکیج انسٹال کریں"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
-msgid "Needs upgrade"
-msgstr "اپ گریڈ کی ضرورت ہے"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
-msgid "Next page"
-msgstr "اگلا صفحہ"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
-msgid "No information available"
-msgstr "کوئی معلومات دستیاب نہیں"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
-msgid "No packages"
-msgstr "کوئی پیکجز نہیں"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
-msgid "No packages matching \"<strong>%h</strong>\"."
-msgstr "\"<strong>%h</strong>\" سے مماثل کوئی پیکیج نہیں ہے۔"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
-msgid "Not available"
-msgstr "دستیاب نہیں ہے"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
-msgid "Not installed"
-msgstr "انسٹال نہیں ہے"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
-msgid "OK"
-msgstr "ٹھیک ہے"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
-msgid "OPKG Configuration"
-msgstr "OPKG کنفیگریشن"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
-msgid "Package name"
-msgstr "پیکیج کا نام"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
-msgid "Package name or URL…"
-msgstr "پیکیج کا نام یا URL…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
-msgid "Previous page"
-msgstr "پچھلا صفحہ"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
-msgid "Really attempt to install <em>%h</em>?"
-msgstr "واقعی انسٹال کرنے کی کوشش کریں <em>%h</em>؟"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
-msgid "Remove"
-msgstr "ہٹا دیا"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
-msgid "Remove package <em>%h</em>"
-msgstr "پیکیج <em>%h</em> کو ہٹا دیں"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
-msgid "Remove…"
-msgstr "الگ کرنا…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
-msgid "Require approx. %1024mB size for %d package(s) to install."
-msgstr "لگ بھگ کی ضرورت ہے۔ انسٹال کرنے کے لیے %d پیکجز کے لیے %1024mB سائز۔"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
-msgid "Require version %h %h, installed %h"
-msgstr "ورژن %h %h، انسٹال کردہ %h کی ضرورت ہے"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540
-msgid ""
-"Required dependency package <em>%h</em> is not available in any repository."
-msgstr "مطلوبہ انحصار پیکج <em>%h</em> کسی بھی ذخیرہ میں دستیاب نہیں ہے"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508
-msgid "Requires update to %h %h"
-msgstr "%h %h تک اپ ڈیٹ کی ضرورت ہے"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
-msgid "Reset"
-msgstr "دوبارہ ترتیب دیں"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
-#, fuzzy
-msgid "SHA256"
-msgstr "SHA256"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
-msgid "Save"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
-msgid "Saving configuration data…"
-msgstr "کنفیگریشن ڈیٹا محفوظ ہو رہا ہے…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
-msgid "Size"
-msgstr "سائز"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
-msgid "Size (.ipk)"
-msgstr "سائز(.ipk)"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
-#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
-msgid "Software"
-msgstr "سافٹ ویئر"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
-msgid "Suggested translations"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
-msgid "Suggested translations require approx. %1024mB additional space."
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
-msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
-msgstr "<em>opkg %h</em> کمانڈ <code>%d</code> کوڈ کے ساتھ ناکام ہوگئی۔"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
-msgid ""
-"The installed version of package <em>%h</em> is not compatible, require %s "
-"while %s is installed."
-msgstr "<em>opkg %h</em> کمانڈ <code>%d</code> کوڈ کے ساتھ ناکام ہوگئی"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833
-msgid "The package <em>%h</em> is not available in any configured repository."
-msgstr "پیکیج <em>%h</em> کسی بھی ترتیب شدہ ذخیرہ میں دستیاب نہیں ہے"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530
-msgid ""
-"The repository version of package <em>%h</em> is not compatible, require %s "
-"but only %s is available."
-msgstr ""
-"پیکیج <em>%h</em> کا ذخیرہ ورژن مطابقت نہیں رکھتا، %s کی ضرورت ہے لیکن صرف "
-"%s دستیاب ہے۔"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
-msgid "Type to filter…"
-msgstr "فلٹر کرنے کے لیے ٹائپ کریں…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
-msgid "Unable to execute <em>opkg %s</em> command: %s"
-msgstr "<em>opkg %s</em> کمانڈ پر عمل کرنے سے قاصر: %s"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871
-msgid "Unable to read %s: %s"
-msgstr "پڑھنے سے قاصر%s: s%"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910
-msgid "Unable to save %s: %s"
-msgstr "%s پڑھنے سے قاصر: %s"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1165
-msgid "Update lists…"
-msgstr "فہرستوں کو اپ ڈیٹ کریں…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
-msgid "Updates"
-msgstr "تازہ ترین"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
-msgid "Upgrade…"
-msgstr "اپ گریڈ…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1166
-msgid "Upload Package…"
-msgstr "پیکج اپ لوڈ کریں…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1234
-msgid "Version"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
-msgid "Version incompatible"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
-msgid "Waiting for the <em>opkg %h</em> command to complete…"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1198
-msgctxt "Display translation packages"
-msgid "all"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
-msgctxt "Display translation packages"
-msgid "filtered"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
-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:1143
-msgid "unknown"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
-msgid "~%1024mB compressed"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
-msgid "~%1024mB installed"
-msgstr ""
-
-#~ msgid "Free space"
-#~ msgstr "خالی جگہ"
-
-#~ msgid "Overwrite files from other package(s)"
-#~ msgstr "دوسرے پیکجوں سے فائلوں کو اوور رائٹ کریں"
+++ /dev/null
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-08-16 06:59+0200\n"
-"PO-Revision-Date: 2023-06-21 08:00+0000\n"
-"Last-Translator: Mashiro <michio.haiyaku@gmail.com>\n"
-"Language-Team: Vietnamese <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsopkg/vi/>\n"
-"Language: vi\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Weblate 4.18.1\n"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
-msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
-msgid ""
-"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
-msgid "Actions"
-msgstr "hành động"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
-msgid "Allow overwriting conflicting package files"
-msgstr "Cho phép ghi đè các tệp gói xung đột"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
-msgid "Automatically remove unused dependencies"
-msgstr "Tự động gỡ bỏ các gói phụ thuộc không được sử dụng"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1218
-msgid "Available"
-msgstr "Sẵn có"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
-msgid ""
-"Below is a listing of the various configuration files used by <em>opkg</em>. "
-"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
-"custom repository entries. The configuration in the other files may be "
-"changed but is usually not preserved by <em>sysupgrade</em>."
-msgstr ""
-"Dưới đây là danh sách các tập tin cấu hình khác nhau được sử dung bởi "
-"<em>opkg</em>. Sử dụng <em>opkg.conf</em> cho cài đặt chính và "
-"<em>customfeeds.conf</em> cho các mục repository tùy chỉnh. Cấu hình trong "
-"các tập tin khác có thể thay đổi nhưng thường không được giữ lại thay đổi "
-"bởi <em>sysupgrade</em>."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js: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 lệnh"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150
-msgid "Clear"
-msgstr "Xóa"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
-msgid "Configure opkg…"
-msgstr "Cấu hình opkg…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
-msgid "Dependencies"
-msgstr "Các gói phụ thuộc"
-
-#: 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:1236
-msgid "Description"
-msgstr "Mô tả"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755
-msgid "Details for package <em>%h</em>"
-msgstr "Chi tiết cho gói <em>%h</em>"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142
-msgid "Disk space"
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
-msgid "Dismiss"
-msgstr "Bỏ qua"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1172
-msgid "Display LuCI translation packages"
-msgstr "Hiển thị các gói dịch LuCI"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
-msgid "Display all available translation packages"
-msgstr "Hiển thị tất cả các gói dịch có sẵn"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
-msgid ""
-"Display base translation packages and translation packages for already "
-"installed languages only"
-msgstr ""
-"Chỉ hiển thị các gói dịch cơ sở và gói dịch cho các ngôn ngữ đã được cài đặt"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354
-msgid "Displaying %d-%d of %d"
-msgstr "Hiển thị %d-%d của %d"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155
-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:1008
-msgid "Errors"
-msgstr "Lỗi"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
-msgid "Executing package manager"
-msgstr "Đang thực thi quản lý gói"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
-msgid "Filter"
-msgstr "Bộ lọc"
-
-#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
-msgid "Grant access to opkg management"
-msgstr "Cấp quyền truy cập vào quản lý opkg"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1202
-msgid "Hide all translation packages"
-msgstr "Ẩn tất cả các gói dịch"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066
-msgid "Install"
-msgstr "Cài đặt"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1133
-msgid "Install additional software and upgrade existing packages with opkg."
-msgstr ""
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
-msgid "Install suggested translation packages as well"
-msgstr "Cài đặt cả các gói dịch được đề xuất"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
-msgid "Installed"
-msgstr "Đã cài đặt"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
-msgid ""
-"Installing packages from untrusted sources is a potential security risk! "
-"Really attempt to install <em>%h</em>?"
-msgstr ""
-"Cài đặt các gói từ các nguồn không được tin tưởng là một rủi ro bảo mật tiềm "
-"tàng! Chắc chắn muốn cài đặt <em>%h</em>?"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
-msgid "Install…"
-msgstr "Cài đặt…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
-msgid "Loading configuration data…"
-msgstr "Tải dữ liệu cấu hình…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
-msgid "Loading package information…"
-msgstr "Tải thông tin gói…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
-msgid "MD5"
-msgstr "MD5"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
-msgid "Manually install package"
-msgstr "Cài đặt gói thủ công"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
-msgid "Needs upgrade"
-msgstr "Cần nâng cấp"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
-msgid "Next page"
-msgstr "Trang kế"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
-msgid "No information available"
-msgstr "Không có thông tin có sẵn"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
-msgid "No packages"
-msgstr "Không có các gói"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
-msgid "No packages matching \"<strong>%h</strong>\"."
-msgstr "Không có gói khớp với \"<strong>%h</strong>\"."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
-msgid "Not available"
-msgstr "Không có sẵn"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
-msgid "Not installed"
-msgstr "Không được càu đặt"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
-msgid "OK"
-msgstr "OK"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
-msgid "OPKG Configuration"
-msgstr "Cấu hình OPKG-"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
-msgid "Package name"
-msgstr "Tên gói"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
-msgid "Package name or URL…"
-msgstr "Tên gói hoặc URL…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
-msgid "Previous page"
-msgstr "Trang trước"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
-msgid "Really attempt to install <em>%h</em>?"
-msgstr "Thực sự muốn cài <em>%h</em>?"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
-msgid "Remove"
-msgstr "Xóa"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
-msgid "Remove package <em>%h</em>"
-msgstr "Gỡ bỏ gói <em>%h</em>"
-
-#: 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:737
-msgid "Require approx. %1024mB size for %d package(s) to install."
-msgstr "Yêu cầu khoảng Kích thước %1024mB cho %d gói cài đặt."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
-msgid "Require version %h %h, installed %h"
-msgstr "Yêu cầu phiên bản %h %h, đã cài %h"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540
-msgid ""
-"Required dependency package <em>%h</em> is not available in any repository."
-msgstr ""
-"Yêu cầu gói phụ thuộc <em>%h</em> không có sẵn trong bất kỳ repository nào."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508
-msgid "Requires update to %h %h"
-msgstr "Yêu cầu cập nhật cho %h %h"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
-msgid "Reset"
-msgstr "Khởi động lại"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
-msgid "SHA256"
-msgstr "SHA256"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
-msgid "Save"
-msgstr "Lưu"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
-msgid "Saving configuration data…"
-msgstr "Đang lưu dữ liệu cấu hình…"
-
-#: 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:1235
-msgid "Size (.ipk)"
-msgstr "Kích cỡ (.ipk)"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
-#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
-msgid "Software"
-msgstr "Phần mềm"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
-msgid "Suggested translations"
-msgstr "Bản dịch được đề xuất"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
-msgid "Suggested translations require approx. %1024mB additional space."
-msgstr "Các bản dịch được đề xuất yêu cầu khoảng. %1024mB dung lượng bổ sung."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
-msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
-msgstr "Câu lệnh <em>opkg %h</em> thất bại với mã lỗi <code>%d</code>."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
-msgid ""
-"The installed version of package <em>%h</em> is not compatible, require %s "
-"while %s is installed."
-msgstr ""
-"Phiên bản được cài đặt của gói <em>%h</em> không tương thích, yêu cầu %s "
-"trong khi %s được cài đặt."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833
-msgid "The package <em>%h</em> is not available in any configured repository."
-msgstr ""
-"Gói <em>%h</em> không có sẵn trong bật kỳ repository đã được cấu hình nào."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530
-msgid ""
-"The repository version of package <em>%h</em> is not compatible, require %s "
-"but only %s is available."
-msgstr ""
-"Phiên bản trên repository của gói <em>%h</em> không có sẵn, yêu cầu %s nhưng "
-"chỉ có %s."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
-msgid "Type to filter…"
-msgstr "Gõ để lọc…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
-msgid "Unable to execute <em>opkg %s</em> command: %s"
-msgstr "Không thể thực thi câu lệnh <em>opkg %s</em>: %s"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871
-msgid "Unable to read %s: %s"
-msgstr "Không thể đọc %s: %s"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910
-msgid "Unable to save %s: %s"
-msgstr "Không thể lưu %s: %s"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1165
-msgid "Update lists…"
-msgstr "Cập nhật dan sách…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
-msgid "Updates"
-msgstr "Các cập nhật"
-
-#: 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 "Nâng cấp…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1166
-msgid "Upload Package…"
-msgstr "Tải lên gói…"
-
-#: 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:1234
-msgid "Version"
-msgstr "Phiên bản"
-
-#: 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 "Phiên bản không tương thích"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
-msgid "Waiting for the <em>opkg %h</em> command to complete…"
-msgstr "Đợi câu lệnh <em>opkg %h</em> hoàn thành…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1198
-msgctxt "Display translation packages"
-msgid "all"
-msgstr "Tất cả"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
-msgctxt "Display translation packages"
-msgid "filtered"
-msgstr "Đã lọc"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
-msgctxt "Display translation packages"
-msgid "none"
-msgstr "Không"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1143
-msgid "unknown"
-msgstr "Không xác định"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
-msgid "~%1024mB compressed"
-msgstr "~%1024mB được nén"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
-msgid "~%1024mB installed"
-msgstr "~%1024mB đã cài đặt"
-
-#~ msgid "Free space"
-#~ msgstr "Dung lượng trống"
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2024-09-07 04:34+0000\n"
-"Last-Translator: brodrigueznu <brodrigueznu@hotmail.com>\n"
-"Language-Team: Yucateco <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsopkg/yua/>\n"
-"Language: yua\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 5.8-dev\n"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
-msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
-msgstr "%s usados (%1024mB usados de %1024mB, %1024mB libres)"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
-msgid ""
-"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
-msgstr ""
-"<strong>¡Advertencia!</strong> Las operaciones de paquetes pueden <a "
-"%s>romper su sistema</a>."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
-msgid "Actions"
-msgstr "Acciones"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
-msgid "Allow overwriting conflicting package files"
-msgstr "Permitir sobrescribir archivos de paquetes en conflicto"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
-msgid "Automatically remove unused dependencies"
-msgstr "Eliminar automáticamente las dependencias no utilizadas"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1218
-msgid "Available"
-msgstr "Disponible"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
-msgid ""
-"Below is a listing of the various configuration files used by <em>opkg</em>. "
-"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
-"custom repository entries. The configuration in the other files may be "
-"changed but is usually not preserved by <em>sysupgrade</em>."
-msgstr ""
-"A continuación se muestra una lista de los diversos archivos de "
-"configuración utilizados por <em>opkg</em>. Use <em>opkg.conf</em> para la "
-"configuración global y <em>customfeeds.conf</em> para entradas de "
-"repositorio personalizadas. La configuración en los otros archivos puede "
-"cambiarse, pero por lo general no se conserva mediante <em>sysupgrade</em>."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js: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:1150
-msgid "Clear"
-msgstr "Limpiar"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
-msgid "Configure opkg…"
-msgstr "Configurar opkg…"
-
-#: 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:750
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
-msgid "Description"
-msgstr "Descripción"
-
-#: 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:1142
-msgid "Disk space"
-msgstr "Espacio en disco"
-
-#: 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:1172
-msgid "Display LuCI translation packages"
-msgstr "Mostrar paquetes de traducción de LuCI"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
-msgid "Display all available translation packages"
-msgstr "Mostrar todos los paquetes de traducción disponibles"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
-msgid ""
-"Display base translation packages and translation packages for already "
-"installed languages only"
-msgstr ""
-"Mostrar paquetes de traducción base y paquetes de traducción solo para "
-"idiomas ya instalados"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354
-msgid "Displaying %d-%d of %d"
-msgstr "Mostrando %d-%d de %d"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155
-msgid "Download and install package"
-msgstr "Descargar e instalar paquete"
-
-#: 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:982
-msgid "Executing package manager"
-msgstr "Ejecutando el gestor de paquetes"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
-msgid "Filter"
-msgstr "Filtro"
-
-#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
-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:1202
-msgid "Hide all translation packages"
-msgstr "Ocultar todos los paquetes de traducción"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066
-msgid "Install"
-msgstr "Instalar"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1133
-msgid "Install additional software and upgrade existing packages with opkg."
-msgstr ""
-"Instale software adicional y actualice los paquetes existentes con opkg."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
-msgid "Install suggested translation packages as well"
-msgstr "Instalar también los paquetes de traducción sugeridos"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
-msgid "Installed"
-msgstr "Instalado"
-
-#: 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 ""
-"¡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:288
-msgid "Install…"
-msgstr "Instalar…"
-
-#: 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:1084
-msgid "Loading package information…"
-msgstr "Cargando información del paquete…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
-msgid "MD5"
-msgstr "MD5"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
-msgid "Manually install package"
-msgstr "Instalar manualmente el paquete"
-
-#: 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:1227
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
-msgid "Next page"
-msgstr "Página siguiente"
-
-#: 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:355
-msgid "No packages"
-msgstr "Sin paquetes"
-
-#: 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:542
-msgid "Not available"
-msgstr "No disponible"
-
-#: 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:1158
-msgid "OK"
-msgstr "Aceptar"
-
-#: 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:1233
-msgid "Package name"
-msgstr "Nombre del paquete"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
-msgid "Package name or URL…"
-msgstr "Nombre de paquete o URL…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
-msgid "Previous page"
-msgstr "Página anterior"
-
-#: 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:967
-msgid "Remove"
-msgstr "Eliminar"
-
-#: 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:276
-msgid "Remove…"
-msgstr "Desinstalar…"
-
-#: 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: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: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: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:373
-msgid "Reset"
-msgstr "Restablecer"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
-msgid "SHA256"
-msgstr "SHA256"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
-msgid "Save"
-msgstr "Guardar"
-
-#: 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: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:1235
-msgid "Size (.ipk)"
-msgstr "Tamaño (.ipk)"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
-#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
-msgid "Software"
-msgstr "Software"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
-msgid "Suggested translations"
-msgstr "Traducciones sugeridas"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
-msgid "Suggested translations require approx. %1024mB additional space."
-msgstr ""
-"Las traducciones sugeridas requieren aprox. %1024mB de espacio adicional."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
-msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
-msgstr "El comando <em>opkg %h</em> falló con el código <code>%d</code>."
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
-msgid ""
-"The installed version of package <em>%h</em> is not compatible, require %s "
-"while %s is installed."
-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: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:530
-msgid ""
-"The repository version of package <em>%h</em> is not compatible, require %s "
-"but only %s is available."
-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:1149
-msgid "Type to filter…"
-msgstr "Escriba para filtrar…"
-
-#: 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: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: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:1165
-msgid "Update lists…"
-msgstr "Actualizar listas…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
-msgid "Updates"
-msgstr "Actualizaciones"
-
-#: 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:1166
-msgid "Upload Package…"
-msgstr "Subir paquete…"
-
-#: 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:1234
-msgid "Version"
-msgstr "Versión"
-
-#: 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: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:1198
-msgctxt "Display translation packages"
-msgid "all"
-msgstr "todos"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
-msgctxt "Display translation packages"
-msgid "filtered"
-msgstr "filtrado"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
-msgctxt "Display translation packages"
-msgid "none"
-msgstr "ninguno"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1143
-msgid "unknown"
-msgstr "desconocido"
-
-#: 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"
+++ /dev/null
-#
-# Yangfl <mmyangfl@gmail.com>, 2018.
-# Zheng Qian <sotux82@gmail.com>, 2018, 2019.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: \n"
-"PO-Revision-Date: 2024-03-27 01:01+0000\n"
-"Last-Translator: try496 <pinghejk@gmail.com>\n"
-"Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/"
-"openwrt/luciapplicationsopkg/zh_Hans/>\n"
-"Language: zh_Hans\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Weblate 5.5-dev\n"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
-msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
-msgstr "%s 已使用 (%1024mB 已使用,总共 %1024mB,剩余 %1024mB)"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
-msgid ""
-"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
-msgstr "<strong>警告!</strong>软件包操作可能会 <a %s>损坏你的系统</a>。"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
-msgid "Actions"
-msgstr "操作"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
-msgid "Allow overwriting conflicting package files"
-msgstr "允许覆盖冲突的包文件"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
-msgid "Automatically remove unused dependencies"
-msgstr "自动移除未使用的依赖"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1218
-msgid "Available"
-msgstr "可用"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
-msgid ""
-"Below is a listing of the various configuration files used by <em>opkg</em>. "
-"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
-"custom repository entries. The configuration in the other files may be "
-"changed but is usually not preserved by <em>sysupgrade</em>."
-msgstr ""
-"以下列出了 <em>opkg</em> 所使用的各个配置文件。<em>opkg.conf</em> 用于全局配"
-"置,<em>customfeeds.conf</em> 用于自定义仓库。其他配置文件的变更在<em>系统升"
-"级</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:1150
-msgid "Clear"
-msgstr "清除"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
-msgid "Configure opkg…"
-msgstr "配置 opkg…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
-msgid "Dependencies"
-msgstr "依赖"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
-msgid "Description"
-msgstr "描述"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755
-msgid "Details for package <em>%h</em>"
-msgstr "软件包 <em>%h</em> 详情"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142
-msgid "Disk space"
-msgstr "磁盘空间"
-
-#: 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:1172
-msgid "Display LuCI translation packages"
-msgstr "显示 LuCI 翻译包"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
-msgid "Display all available translation packages"
-msgstr "显示所有可用的翻译包"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
-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:1155
-msgid "Download and install package"
-msgstr "下载并安装软件包"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
-msgid "Errors"
-msgstr "错误"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
-msgid "Executing package manager"
-msgstr "正在执行软件包管理器"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
-msgid "Filter"
-msgstr "过滤器"
-
-#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
-msgid "Grant access to opkg management"
-msgstr "授予访问 opkg 管理的权限"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1202
-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:1133
-msgid "Install additional software and upgrade existing packages with opkg."
-msgstr "使用 opkg 安装额外的软件包并升级现有的软件包。"
-
-#: 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:1219
-msgid "Installed"
-msgstr "已安装"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
-msgid ""
-"Installing packages from untrusted sources is a potential security risk! "
-"Really attempt to install <em>%h</em>?"
-msgstr "从未信任的源安装软件包有潜在的安全隐患!您确定要安装 <em>%h</em> 吗?"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
-msgid "Install…"
-msgstr "安装…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
-msgid "Loading configuration data…"
-msgstr "载入配置数据…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
-msgid "Loading package information…"
-msgstr "载入软件包信息…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
-msgid "MD5"
-msgstr "MD5"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
-msgid "Manually install package"
-msgstr "手动安装软件包"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
-msgid "Needs upgrade"
-msgstr "需要升级"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
-msgid "Next page"
-msgstr "下一页"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
-msgid "No information available"
-msgstr "无可用信息"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
-msgid "No packages"
-msgstr "没有软件包"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
-msgid "No packages matching \"<strong>%h</strong>\"."
-msgstr "没有匹配“<strong>%h</strong>”的软件包。"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
-msgid "Not available"
-msgstr "不可用"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
-msgid "Not installed"
-msgstr "未安装"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
-msgid "OK"
-msgstr "确认"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
-msgid "OPKG Configuration"
-msgstr "OPKG 配置"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
-msgid "Package name"
-msgstr "软件包名称"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
-msgid "Package name or URL…"
-msgstr "软件包名称或 URL…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
-msgid "Previous page"
-msgstr "上一页"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
-msgid "Really attempt to install <em>%h</em>?"
-msgstr "确定要安装 <em>%h</em> 吗?"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
-msgid "Remove"
-msgstr "移除"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
-msgid "Remove package <em>%h</em>"
-msgstr "移除软件包 <em>%h</em>"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
-msgid "Remove…"
-msgstr "移除…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
-msgid "Require approx. %1024mB size for %d package(s) to install."
-msgstr "需要大约 %1024mB 空间来安装 %d 个软件包。"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
-msgid "Require version %h %h, installed %h"
-msgstr "需要 %h %h 版本,已安装 %h"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540
-msgid ""
-"Required dependency package <em>%h</em> is not available in any repository."
-msgstr "依赖的软件包 <em>%h</em> 在所有仓库都未提供。"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508
-msgid "Requires update to %h %h"
-msgstr "需要更新到 %h %h"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
-msgid "Reset"
-msgstr "复位"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
-msgid "SHA256"
-msgstr "SHA256"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
-msgid "Save"
-msgstr "保存"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
-msgid "Saving configuration data…"
-msgstr "正在保存配置数据…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
-msgid "Size"
-msgstr "大小"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
-msgid "Size (.ipk)"
-msgstr "大小(.ipk)"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
-#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
-msgid "Software"
-msgstr "软件包"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
-msgid "Suggested translations"
-msgstr "推荐的翻译"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
-msgid "Suggested translations require approx. %1024mB additional space."
-msgstr "推荐的翻译需要约 %1024mB 额外空间。"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
-msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
-msgstr "<em>opkg %h</em> 命令失败,代码 <code>%d</code>。"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
-msgid ""
-"The installed version of package <em>%h</em> is not compatible, require %s "
-"while %s is installed."
-msgstr "已安装的软件包 <em>%h</em> 版本不兼容,需要 %s 而 %s 已安装。"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833
-msgid "The package <em>%h</em> is not available in any configured repository."
-msgstr "软件包 <em>%h</em> 在所有已配置的仓库中都不存在。"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530
-msgid ""
-"The repository version of package <em>%h</em> is not compatible, require %s "
-"but only %s is available."
-msgstr "软件包 <em>%h</em> 在仓库中的版本不兼容,需要 %s 但仅可提供 %s。"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
-msgid "Type to filter…"
-msgstr "输入以筛选…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
-msgid "Unable to execute <em>opkg %s</em> command: %s"
-msgstr "无法执行 <em>opkg %s</em> 命令:%s"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871
-msgid "Unable to read %s: %s"
-msgstr "无法读取 %s:%s"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910
-msgid "Unable to save %s: %s"
-msgstr "无法保存 %s:%s"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1165
-msgid "Update lists…"
-msgstr "更新列表…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
-msgid "Updates"
-msgstr "更新"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
-msgid "Upgrade…"
-msgstr "升级…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1166
-msgid "Upload Package…"
-msgstr "上传软件包…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1234
-msgid "Version"
-msgstr "版本"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
-msgid "Version incompatible"
-msgstr "版本不兼容"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
-msgid "Waiting for the <em>opkg %h</em> command to complete…"
-msgstr "等待命令 <em>opkg %h</em> 执行完成…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1198
-msgctxt "Display translation packages"
-msgid "all"
-msgstr "全部"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
-msgctxt "Display translation packages"
-msgid "filtered"
-msgstr "已过滤"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
-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:1143
-msgid "unknown"
-msgstr "未知"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
-msgid "~%1024mB compressed"
-msgstr "~%1024mB 已压缩"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
-msgid "~%1024mB installed"
-msgstr "~%1024mB 已安装"
-
-#~ msgid "Free space"
-#~ msgstr "空闲空间"
-
-#~ msgid "Overwrite files from other package(s)"
-#~ msgstr "覆盖其他软件包中的文件"
-
-#~ msgid ""
-#~ "Require version %h %h,\n"
-#~ "installed %h"
-#~ msgstr ""
-#~ "要求 %h %h 版本,\n"
-#~ "已安装 %h"
+++ /dev/null
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"PO-Revision-Date: 2024-05-04 07:42+0000\n"
-"Last-Translator: Yuan Lau <traverslombard@outlook.com>\n"
-"Language-Team: Chinese (Traditional) <https://hosted.weblate.org/projects/"
-"openwrt/luciapplicationsopkg/zh_Hant/>\n"
-"Language: zh_Hant\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Weblate 5.5.3\n"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
-msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
-msgstr "%s 已使用 (%1024mB已使用,總共 %1024mB,剩餘%1024mB)"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
-msgid ""
-"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
-msgstr "<strong>警告! </strong>套件操作可能<a %s>破壞您的系統</a>。"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
-msgid "Actions"
-msgstr "動作"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
-msgid "Allow overwriting conflicting package files"
-msgstr "允許覆蓋衝突的包檔"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
-msgid "Automatically remove unused dependencies"
-msgstr "自動移除不再使用的依賴項目"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1218
-msgid "Available"
-msgstr "可用的"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
-msgid ""
-"Below is a listing of the various configuration files used by <em>opkg</em>. "
-"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
-"custom repository entries. The configuration in the other files may be "
-"changed but is usually not preserved by <em>sysupgrade</em>."
-msgstr ""
-"下面列出了 <em>opkg</em> 使用的各種組態檔;<em>opkg.conf</em> 用於全域設定,"
-"<em>customfeeds.conf</em> 則用於自訂儲存庫項目。其他組態檔的變更可能在 <em>系"
-"統升級</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:1150
-msgid "Clear"
-msgstr "清除"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
-msgid "Configure opkg…"
-msgstr "設定 opkg …"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
-msgid "Dependencies"
-msgstr "依賴項目"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
-msgid "Description"
-msgstr "描述"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755
-msgid "Details for package <em>%h</em>"
-msgstr "套件 <em>%h</em> 的詳細資訊"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142
-msgid "Disk space"
-msgstr "磁碟空間"
-
-#: 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:1172
-msgid "Display LuCI translation packages"
-msgstr "顯示 LuCI 翻譯包"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
-msgid "Display all available translation packages"
-msgstr "顯示所有可用的翻譯包"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
-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:1155
-msgid "Download and install package"
-msgstr "下載並安裝套件包"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
-msgid "Errors"
-msgstr "錯誤"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
-msgid "Executing package manager"
-msgstr "正在執行套件包管理員"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
-msgid "Filter"
-msgstr "過濾"
-
-#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
-msgid "Grant access to opkg management"
-msgstr "授予存取 opkg 管理的權限"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1202
-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:1133
-msgid "Install additional software and upgrade existing packages with opkg."
-msgstr "使用 opkg 安裝額外軟體並升級現有軟體包。"
-
-#: 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:1219
-msgid "Installed"
-msgstr "已安裝"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
-msgid ""
-"Installing packages from untrusted sources is a potential security risk! "
-"Really attempt to install <em>%h</em>?"
-msgstr "從不明來源安裝套件很危險! 確定要安裝 <em>%h</em> ?"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
-msgid "Install…"
-msgstr "安裝…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
-msgid "Loading configuration data…"
-msgstr "載入組態資料中…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
-msgid "Loading package information…"
-msgstr "載入套件資訊中…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
-msgid "MD5"
-msgstr "MD5"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
-msgid "Manually install package"
-msgstr "手動安裝套件包"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
-msgid "Needs upgrade"
-msgstr "需要升級"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
-msgid "Next page"
-msgstr "下一頁"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
-msgid "No information available"
-msgstr "無可用資訊"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
-msgid "No packages"
-msgstr "無套件包"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
-msgid "No packages matching \"<strong>%h</strong>\"."
-msgstr "沒有與 \"<strong>%h</strong>\" 相符的軟體包。"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
-msgid "Not available"
-msgstr "無法使用"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
-msgid "Not installed"
-msgstr "未安裝"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
-msgid "OK"
-msgstr "確定"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
-msgid "OPKG Configuration"
-msgstr "OPKG 設定"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
-msgid "Package name"
-msgstr "套件包名稱"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
-msgid "Package name or URL…"
-msgstr "套件包名稱或網址…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
-msgid "Previous page"
-msgstr "上一頁"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
-msgid "Really attempt to install <em>%h</em>?"
-msgstr "確定安裝 <em>%h</em> ?"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
-msgid "Remove"
-msgstr "移除"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
-msgid "Remove package <em>%h</em>"
-msgstr "移除套件 <em>%h</em>"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
-msgid "Remove…"
-msgstr "移除…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
-msgid "Require approx. %1024mB size for %d package(s) to install."
-msgstr "約需 %1024mB 的空間來安裝 %d 個套件包。"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
-msgid "Require version %h %h, installed %h"
-msgstr "需要版本 %h %h,現已安裝 %h"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540
-msgid ""
-"Required dependency package <em>%h</em> is not available in any repository."
-msgstr "依賴的套件 <em>%h</em> 不存在於任何的儲存庫。"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508
-msgid "Requires update to %h %h"
-msgstr "需要更新至 %h %h"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
-msgid "Reset"
-msgstr "重置"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
-msgid "SHA256"
-msgstr "SHA256"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
-msgid "Save"
-msgstr "儲存"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
-msgid "Saving configuration data…"
-msgstr "正在儲存設定值…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
-msgid "Size"
-msgstr "大小"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
-msgid "Size (.ipk)"
-msgstr "大小 (.ipk)"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
-#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
-msgid "Software"
-msgstr "軟體"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
-msgid "Suggested translations"
-msgstr "建議的翻譯"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
-msgid "Suggested translations require approx. %1024mB additional space."
-msgstr "建議的翻譯需要大約 %1024mB 的額外空間。"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
-msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
-msgstr "<em>opkg%h</em> 指令執行失敗,錯誤碼<code>%d</code>。"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
-msgid ""
-"The installed version of package <em>%h</em> is not compatible, require %s "
-"while %s is installed."
-msgstr "已安裝的套件 <em>%h</em> 版本不相容,要求 %s 而 %s 已安裝。"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833
-msgid "The package <em>%h</em> is not available in any configured repository."
-msgstr "套件 <em>%h</em> 在所有已設定的儲存庫中不可用。"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530
-msgid ""
-"The repository version of package <em>%h</em> is not compatible, require %s "
-"but only %s is available."
-msgstr "套件包 <em>%h</em> 在儲存庫中的版本不相容,要求 %s 但僅有 %s 可用。"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
-msgid "Type to filter…"
-msgstr "輸入以進行過濾…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
-msgid "Unable to execute <em>opkg %s</em> command: %s"
-msgstr "無法執行 <em>opkg %s</em> 指令:%s"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871
-msgid "Unable to read %s: %s"
-msgstr "無法讀取 %s: %s"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910
-msgid "Unable to save %s: %s"
-msgstr "無法儲存 %s: %s"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1165
-msgid "Update lists…"
-msgstr "更新清單…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
-msgid "Updates"
-msgstr "可升級"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
-msgid "Upgrade…"
-msgstr "升級…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1166
-msgid "Upload Package…"
-msgstr "上傳套件包…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1234
-msgid "Version"
-msgstr "版本"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
-msgid "Version incompatible"
-msgstr "版本不相容"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
-msgid "Waiting for the <em>opkg %h</em> command to complete…"
-msgstr "等待 <em>opkg %h</em> 指令完成…"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1198
-msgctxt "Display translation packages"
-msgid "all"
-msgstr "全部"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
-msgctxt "Display translation packages"
-msgid "filtered"
-msgstr "已過濾"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
-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:1143
-msgid "unknown"
-msgstr "未知"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
-msgid "~%1024mB compressed"
-msgstr "~%1024mB 已壓縮"
-
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
-#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
-msgid "~%1024mB installed"
-msgstr "~%1024mB 已安裝"
-
-#~ msgid "Free space"
-#~ msgstr "剩餘空間"
-
-#~ msgid "Overwrite files from other package(s)"
-#~ msgstr "覆蓋其他套件包的檔案"
+++ /dev/null
-#!/bin/sh
-
-. /usr/share/libubox/jshn.sh
-
-action=$1
-shift
-
-case "$action" in
- list-installed)
- cat /usr/lib/opkg/status
- ;;
- list-available)
- lists_dir=$(sed -rne 's#^lists_dir \S+ (\S+)#\1#p' /etc/opkg.conf /etc/opkg/*.conf 2>/dev/null | tail -n 1)
- find "${lists_dir:-/usr/lib/opkg/lists}" -type f '!' -name '*.sig' | xargs -r gzip -cd
- ;;
- install|update|remove)
- (
- opkg="opkg"
-
- while [ -n "$1" ]; do
- case "$1" in
- --autoremove|--force-overwrite|--force-removal-of-dependent-packages)
- opkg="$opkg $1"
- shift
- ;;
- -*)
- shift
- ;;
- *)
- break
- ;;
- esac
- done
-
- if flock -x 200; then
- $opkg $action "$@" </dev/null >/tmp/opkg.out 2>/tmp/opkg.err
- code=$?
- stdout=$(cat /tmp/opkg.out)
- stderr=$(cat /tmp/opkg.err)
- else
- code=255
- stderr="Failed to acquire lock"
- fi
-
- json_init
- json_add_int code $code
- [ -n "$stdout" ] && json_add_string stdout "$stdout"
- [ -n "$stderr" ] && json_add_string stderr "$stderr"
- json_dump
- ) 200>/tmp/opkg.lock
-
- rm -f /tmp/opkg.lock /tmp/opkg.err /tmp/opkg.out
- ;;
- *)
- echo "Usage: $0 {list-installed|list-available}" >&2
- echo " $0 {install|upgrade|remove} pkg[ pkg...]" >&2
- exit 1
- ;;
-esac
+++ /dev/null
-{
- "admin/system/opkg": {
- "title": "Software",
- "order": 30,
- "action": {
- "type": "view",
- "path": "opkg"
- },
- "depends": {
- "acl": [ "luci-app-opkg" ]
- }
- }
-}
+++ /dev/null
-{
- "luci-app-opkg": {
- "description": "Grant access to opkg management",
- "read": {
- "cgi-io": [ "exec" ],
- "file": {
- "/usr/libexec/opkg-list installed": [ "exec" ],
- "/usr/libexec/opkg-list available": [ "exec" ],
- "/usr/libexec/opkg-call list-installed": [ "exec" ],
- "/usr/libexec/opkg-call list-available": [ "exec" ],
- "/etc/opkg.conf": [ "read" ],
- "/etc/opkg/*.conf": [ "read" ]
- },
- "ubus": {
- "luci": [ "getMountPoints" ]
- }
- },
- "write": {
- "file": {
- "/usr/libexec/opkg-call install": [ "exec" ],
- "/usr/libexec/opkg-call install *": [ "exec" ],
- "/usr/libexec/opkg-call remove *": [ "exec" ],
- "/usr/libexec/opkg-call update": [ "exec" ],
- "/etc/opkg.conf": [ "write" ],
- "/etc/opkg/*.conf": [ "write" ],
- "/tmp/upload.ipk": [ "write" ]
- }
- }
- }
-}
--- /dev/null
+#
+# Copyright (C) 2018 Jo-Philipp Wich <jo@mein.io>
+#
+# This is free software, licensed under the Apache License, Version 2.0 .
+#
+
+include $(TOPDIR)/rules.mk
+
+PKG_LICENSE:=Apache-2.0
+
+LUCI_TITLE:=Package management application
+LUCI_DEPENDS:=+luci-base
+
+PKG_MAINTAINER:=Jo-Philipp Wich <jo@mein.io>
+
+include ../../luci.mk
+
+# call BuildPackage - OpenWrt buildroot signature
--- /dev/null
+'use strict';
+'require view';
+'require fs';
+'require ui';
+'require rpc';
+
+var css = ' \
+ .controls { \
+ display: flex; \
+ margin: .5em 0 1em 0; \
+ flex-wrap: wrap; \
+ justify-content: space-around; \
+ } \
+ \
+ .controls > * { \
+ padding: .25em; \
+ white-space: nowrap; \
+ flex: 1 1 33%; \
+ box-sizing: border-box; \
+ display: flex; \
+ flex-wrap: wrap; \
+ } \
+ \
+ .controls > *:first-child, \
+ .controls > * > label { \
+ flex-basis: 100%; \
+ min-width: 250px; \
+ } \
+ \
+ .controls > *:nth-child(2), \
+ .controls > *:nth-child(3) { \
+ flex-basis: 20%; \
+ } \
+ \
+ .controls > * > .btn { \
+ flex-basis: 20px; \
+ text-align: center; \
+ } \
+ \
+ .controls > * > * { \
+ flex-grow: 1; \
+ align-self: center; \
+ } \
+ \
+ .controls > div > input { \
+ width: auto; \
+ } \
+ \
+ .td.version, \
+ .td.size { \
+ white-space: nowrap; \
+ } \
+ \
+ ul.deps, ul.deps ul, ul.errors { \
+ margin-left: 1em; \
+ } \
+ \
+ ul.deps li, ul.errors li { \
+ list-style: none; \
+ } \
+ \
+ ul.deps li:before { \
+ content: "↳"; \
+ display: inline-block; \
+ width: 1em; \
+ margin-left: -1em; \
+ } \
+ \
+ ul.deps li > span { \
+ white-space: nowrap; \
+ } \
+ \
+ ul.errors li { \
+ color: #c44; \
+ font-size: 90%; \
+ font-weight: bold; \
+ padding-left: 1.5em; \
+ } \
+ \
+ ul.errors li:before { \
+ content: "⚠"; \
+ display: inline-block; \
+ width: 1.5em; \
+ margin-left: -1.5em; \
+ } \
+';
+
+var isReadonlyView = !L.hasViewPermission() || null;
+
+var callMountPoints = rpc.declare({
+ object: 'luci',
+ method: 'getMountPoints',
+ expect: { result: [] }
+});
+
+var packages = {
+ available: { providers: {}, pkgs: {} },
+ installed: { providers: {}, pkgs: {} }
+};
+
+var languages = ['en'];
+
+var currentDisplayMode = 'available', currentDisplayRows = [];
+
+function parseList(s, dest)
+{
+ var re = /([^\n]*)\n/g,
+ pkg = null, key = null, val = null, m;
+
+ while ((m = re.exec(s)) !== null) {
+ if (m[1].match(/^\s(.*)$/)) {
+ if (pkg !== null && key !== null && val !== null)
+ val += '\n' + RegExp.$1.trim();
+
+ continue;
+ }
+
+ if (key !== null && val !== null) {
+ switch (key) {
+ case 'package':
+ pkg = { name: val };
+ break;
+
+ case 'depends':
+ case 'provides':
+ var list = val.split(/\s*,\s*/);
+ if (list.length !== 1 || list[0].length > 0)
+ pkg[key] = list;
+ break;
+
+ case 'installed-time':
+ pkg.installtime = new Date(+val * 1000);
+ break;
+
+ case 'installed-size':
+ pkg.installsize = +val;
+ break;
+
+ case 'status':
+ var stat = val.split(/\s+/),
+ mode = stat[1],
+ installed = stat[2];
+
+ switch (mode) {
+ case 'user':
+ case 'hold':
+ pkg[mode] = true;
+ break;
+ }
+
+ switch (installed) {
+ case 'installed':
+ pkg.installed = true;
+ break;
+ }
+ break;
+
+ case 'essential':
+ if (val === 'yes')
+ pkg.essential = true;
+ break;
+
+ case 'size':
+ pkg.size = +val;
+ break;
+
+ case 'architecture':
+ case 'auto-installed':
+ case 'filename':
+ case 'sha256sum':
+ case 'section':
+ break;
+
+ default:
+ pkg[key] = val;
+ break;
+ }
+
+ key = val = null;
+ }
+
+ if (m[1].trim().match(/^([\w-]+)\s*:(.+)$/)) {
+ key = RegExp.$1.toLowerCase();
+ val = RegExp.$2.trim();
+ }
+ else if (pkg) {
+ dest.pkgs[pkg.name] = pkg;
+
+ var provides = dest.providers[pkg.name] ? [] : [ pkg.name ];
+
+ if (pkg.provides)
+ provides.push.apply(provides, pkg.provides);
+
+ provides.forEach(function(p) {
+ dest.providers[p] = dest.providers[p] || [];
+ dest.providers[p].push(pkg);
+ });
+ }
+ }
+}
+
+function display(pattern)
+{
+ var src = packages[currentDisplayMode === 'updates' ? 'installed' : currentDisplayMode],
+ table = document.querySelector('#packages'),
+ 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 || '',
+ altsize = null;
+
+ if (!pkg.size && packages.available.pkgs[name])
+ altsize = packages.available.pkgs[name].size;
+
+ if (!desc && packages.available.pkgs[name])
+ desc = packages.available.pkgs[name].description || '';
+
+ desc = desc.split(/\n/);
+ desc = desc[0].trim() + (desc.length > 1 ? '…' : '');
+
+ if ((pattern instanceof RegExp) &&
+ !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') {
+ var avail = packages.available.pkgs[name],
+ inst = packages.installed.pkgs[name];
+
+ if (!inst || !inst.installed)
+ continue;
+
+ if (!avail || compareVersion(avail.version, pkg.version) <= 0)
+ continue;
+
+ ver = '%s » %s'.format(
+ truncateVersion(pkg.version || '-'),
+ truncateVersion(avail.version || '-'));
+
+ btn = E('div', {
+ 'class': 'btn cbi-button-positive',
+ 'data-package': name,
+ 'click': handleInstall
+ }, _('Upgrade…'));
+ }
+ else if (currentDisplayMode === 'installed') {
+ if (!pkg.installed)
+ continue;
+
+ ver = truncateVersion(pkg.version || '-');
+ btn = E('div', {
+ 'class': 'btn cbi-button-negative',
+ 'data-package': name,
+ 'click': handleRemove
+ }, _('Remove…'));
+ }
+ else {
+ var inst = packages.installed.pkgs[name];
+
+ ver = truncateVersion(pkg.version || '-');
+
+ if (!inst || !inst.installed)
+ btn = E('div', {
+ 'class': 'btn cbi-button-action',
+ 'data-package': name,
+ 'click': handleInstall
+ }, _('Install…'));
+ else if (inst.installed && inst.version != pkg.version)
+ btn = E('div', {
+ 'class': 'btn cbi-button-positive',
+ 'data-package': name,
+ 'click': handleInstall
+ }, _('Upgrade…'));
+ else
+ btn = E('div', {
+ 'class': 'btn cbi-button-neutral',
+ 'disabled': 'disabled'
+ }, _('Installed'));
+ }
+
+ name = '%h'.format(name);
+ desc = '%h'.format(desc || '-');
+
+ if (pattern) {
+ name = name.replace(pattern, '<ins>$&</ins>');
+ desc = desc.replace(pattern, '<ins>$&</ins>');
+ }
+
+ currentDisplayRows.push([
+ name,
+ ver,
+ [ pkg.size || altsize || 0,
+ pkg.size ? '%1024mB'.format(pkg.size)
+ : (altsize ? '~%1024mB'.format(altsize) : '-') ],
+ desc,
+ btn
+ ]);
+ }
+
+ currentDisplayRows.sort(function(a, b) {
+ if (a[0] < b[0])
+ return -1;
+ else if (a[0] > b[0])
+ return 1;
+ else
+ return 0;
+ });
+
+ for (var i = 0; i < pagers.length; i++) {
+ pagers[i].parentNode.style.display = '';
+ pagers[i].setAttribute('data-offset', 100);
+ }
+
+ handlePage({ target: pagers[0].querySelector('.prev') });
+}
+
+function handlePage(ev)
+{
+ var filter = document.querySelector('input[name="filter"]'),
+ 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;
+
+ 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)
+ pagers[i].querySelector('.prev').setAttribute('disabled', 'disabled');
+ else
+ pagers[i].querySelector('.prev').removeAttribute('disabled');
+
+ if ((offset + 100) >= currentDisplayRows.length)
+ pagers[i].querySelector('.next').setAttribute('disabled', 'disabled');
+ else
+ pagers[i].querySelector('.next').removeAttribute('disabled');
+ }
+
+ var placeholder = _('No information available');
+
+ if (filter.value)
+ placeholder = [
+ E('span', {}, _('No packages matching "<strong>%h</strong>".').format(filter.value)), ' (',
+ E('a', { href: '#', click: handleReset }, _('Reset')), ')'
+ ];
+
+ cbi_update_table('#packages', currentDisplayRows.slice(offset, offset + 100),
+ placeholder);
+}
+
+function handleMode(ev)
+{
+ var tab = findParent(ev.target, 'li');
+ if (tab.getAttribute('data-mode') === currentDisplayMode)
+ return;
+
+ tab.parentNode.querySelectorAll('li').forEach(function(li) {
+ li.classList.remove('cbi-tab');
+ li.classList.add('cbi-tab-disabled');
+ });
+
+ tab.classList.remove('cbi-tab-disabled');
+ tab.classList.add('cbi-tab');
+
+ currentDisplayMode = tab.getAttribute('data-mode');
+
+ display(document.querySelector('input[name="filter"]').value);
+
+ ev.target.blur();
+ ev.preventDefault();
+}
+
+function handleI18nFilter(ev)
+{
+ display(document.querySelector('input[name="filter"]').value);
+}
+
+function orderOf(c)
+{
+ if (c === '~')
+ return -1;
+ else if (c === '' || c >= '0' && c <= '9')
+ return 0;
+ else if ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z'))
+ return c.charCodeAt(0);
+ else
+ return c.charCodeAt(0) + 256;
+}
+
+function compareVersion(val, ref)
+{
+ var vi = 0, ri = 0,
+ isdigit = { 0:1, 1:1, 2:1, 3:1, 4:1, 5:1, 6:1, 7:1, 8:1, 9:1 };
+
+ val = val || '';
+ ref = ref || '';
+
+ if (val === ref)
+ return 0;
+
+ while (vi < val.length || ri < ref.length) {
+ var first_diff = 0;
+
+ while ((vi < val.length && !isdigit[val.charAt(vi)]) ||
+ (ri < ref.length && !isdigit[ref.charAt(ri)])) {
+ var vc = orderOf(val.charAt(vi)), rc = orderOf(ref.charAt(ri));
+ if (vc !== rc)
+ return vc - rc;
+
+ vi++; ri++;
+ }
+
+ while (val.charAt(vi) === '0')
+ vi++;
+
+ while (ref.charAt(ri) === '0')
+ ri++;
+
+ while (isdigit[val.charAt(vi)] && isdigit[ref.charAt(ri)]) {
+ first_diff = first_diff || (val.charCodeAt(vi) - ref.charCodeAt(ri));
+ vi++; ri++;
+ }
+
+ if (isdigit[val.charAt(vi)])
+ return 1;
+ else if (isdigit[ref.charAt(ri)])
+ return -1;
+ else if (first_diff)
+ return first_diff;
+ }
+
+ return 0;
+}
+
+function versionSatisfied(ver, ref, vop)
+{
+ var r = compareVersion(ver, ref);
+
+ switch (vop) {
+ case '<':
+ case '<=':
+ return r <= 0;
+
+ case '>':
+ case '>=':
+ return r >= 0;
+
+ case '<<':
+ return r < 0;
+
+ case '>>':
+ return r > 0;
+
+ case '=':
+ return r == 0;
+ }
+
+ return false;
+}
+
+function pkgStatus(pkg, vop, ver, info)
+{
+ info.errors = info.errors || [];
+ info.install = info.install || [];
+
+ if (pkg.installed) {
+ if (vop && !versionSatisfied(pkg.version, ver, vop)) {
+ var repl = null;
+
+ (packages.available.providers[pkg.name] || []).forEach(function(p) {
+ if (!repl && versionSatisfied(p.version, ver, vop))
+ repl = p;
+ });
+
+ if (repl) {
+ info.install.push(repl);
+ return E('span', {
+ 'class': 'label',
+ 'data-tooltip': _('Requires update to %h %h')
+ .format(repl.name, repl.version)
+ }, _('Needs upgrade'));
+ }
+
+ info.errors.push(_('The installed version of package <em>%h</em> is not compatible, require %s while %s is installed.').format(pkg.name, truncateVersion(ver, vop), truncateVersion(pkg.version)));
+
+ return E('span', {
+ 'class': 'label warning',
+ 'data-tooltip': _('Require version %h %h,\ninstalled %h')
+ .format(vop, ver, pkg.version)
+ }, _('Version incompatible'));
+ }
+
+ return E('span', { 'class': 'label notice' }, _('Installed'));
+ }
+ else if (!pkg.missing) {
+ if (!vop || versionSatisfied(pkg.version, ver, vop)) {
+ info.install.push(pkg);
+ return E('span', { 'class': 'label' }, _('Not installed'));
+ }
+
+ info.errors.push(_('The repository version of package <em>%h</em> is not compatible, require %s but only %s is available.')
+ .format(pkg.name, truncateVersion(ver, vop), truncateVersion(pkg.version)));
+
+ return E('span', {
+ 'class': 'label warning',
+ 'data-tooltip': _('Require version %h %h,\ninstalled %h')
+ .format(vop, ver, pkg.version)
+ }, _('Version incompatible'));
+ }
+ else {
+ info.errors.push(_('Required dependency package <em>%h</em> is not available in any repository.').format(pkg.name));
+
+ return E('span', { 'class': 'label warning' }, _('Not available'));
+ }
+}
+
+function renderDependencyItem(dep, info, flat)
+{
+ var li = E('li'),
+ vop = dep.version ? dep.version[0] : null,
+ ver = dep.version ? dep.version[1] : null,
+ depends = [];
+
+ for (var i = 0; dep.pkgs && i < dep.pkgs.length; i++) {
+ var pkg = packages.installed.pkgs[dep.pkgs[i]] ||
+ packages.available.pkgs[dep.pkgs[i]] ||
+ { name: dep.name };
+
+ if (i > 0)
+ li.appendChild(document.createTextNode(' | '));
+
+ var text = pkg.name;
+
+ if (pkg.installsize)
+ text += ' (%1024mB)'.format(pkg.installsize);
+ else if (pkg.size)
+ text += ' (~%1024mB)'.format(pkg.size);
+
+ li.appendChild(E('span', { 'data-tooltip': pkg.description },
+ [ text, ' ', pkgStatus(pkg, vop, ver, info) ]));
+
+ (pkg.depends || []).forEach(function(d) {
+ if (depends.indexOf(d) === -1)
+ depends.push(d);
+ });
+ }
+
+ if (!li.firstChild)
+ li.appendChild(E('span', {},
+ [ dep.name, ' ',
+ pkgStatus({ name: dep.name, missing: true }, vop, ver, info) ]));
+
+ if (!flat) {
+ var subdeps = renderDependencies(depends, info);
+ if (subdeps)
+ li.appendChild(subdeps);
+ }
+
+ return li;
+}
+
+function renderDependencies(depends, info, flat)
+{
+ var deps = depends || [],
+ items = [];
+
+ info.seen = info.seen || [];
+
+ for (var i = 0; i < deps.length; i++) {
+ var dep, vop, ver;
+
+ if (deps[i] === 'libc')
+ continue;
+
+ if (deps[i].match(/^(.+?)\s+\((<=|>=|<<|>>|<|>|=)(.+?)\)/)) {
+ dep = RegExp.$1.trim();
+ vop = RegExp.$2.trim();
+ ver = RegExp.$3.trim();
+ }
+ else {
+ dep = deps[i].trim();
+ vop = ver = null;
+ }
+
+ if (info.seen[dep])
+ continue;
+
+ var pkgs = [];
+
+ (packages.installed.providers[dep] || []).forEach(function(p) {
+ if (pkgs.indexOf(p.name) === -1) pkgs.push(p.name);
+ });
+
+ (packages.available.providers[dep] || []).forEach(function(p) {
+ if (pkgs.indexOf(p.name) === -1) pkgs.push(p.name);
+ });
+
+ info.seen[dep] = {
+ name: dep,
+ pkgs: pkgs,
+ version: [vop, ver]
+ };
+
+ items.push(renderDependencyItem(info.seen[dep], info, flat));
+ }
+
+ if (items.length)
+ return E('ul', { 'class': 'deps' }, items);
+
+ return null;
+}
+
+function truncateVersion(v, op)
+{
+ v = v.replace(/\b(([a-f0-9]{8})[a-f0-9]{24,32})\b/,
+ '<span data-tooltip="$1">$2…</span>');
+
+ if (!op || op === '=')
+ return v;
+
+ return '%h %h'.format(op, v);
+}
+
+function handleReset(ev)
+{
+ var filter = document.querySelector('input[name="filter"]');
+
+ filter.value = '';
+ display();
+}
+
+function handleInstall(ev)
+{
+ var name = ev.target.getAttribute('data-package'),
+ pkg = packages.available.pkgs[name],
+ depcache = {},
+ size;
+
+ if (pkg.installsize)
+ size = _('~%1024mB installed').format(pkg.installsize);
+ else if (pkg.size)
+ size = _('~%1024mB compressed').format(pkg.size);
+ else
+ size = _('unknown');
+
+ var deps = renderDependencies(pkg.depends, depcache),
+ tree = null, errs = null, inst = null, desc = null;
+
+ if (depcache.errors && depcache.errors.length) {
+ errs = E('ul', { 'class': 'errors' });
+ depcache.errors.forEach(function(err) {
+ errs.appendChild(E('li', {}, err));
+ });
+ }
+
+ var totalsize = pkg.installsize || pkg.size || 0,
+ totalpkgs = 1,
+ suggestsize = 0;
+
+ if (depcache.install && depcache.install.length)
+ depcache.install.forEach(function(ipkg) {
+ totalsize += ipkg.installsize || ipkg.size || 0;
+ 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')));
+ tree.appendChild(deps);
+ }
+
+ if (pkg.description) {
+ desc = E('div', {}, [
+ E('h5', {}, _('Description')),
+ E('p', {}, pkg.description)
+ ]);
+ }
+
+ ui.showModal(_('Details for package <em>%h</em>').format(pkg.name), [
+ E('ul', {}, [
+ 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('div', {
+ 'class': 'btn',
+ 'click': ui.hideModal
+ }, _('Cancel')),
+ ' ',
+ E('div', {
+ 'data-command': 'install',
+ 'data-package': name,
+ 'class': 'btn cbi-button-action',
+ 'click': handlePkg,
+ 'disabled': isReadonlyView
+ }, _('Install'))
+ ])
+ ]);
+}
+
+function handleManualInstall(ev)
+{
+ var name_or_url = document.querySelector('input[name="install"]').value,
+ install = E('div', {
+ 'class': 'btn cbi-button-action',
+ 'data-command': 'install',
+ 'data-package': name_or_url,
+ 'click': function(ev) {
+ document.querySelector('input[name="install"]').value = '';
+ handlePkg(ev);
+ }
+ }, _('Install')), warning;
+
+ if (!name_or_url.length) {
+ return;
+ }
+ else if (name_or_url.indexOf('/') !== -1) {
+ warning = E('p', {}, _('Installing packages from untrusted sources is a potential security risk! Really attempt to install <em>%h</em>?').format(name_or_url));
+ }
+ else if (!packages.available.providers[name_or_url]) {
+ warning = E('p', {}, _('The package <em>%h</em> is not available in any configured repository.').format(name_or_url));
+ install = '';
+ }
+ else {
+ warning = E('p', {}, _('Really attempt to install <em>%h</em>?').format(name_or_url));
+ }
+
+ ui.showModal(_('Manually install package'), [
+ warning,
+ E('div', { 'class': 'right' }, [
+ E('div', {
+ 'click': ui.hideModal,
+ 'class': 'btn cbi-button-neutral'
+ }, _('Cancel')),
+ ' ', install
+ ])
+ ]);
+}
+
+function handleConfig(ev)
+{
+ var conf = {};
+ var base_dir = L.hasSystemFeature('apk') ? '/etc/apk' : '/etc/opkg';
+
+ ui.showModal(_('%s Configuration').format(L.hasSystemFeature('apk') ? 'APK' : 'OPKG'), [
+ E('p', { 'class': 'spinning' }, _('Loading configuration data…'))
+ ]);
+
+ fs.list(base_dir).then(function(partials) {
+ var files = [];
+
+ if (!L.hasSystemFeature('apk'))
+ files.push(base_dir + '.conf')
+
+ for (var i = 0; i < partials.length; i++) {
+ if (partials[i].type == 'file') {
+ if (L.hasSystemFeature('apk')) {
+ if (partials[i].name == 'repositories')
+ files.push(base_dir + '/' + partials[i].name);
+ } else if (partials[i].name.match(/\.conf$/)) {
+ files.push(base_dir + '/' + partials[i].name);
+ }
+ }
+ }
+
+ return Promise.all(files.map(function(file) {
+ return fs.read(file)
+ .then(L.bind(function(conf, file, res) { conf[file] = res }, this, conf, file))
+ .catch(function(err) {
+ ui.addNotification(null, E('p', {}, [ _('Unable to read %s: %s').format(file, err) ]));
+ ui.hideModal();
+ throw err;
+ });
+ }));
+ }).then(function() {
+ var opkg_text = _('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>.')
+ var apk_text = _('Below is a listing of the various configuration files used by <em>apk</em>. The configuration in the other files may be changed but is usually not preserved by <em>sysupgrade</em>.')
+ var body = [
+ E('p', {}, L.hasSystemFeature('apk') ? apk_text : opkg_text)
+ ];
+
+ Object.keys(conf).sort().forEach(function(file) {
+ body.push(E('h5', {}, '%h'.format(file)));
+ body.push(E('textarea', {
+ 'name': file,
+ 'rows': Math.max(Math.min(L.toArray(conf[file].match(/\n/g)).length, 10), 3)
+ }, '%h'.format(conf[file])));
+ });
+
+ body.push(E('div', { 'class': 'button-row' }, [
+ E('div', {
+ 'class': 'btn cbi-button-neutral',
+ 'click': ui.hideModal
+ }, _('Cancel')),
+ ' ',
+ E('div', {
+ 'class': 'btn cbi-button-positive',
+ 'click': function(ev) {
+ var data = {};
+ findParent(ev.target, '.modal').querySelectorAll('textarea[name]')
+ .forEach(function(textarea) {
+ data[textarea.getAttribute('name')] = textarea.value
+ });
+
+ ui.showModal(_('%s Configuration').format(L.hasSystemFeature('apk') ? 'APK' : 'OPKG'), [
+ E('p', { 'class': 'spinning' }, _('Saving configuration data…'))
+ ]);
+
+ Promise.all(Object.keys(data).map(function(file) {
+ return fs.write(file, data[file]).catch(function(err) {
+ ui.addNotification(null, E('p', {}, [ _('Unable to save %s: %s').format(file, err) ]));
+ });
+ })).then(ui.hideModal);
+ },
+ 'disabled': isReadonlyView
+ }, _('Save')),
+ ]));
+
+ ui.showModal(_('%s Configuration').format(L.hasSystemFeature('apk') ? 'APK' : 'OPKG'), body);
+ });
+}
+
+function handleRemove(ev)
+{
+ var name = ev.target.getAttribute('data-package'),
+ pkg = packages.installed.pkgs[name],
+ avail = packages.available.pkgs[name] || {},
+ size, desc;
+
+ if (avail.installsize)
+ size = _('~%1024mB installed').format(avail.installsize);
+ else if (avail.size)
+ size = _('~%1024mB compressed').format(avail.size);
+ else
+ size = _('unknown');
+
+ if (avail.description) {
+ desc = E('div', {}, [
+ E('h5', {}, _('Description')),
+ E('p', {}, avail.description)
+ ]);
+ }
+
+ ui.showModal(_('Remove package <em>%h</em>').format(pkg.name), [
+ E('ul', {}, [
+ E('li', '<strong>%s:</strong> %h'.format(_('Version'), pkg.version)),
+ E('li', '<strong>%s:</strong> %h'.format(_('Size'), size))
+ ]),
+ desc || '',
+ E('div', { 'style': 'display:flex; justify-content:space-between; flex-wrap:wrap' }, [
+ E('label', { 'class': 'cbi-checkbox', 'style': 'float:left' }, [
+ E('input', { 'id': 'autoremove-cb', 'type': 'checkbox', 'checked': 'checked', 'name': 'autoremove', 'disabled': isReadonlyView || L.hasSystemFeature('apk') }), ' ',
+ E('label', { 'for': 'autoremove-cb' }), ' ',
+ _('Automatically remove unused dependencies')
+ ]),
+ E('div', { 'style': 'flex-grow:1', 'class': 'right' }, [
+ E('div', {
+ 'class': 'btn',
+ 'click': ui.hideModal
+ }, _('Cancel')),
+ ' ',
+ E('div', {
+ 'data-command': 'remove',
+ 'data-package': name,
+ 'class': 'btn cbi-button-negative',
+ 'click': handlePkg,
+ 'disabled': isReadonlyView
+ }, _('Remove'))
+ ])
+ ])
+ ]);
+}
+
+function handlePkg(ev)
+{
+ return new Promise(function(resolveFn, rejectFn) {
+ 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"]'),
+ i18n = document.querySelector('input[name="i18ninstall"]');
+
+ var dlg = ui.showModal(_('Executing package manager'), [
+ E('p', { 'class': 'spinning' },
+ _('Waiting for the <em>%s %h</em> command to complete…').format(L.hasSystemFeature('apk') ? 'apk' : 'opkg', cmd))
+ ]);
+
+ var argv = [ cmd ];
+
+ if (cmd == 'remove')
+ argv.push('--force-removal-of-dependent-packages')
+
+ if (rem && rem.checked)
+ argv.push('--autoremove');
+
+ 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);
+
+ fs.exec_direct('/usr/libexec/package-manager-call', argv, 'json').then(function(res) {
+ dlg.removeChild(dlg.lastChild);
+
+ if (res.stdout)
+ dlg.appendChild(E('pre', [ res.stdout ]));
+
+ if (res.stderr) {
+ dlg.appendChild(E('h5', _('Errors')));
+ dlg.appendChild(E('pre', { 'class': 'errors' }, [ res.stderr ]));
+ }
+
+ if (res.code !== 0)
+ dlg.appendChild(E('p', _('The <em>%s %h</em> command failed with code <code>%d</code>.').format(L.hasSystemFeature('apk') ? 'apk' : 'opkg', cmd, (res.code & 0xff) || -1)));
+
+ dlg.appendChild(E('div', { 'class': 'button-row' },
+ E('div', {
+ 'class': 'btn',
+ 'click': L.bind(function(res) {
+ if (ui.menu && ui.menu.flushCache)
+ ui.menu.flushCache();
+
+ ui.hideModal();
+ updateLists();
+
+ if (res.code !== 0)
+ rejectFn(new Error(res.stderr || '%s error %d'.format(L.hasSystemFeature('apk') ? 'apk' : 'opkg', res.code)));
+ else
+ resolveFn(res);
+ }, this, res)
+ }, _('Dismiss'))));
+ }).catch(function(err) {
+ ui.addNotification(null, E('p', _('Unable to execute <em>%s %s</em> command: %s').format(L.hasSystemFeature('apk') ? 'apk' : 'opkg', cmd, err)));
+ ui.hideModal();
+ });
+ });
+}
+
+function handleUpload(ev)
+{
+ var path = '/tmp/upload.%s'.format(L.hasSystemFeature('apk') ? 'apk' : 'ipk');
+ return ui.uploadFile(path).then(L.bind(function(btn, res) {
+ ui.showModal(_('Manually install package'), [
+ E('p', {}, _('Installing packages from untrusted sources is a potential security risk! Really attempt to install <em>%h</em>?').format(res.name)),
+ E('ul', {}, [
+ res.size ? E('li', {}, '%s: %1024.2mB'.format(_('Size'), res.size)) : '',
+ res.checksum ? E('li', {}, '%s: %s'.format(_('MD5'), res.checksum)) : '',
+ res.sha256sum ? E('li', {}, '%s: %s'.format(_('SHA256'), res.sha256sum)) : ''
+ ]),
+ E('div', { 'class': 'right' }, [
+ E('div', {
+ 'click': function(ev) {
+ ui.hideModal();
+ fs.remove(path);
+ },
+ 'class': 'btn cbi-button-neutral'
+ }, _('Cancel')), ' ',
+ E('div', {
+ 'class': 'btn cbi-button-action',
+ 'data-command': 'install',
+ 'data-package': path,
+ 'click': function(ev) {
+ handlePkg(ev).finally(function() {
+ fs.remove(path)
+ });
+ }
+ }, _('Install'))
+ ])
+ ]);
+ }, this, ev.target));
+}
+
+function downloadLists()
+{
+ return Promise.all([
+ callMountPoints(),
+ fs.exec_direct('/usr/libexec/package-manager-call', [ 'list-available' ]),
+ fs.exec_direct('/usr/libexec/package-manager-call', [ 'list-installed' ])
+ ]);
+}
+
+function updateLists(data)
+{
+ cbi_update_table('#packages', [],
+ E('div', { 'class': 'spinning' }, _('Loading package information…')));
+
+ packages.available = { providers: {}, pkgs: {} };
+ packages.installed = { providers: {}, pkgs: {} };
+
+ return (data ? Promise.resolve(data) : downloadLists()).then(function(data) {
+ var pg = document.querySelector('.cbi-progressbar'),
+ mount = L.toArray(data[0].filter(function(m) { return m.mount == '/' || m.mount == '/overlay' }))
+ .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.size - mount.free) : 100) + '%';
+ pg.setAttribute('title', _('%s used (%1024mB used of %1024mB, %1024mB free)').format(pg.firstElementChild.style.width, mount.size - mount.free, mount.size, mount.free));
+
+ parseList(data[1], packages.available);
+ parseList(data[2], packages.installed);
+
+ for (var pkgname in packages.installed.pkgs)
+ if (pkgname.indexOf('luci-i18n-base-') === 0)
+ languages.push(pkgname.substring(15));
+
+ display(document.querySelector('input[name="filter"]').value);
+ });
+}
+
+var inputTimeout = null;
+
+function handleInput(ev) {
+ if (inputTimeout !== null)
+ window.clearTimeout(inputTimeout);
+
+ inputTimeout = window.setTimeout(function() {
+ display(ev.target.value);
+ }, 250);
+}
+
+return view.extend({
+ load: function() {
+ return downloadLists();
+ },
+
+ render: function(listData) {
+ var query = decodeURIComponent(L.toArray(location.search.match(/\bquery=([^=]+)\b/))[1] || '');
+
+ var view = E([], [
+ E('style', { 'type': 'text/css' }, [ css ]),
+
+ E('h2', {}, _('Software')),
+
+ E('div', { 'class': 'cbi-map-descr' }, [
+ E('span', _('Install additional software and upgrade existing packages with %s.').format(L.hasSystemFeature('apk') ? 'apk' : 'opkg')),
+ E('br'),
+ E('span', _('<strong>Warning!</strong> Package operations can <a %s>break your system</a>.').format(
+ 'href="https://openwrt.org/meta/infobox/upgrade_packages_warning" target="_blank" rel="noreferrer"'
+ ))
+ ]),
+
+ E('div', { 'class': 'controls' }, [
+ E('div', {}, [
+ E('label', {}, _('Disk space') + ':'),
+ E('div', { 'class': 'cbi-progressbar', 'title': _('unknown') }, E('div', {}, [ '\u00a0' ]))
+ ]),
+
+ E('div', {}, [
+ E('label', {}, _('Filter') + ':'),
+ E('span', { 'class': 'control-group' }, [
+ E('input', { 'type': 'text', 'name': 'filter', 'placeholder': _('Type to filter…'), 'value': query, 'input': handleInput }),
+ E('button', { 'class': 'btn cbi-button', 'click': handleReset }, [ _('Clear') ])
+ ])
+ ]),
+
+ E('div', {}, [
+ E('label', {}, _('Download and install package') + ':'),
+ E('span', { 'class': 'control-group' }, [
+ E('input', { 'type': 'text', 'name': 'install', 'placeholder': _('Package name or URL…'), 'keydown': function(ev) { if (ev.keyCode === 13) handleManualInstall(ev) }, 'disabled': isReadonlyView }),
+ E('button', { 'class': 'btn cbi-button cbi-button-action', 'click': handleManualInstall, 'disabled': isReadonlyView }, [ _('OK') ])
+ ])
+ ]),
+
+ E('div', {}, [
+ E('label', {}, _('Actions') + ':'), ' ',
+ E('span', { 'class': 'control-group' }, [
+ E('button', { 'class': 'btn cbi-button-positive', 'data-command': 'update', 'click': handlePkg, 'disabled': isReadonlyView }, [ _('Update lists…') ]), ' ',
+ E('button', { 'class': 'btn cbi-button-action', 'click': handleUpload, 'disabled': isReadonlyView }, [ _('Upload Package…') ]), ' ',
+ E('button', { 'class': 'btn cbi-button-neutral', 'click': handleConfig }, [ _('Configure %s').format(L.hasSystemFeature('apk') ? 'apk' : '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')
+ ])
+ ])
+ ])
+ ]),
+
+ E('ul', { 'class': 'cbi-tabmenu mode' }, [
+ E('li', { 'data-mode': 'available', 'class': 'available cbi-tab', 'click': handleMode }, E('a', { 'href': '#' }, [ _('Available') ])),
+ E('li', { 'data-mode': 'installed', 'class': 'installed cbi-tab-disabled', 'click': handleMode }, E('a', { 'href': '#' }, [ _('Installed') ])),
+ E('li', { 'data-mode': 'updates', 'class': 'installed cbi-tab-disabled', 'click': handleMode }, E('a', { 'href': '#' }, [ _('Updates') ]))
+ ]),
+
+ 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 }, [ '»' ])
+ ])
+ ]),
+
+ E('table', { 'id': 'packages', 'class': 'table' }, [
+ E('tr', { 'class': 'tr cbi-section-table-titles' }, [
+ E('th', { 'class': 'th col-2 left' }, [ _('Package name') ]),
+ E('th', { 'class': 'th col-2 left version' }, [ _('Version') ]),
+ E('th', { 'class': 'th col-1 center size'}, [ _('Size (.ipk)') ]),
+ E('th', { 'class': 'th col-10 left' }, [ _('Description') ]),
+ E('th', { 'class': 'th right cbi-section-actions' }, [ '\u00a0' ])
+ ])
+ ]),
+
+ E('div', { 'class': 'controls', 'style': 'display:none' }, [
+ E('div', { 'class': 'pager center' }, [
+ E('button', { 'class': 'btn cbi-button-neutral prev', 'aria-label': _('Previous page'), 'click': handlePage }, [ '«' ]),
+ E('div', { 'class': 'text' }, [ 'dummy' ]),
+ E('button', { 'class': 'btn cbi-button-neutral next', 'aria-label': _('Next page'), 'click': handlePage }, [ '»' ])
+ ])
+ ])
+ ]);
+
+ requestAnimationFrame(function() {
+ updateLists(listData)
+ });
+
+ return view;
+ },
+
+ handleSave: null,
+ handleSaveApply: null,
+ handleReset: null
+});
--- /dev/null
+msgid ""
+msgstr ""
+"PO-Revision-Date: 2024-07-15 18:06+0000\n"
+"Last-Translator: Rex_sa <rex.sa@pm.me>\n"
+"Language-Team: Arabic <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationsopkg/ar/>\n"
+"Language: ar\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
+"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
+"X-Generator: Weblate 5.7-dev\n"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
+msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
+msgstr ""
+"…%s مستخدمة (% 1024 ميغابايت مستخدمة من % 1024 ميغابايت، خالية من %1024 "
+"ميغابايت)"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
+msgid ""
+"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
+msgstr ""
+"<strong>تحذير!</strong> يمكن أن تؤدي عمليات الحزمة <a %s>إلى كسر نظامك</a>."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
+msgid "Actions"
+msgstr "إجراءات"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
+msgid "Allow overwriting conflicting package files"
+msgstr "السماح باستبدال ملفات الحزم المتضاربة"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
+msgid "Automatically remove unused dependencies"
+msgstr "قم بإزالة التبعيات غير المستخدمة تلقائيًا"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1218
+msgid "Available"
+msgstr "متاح"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
+msgid ""
+"Below is a listing of the various configuration files used by <em>opkg</em>. "
+"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
+"custom repository entries. The configuration in the other files may be "
+"changed but is usually not preserved by <em>sysupgrade</em>."
+msgstr ""
+"يوجد أدناه قائمة بملفات التكوين المتنوعة المستخدمة بواسطة <em> opkg </em>. "
+"استخدم <em> opkg.conf </em> للإعدادات العامة و <em> customfeeds.conf </em> "
+"لإدخالات المستودع المخصصة. قد يتم تغيير التهيئة في الملفات الأخرى ولكن عادةً "
+"لا يتم الاحتفاظ بها بواسطة <em> sysupgrade </em>."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
+msgid "Cancel"
+msgstr "إلغاء"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150
+msgid "Clear"
+msgstr "إجلاء"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+msgid "Configure opkg…"
+msgstr "تكوين opkg …"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
+msgid "Dependencies"
+msgstr "التبعيات"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
+msgid "Description"
+msgstr "الوصف"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755
+msgid "Details for package <em>%h</em>"
+msgstr "تفاصيل الحزمة <em>%h </em>"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142
+msgid "Disk space"
+msgstr "مساحة القرص"
+
+#: 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:1172
+msgid "Display LuCI translation packages"
+msgstr "عرض حزم ترجمة LuCI"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
+msgid "Display all available translation packages"
+msgstr "عرض جميع حزم الترجمة المتاحة"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
+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:1155
+msgid "Download and install package"
+msgstr "قم بتنزيل الحزمة وتثبيتها"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
+msgid "Errors"
+msgstr "أخطاء"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
+msgid "Executing package manager"
+msgstr "تنفيذ مدير الحزم"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
+msgid "Filter"
+msgstr "المرشحات"
+
+#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
+msgid "Grant access to opkg management"
+msgstr "منح حقوق الدخول لإدارة opkg"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1202
+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:1133
+msgid "Install additional software and upgrade existing packages with opkg."
+msgstr "تثبيت برامج إضافية وترقية الحزم الموجودة باستخدام حزمة التشغيل."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr "تثبيت حزم الترجمة المقترحة أيضًا"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
+msgid "Installed"
+msgstr "مثبت"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
+msgid ""
+"Installing packages from untrusted sources is a potential security risk! "
+"Really attempt to install <em>%h</em>?"
+msgstr ""
+"يعد تثبيت الحزم من مصادر غير موثوق بها مخاطرة أمنية محتملة! هل تحاول حقًا "
+"تثبيت <em>%h</em>?"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
+msgid "Install…"
+msgstr "تثبيت…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
+msgid "Loading configuration data…"
+msgstr "تحميل بيانات التكوين …"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
+msgid "Loading package information…"
+msgstr "جارٍ تحميل معلومات الحزمة …"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+msgid "MD5"
+msgstr "MD5"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
+msgid "Manually install package"
+msgstr "قم بتثبيت الحزمة يدويًا"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
+msgid "Needs upgrade"
+msgstr "يحتاج إلى ترقية"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
+msgid "Next page"
+msgstr "الصفحة التالية"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
+msgid "No information available"
+msgstr "لا توجد معلومات متاحة"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
+msgid "No packages"
+msgstr "لا توجد حزم"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
+msgid "No packages matching \"<strong>%h</strong>\"."
+msgstr "لا توجد حزم تطابق \"<strong>%h </strong>\"."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
+msgid "Not available"
+msgstr "غير متوفر"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
+msgid "Not installed"
+msgstr "غير مثبت"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
+msgid "OK"
+msgstr "موافق"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
+msgid "OPKG Configuration"
+msgstr "تكوين OPKG"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
+msgid "Package name"
+msgstr "اسم الحزمة"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
+msgid "Package name or URL…"
+msgstr "اسم الحزمة أو URL …"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
+msgid "Previous page"
+msgstr "الصفحة السابقة"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
+msgid "Really attempt to install <em>%h</em>?"
+msgstr "هل تحاول حقًا تثبيت <em> %h </em>؟"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
+msgid "Remove"
+msgstr "نزع"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
+msgid "Remove package <em>%h</em>"
+msgstr "قم بإزالة الحزمة <em>% h </em>"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
+msgid "Remove…"
+msgstr "يزيل…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
+msgid "Require approx. %1024mB size for %d package(s) to install."
+msgstr "تتطلب تقريبا. ٪ .1024 ميغا بايت حجم لتثبيت %d حزمة (حزم)."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
+msgid "Require version %h %h, installed %h"
+msgstr "إصدار مطلوب %h% h ، مثبت %h"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540
+msgid ""
+"Required dependency package <em>%h</em> is not available in any repository."
+msgstr "حزمة التبعية المطلوبة <em>%h </em> غير متوفرة في أي مستودع."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508
+msgid "Requires update to %h %h"
+msgstr "يتطلب التحديث إلى %h% h"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
+msgid "Reset"
+msgstr "إعادة ضبط"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+msgid "SHA256"
+msgstr "SHA256"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
+msgid "Save"
+msgstr "إحفض"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
+msgid "Saving configuration data…"
+msgstr "جارٍ حفظ بيانات التكوين …"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
+msgid "Size"
+msgstr "مقاس"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
+msgid "Size (.ipk)"
+msgstr "الحجم (.ipk)"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
+#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
+msgid "Software"
+msgstr "برنامج"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr "الترجمات المقترحة"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr "تتطلب الترجمات المقترحة مساحة إضافية تبلغ حوالي % 1024 ميجابايت."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
+msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
+msgstr "فشل الأمر <em> opkg % h </em> برمز <code>%d </code>."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
+msgid ""
+"The installed version of package <em>%h</em> is not compatible, require %s "
+"while %s is installed."
+msgstr ""
+"الإصدار المثبت من الحزمة <em>% h </em> غير متوافق ، يتطلب٪ s أثناء تثبيت %s."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833
+msgid "The package <em>%h</em> is not available in any configured repository."
+msgstr "الحزمة <em>%h </em> ليست متاحة في أي مستودع تم تكوينه."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530
+msgid ""
+"The repository version of package <em>%h</em> is not compatible, require %s "
+"but only %s is available."
+msgstr ""
+"إصدار المستودع للحزمة <em>%h </em> غير متوافق ، يتطلب %s ولكن يتوفر%s فقط."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
+msgid "Type to filter…"
+msgstr "اكتب للتصفية …"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
+msgid "Unable to execute <em>opkg %s</em> command: %s"
+msgstr "تعذر تنفيذ أمر <em> opkg %s </em>:%s"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871
+msgid "Unable to read %s: %s"
+msgstr "غير قادر على قراءة٪ s: %s%"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910
+msgid "Unable to save %s: %s"
+msgstr "غير قادر على حفظ٪ %s% : s"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1165
+msgid "Update lists…"
+msgstr "تحديث القوائم …"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
+msgid "Updates"
+msgstr "التحديثات"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
+msgid "Upgrade…"
+msgstr "تحديث النظام…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1166
+msgid "Upload Package…"
+msgstr "تحميل الحزمة …"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1234
+msgid "Version"
+msgstr "الإصدار"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
+msgid "Version incompatible"
+msgstr "الإصدار غير متوافق"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
+msgid "Waiting for the <em>opkg %h</em> command to complete…"
+msgstr "في انتظار إكمال أمر <em> opkg %h </em> …"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1198
+msgctxt "Display translation packages"
+msgid "all"
+msgstr "الكل"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr "مرشحة"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
+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:1143
+msgid "unknown"
+msgstr "غير معروف"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
+msgid "~%1024mB compressed"
+msgstr "مضغوط ~٪ .1024 ميغا بايت"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
+msgid "~%1024mB installed"
+msgstr "تم تثبيت ~٪ .1024 ميغا بايت"
+
+#~ msgid "Free space"
+#~ msgstr "مساحة فارغة"
+
+#~ msgid "Overwrite files from other package(s)"
+#~ msgstr "الكتابة فوق الملفات من حزم أخرى"
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2009-06-10 03:40+0200\n"
+"PO-Revision-Date: 2021-08-31 01:32+0000\n"
+"Last-Translator: Iskren Mihaylov <iskren.mihaylov91@gmail.com>\n"
+"Language-Team: Bulgarian <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationsopkg/bg/>\n"
+"Language: bg\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 4.8.1-dev\n"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
+msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
+msgid ""
+"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
+msgid "Actions"
+msgstr "Действия"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
+msgid "Allow overwriting conflicting package files"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
+msgid "Automatically remove unused dependencies"
+msgstr "Автоматично премахни неизползвани зависимости"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1218
+msgid "Available"
+msgstr "Налични"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
+msgid ""
+"Below is a listing of the various configuration files used by <em>opkg</em>. "
+"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
+"custom repository entries. The configuration in the other files may be "
+"changed but is usually not preserved by <em>sysupgrade</em>."
+msgstr ""
+"Отдолу е списък с различни конфигурационни файлове използвани от <em>opkg</"
+"em>. Използвайте <em>opkg.conf</em> за глобални настройки и <em>customfeeds."
+"conf</em> за ваши записи на хранилища. Конфигурацията в други файлове може "
+"да се промени, но обикновено не се запазва при <em>sysupgrade</em>."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
+msgid "Cancel"
+msgstr "Отмени"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150
+msgid "Clear"
+msgstr "Изчисти"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+msgid "Configure opkg…"
+msgstr "Конфигуриране opkg…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
+msgid "Dependencies"
+msgstr "Зависимости"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
+msgid "Description"
+msgstr "Описание"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755
+msgid "Details for package <em>%h</em>"
+msgstr "Детайли за пакет <em>%h</em>"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142
+msgid "Disk space"
+msgstr ""
+
+#: 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:1172
+msgid "Display LuCI translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
+msgid "Display all available translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
+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:1155
+msgid "Download and install package"
+msgstr "Свали и инсталирай пакет"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
+msgid "Errors"
+msgstr "Грешки"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
+msgid "Executing package manager"
+msgstr "Стартиране на пакетния мениджър"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
+msgid "Filter"
+msgstr "Филтър"
+
+#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
+msgid "Grant access to opkg management"
+msgstr "Разрешаване достъп до opkg менажиране"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1202
+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:1133
+msgid "Install additional software and upgrade existing packages with opkg."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
+msgid "Installed"
+msgstr "Инсталирани"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
+msgid ""
+"Installing packages from untrusted sources is a potential security risk! "
+"Really attempt to install <em>%h</em>?"
+msgstr ""
+"Инсталиране на пакети от недоверени източници е потенциален риск за "
+"сигурността! Наистина ли да се опитам да инсталирам <em>%h</em>?"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
+msgid "Install…"
+msgstr "Инсталиране…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
+msgid "Loading configuration data…"
+msgstr "Зареждане на конфигурации…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
+msgid "Loading package information…"
+msgstr "Зареждане пакетна информация…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+msgid "MD5"
+msgstr "MD5"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
+msgid "Manually install package"
+msgstr "Ръчно инсталирай пакет"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
+msgid "Needs upgrade"
+msgstr "Нуждаещ се от ъпгрейд"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
+msgid "Next page"
+msgstr "Следваща страница"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
+msgid "No information available"
+msgstr "Няма налична информация"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
+msgid "No packages"
+msgstr "Няма пакети"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
+msgid "No packages matching \"<strong>%h</strong>\"."
+msgstr "Няма съвпадение за \"<strong>%h</strong>\"."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
+msgid "Not available"
+msgstr "Липсва"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
+msgid "Not installed"
+msgstr "Не е инсталиран"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
+msgid "OK"
+msgstr "ОК"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
+msgid "OPKG Configuration"
+msgstr "OPKG Конфигурация"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
+msgid "Package name"
+msgstr "Име на пакет"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
+msgid "Package name or URL…"
+msgstr "Име на пакет или URL…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
+msgid "Previous page"
+msgstr "Предишна страница"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
+msgid "Really attempt to install <em>%h</em>?"
+msgstr "Да се направи опит за инсталиране на <em>%h</em>?"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
+msgid "Remove"
+msgstr "Премахни"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
+msgid "Remove package <em>%h</em>"
+msgstr "Премахни пакет <em>%h</em>"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
+msgid "Remove…"
+msgstr "Премахване…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
+msgid "Require approx. %1024mB size for %d package(s) to install."
+msgstr "Нужни са прибл. %1024mB място за инсталиране на %d пакет(а)."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
+msgid "Require version %h %h, installed %h"
+msgstr "Изисква версия %h %h, инсталирана %h"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540
+msgid ""
+"Required dependency package <em>%h</em> is not available in any repository."
+msgstr "Необходим пакет <em>%h</em> не е наличен в никое хранилище."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508
+msgid "Requires update to %h %h"
+msgstr "Изисква се ъпдейт към %h %h"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
+msgid "Reset"
+msgstr "Нулирай"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+msgid "SHA256"
+msgstr "SHA256"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
+msgid "Save"
+msgstr "Запази"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
+msgid "Saving configuration data…"
+msgstr "Запазване на конфигурация…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
+msgid "Size"
+msgstr "Размер"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
+msgid "Size (.ipk)"
+msgstr "Размер (.ipk)"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
+#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
+msgid "Software"
+msgstr "Софтуер"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
+msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
+msgstr "Команда <em>opkg %h</em> се провали с код <code>%d</code>."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
+msgid ""
+"The installed version of package <em>%h</em> is not compatible, require %s "
+"while %s is installed."
+msgstr ""
+"Инсталираната версия на пакета <em>%h</em> не е съвместима, изисква се %s "
+"докато %s е инсталирана."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833
+msgid "The package <em>%h</em> is not available in any configured repository."
+msgstr "Пакетът <em>%h</em> не е наличен в нито едно от хранилищата."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530
+msgid ""
+"The repository version of package <em>%h</em> is not compatible, require %s "
+"but only %s is available."
+msgstr ""
+"Версията на пакета в хранилището <em>%h</em> не е свъместима, изисква се %s "
+"но само %s е налична."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
+msgid "Type to filter…"
+msgstr "Пиши за филтър…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
+msgid "Unable to execute <em>opkg %s</em> command: %s"
+msgstr "Не може да се изпълни <em>opkg %s</em> команда: %s"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871
+msgid "Unable to read %s: %s"
+msgstr "Не може да се прочете %s: %s"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910
+msgid "Unable to save %s: %s"
+msgstr "Не може да се запази %s: %s"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1165
+msgid "Update lists…"
+msgstr "Обновяване на списъци…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
+msgid "Updates"
+msgstr "Обновления"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
+msgid "Upgrade…"
+msgstr "Надстройване…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1166
+msgid "Upload Package…"
+msgstr "Качване пакет…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1234
+msgid "Version"
+msgstr "Версия"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
+msgid "Version incompatible"
+msgstr "Несъвместима версия"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
+msgid "Waiting for the <em>opkg %h</em> command to complete…"
+msgstr "Изчкаване <em>opkg %h</em> команда да приключи…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1198
+msgctxt "Display translation packages"
+msgid "all"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
+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:1143
+msgid "unknown"
+msgstr "неизвестен"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
+msgid "~%1024mB compressed"
+msgstr "~%1024mB архивирани"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
+msgid "~%1024mB installed"
+msgstr "~%1024mB инсталирани"
+
+#~ msgid "Free space"
+#~ msgstr "Свободно място"
+
+#~ msgid "Overwrite files from other package(s)"
+#~ msgstr "Заместване на файлове от други пакет(и)"
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2009-06-10 03:40+0200\n"
+"PO-Revision-Date: 2021-10-08 17:53+0000\n"
+"Last-Translator: Rayhan Nabi <rayhanjanam@gmail.com>\n"
+"Language-Team: Bengali (Bangladesh) <https://hosted.weblate.org/projects/"
+"openwrt/luciapplicationsopkg/bn_BD/>\n"
+"Language: bn_BD\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 4.9-dev\n"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
+msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
+msgid ""
+"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
+msgid "Actions"
+msgstr "ক্রিয়া"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
+msgid "Allow overwriting conflicting package files"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
+msgid "Automatically remove unused dependencies"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1218
+msgid "Available"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
+msgid ""
+"Below is a listing of the various configuration files used by <em>opkg</em>. "
+"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
+"custom repository entries. The configuration in the other files may be "
+"changed but is usually not preserved by <em>sysupgrade</em>."
+msgstr ""
+
+#: 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:1150
+msgid "Clear"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+msgid "Configure opkg…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
+msgid "Dependencies"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
+msgid "Description"
+msgstr "বর্ণনা"
+
+#: 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:1142
+msgid "Disk space"
+msgstr ""
+
+#: 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:1172
+msgid "Display LuCI translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
+msgid "Display all available translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
+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:1155
+msgid "Download and install package"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
+msgid "Errors"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
+msgid "Executing package manager"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
+msgid "Filter"
+msgstr "ছাঁকনি"
+
+#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
+msgid "Grant access to opkg management"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1202
+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:1133
+msgid "Install additional software and upgrade existing packages with opkg."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
+msgid "Installed"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
+msgid ""
+"Installing packages from untrusted sources is a potential security risk! "
+"Really attempt to install <em>%h</em>?"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
+msgid "Install…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
+msgid "Loading configuration data…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
+msgid "Loading package information…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+msgid "MD5"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
+msgid "Manually install package"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
+msgid "Needs upgrade"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
+msgid "Next page"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
+msgid "No information available"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
+msgid "No packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
+msgid "No packages matching \"<strong>%h</strong>\"."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
+msgid "Not available"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
+msgid "Not installed"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
+msgid "OK"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
+msgid "OPKG Configuration"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
+msgid "Package name"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
+msgid "Package name or URL…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
+msgid "Previous page"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
+msgid "Really attempt to install <em>%h</em>?"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
+msgid "Remove"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
+msgid "Remove package <em>%h</em>"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
+msgid "Remove…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
+msgid "Require approx. %1024mB size for %d package(s) to install."
+msgstr ""
+
+#: 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: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:508
+msgid "Requires update to %h %h"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
+msgid "Reset"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+msgid "SHA256"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
+msgid "Save"
+msgstr "সংরক্ষণ করুন"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
+msgid "Saving configuration data…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
+msgid "Size"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
+msgid "Size (.ipk)"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
+#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
+msgid "Software"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
+msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
+msgstr ""
+
+#: 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: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: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:1149
+msgid "Type to filter…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
+msgid "Unable to execute <em>opkg %s</em> command: %s"
+msgstr ""
+
+#: 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:910
+msgid "Unable to save %s: %s"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1165
+msgid "Update lists…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
+msgid "Updates"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
+msgid "Upgrade…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1166
+msgid "Upload Package…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1234
+msgid "Version"
+msgstr "সংস্করণ"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
+msgid "Version incompatible"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
+msgid "Waiting for the <em>opkg %h</em> command to complete…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1198
+msgctxt "Display translation packages"
+msgid "all"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
+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:1143
+msgid "unknown"
+msgstr "অজ্ঞাত"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
+msgid "~%1024mB compressed"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
+msgid "~%1024mB installed"
+msgstr ""
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2009-06-10 03:40+0200\n"
+"PO-Revision-Date: 2021-09-17 06:52+0000\n"
+"Last-Translator: Roger Pueyo Centelles <weblate@rogerpueyo.com>\n"
+"Language-Team: Catalan <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationsopkg/ca/>\n"
+"Language: ca\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 4.9-dev\n"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
+msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
+msgid ""
+"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
+msgid "Actions"
+msgstr "Accions"
+
+#: 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:1218
+msgid "Available"
+msgstr "Disponible"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
+msgid ""
+"Below is a listing of the various configuration files used by <em>opkg</em>. "
+"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
+"custom repository entries. The configuration in the other files may be "
+"changed but is usually not preserved by <em>sysupgrade</em>."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js: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:1150
+msgid "Clear"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+#, fuzzy
+msgid "Configure opkg…"
+msgstr "Configuració"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
+msgid "Dependencies"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
+msgid "Description"
+msgstr "Descripció"
+
+#: 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:1142
+msgid "Disk space"
+msgstr ""
+
+#: 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:1172
+msgid "Display LuCI translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
+msgid "Display all available translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
+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:1155
+msgid "Download and install package"
+msgstr "Descarrega i instal·la el paquet"
+
+#: 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:982
+msgid "Executing package manager"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
+msgid "Filter"
+msgstr "Filtre"
+
+#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
+msgid "Grant access to opkg management"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1202
+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:1133
+msgid "Install additional software and upgrade existing packages with opkg."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
+#, fuzzy
+msgid "Installed"
+msgstr "Instal·la"
+
+#: 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:288
+#, fuzzy
+msgid "Install…"
+msgstr "Instal·la"
+
+#: 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:1084
+msgid "Loading package information…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+msgid "MD5"
+msgstr "MD5"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
+#, fuzzy
+msgid "Manually install package"
+msgstr "Descarrega i instal·la el paquet"
+
+#: 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:1227
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
+msgid "Next page"
+msgstr ""
+
+#: 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:355
+#, fuzzy
+msgid "No packages"
+msgstr "Cerca paquet"
+
+#: 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:542
+#, fuzzy
+msgid "Not available"
+msgstr "Total disponible"
+
+#: 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:1158
+msgid "OK"
+msgstr "D'acord"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
+#, fuzzy
+msgid "OPKG Configuration"
+msgstr "Configuració d'OPKG"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
+msgid "Package name"
+msgstr "Nom del paquet"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
+#, fuzzy
+msgid "Package name or URL…"
+msgstr "Nom del paquet"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
+msgid "Previous page"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
+msgid "Really attempt to install <em>%h</em>?"
+msgstr ""
+
+#: 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:943
+msgid "Remove package <em>%h</em>"
+msgstr ""
+
+#: 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:737
+msgid "Require approx. %1024mB size for %d package(s) to install."
+msgstr ""
+
+#: 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: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:508
+msgid "Requires update to %h %h"
+msgstr ""
+
+#: 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:1047
+msgid "SHA256"
+msgstr "SHA256"
+
+#: 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:905
+#, fuzzy
+msgid "Saving configuration data…"
+msgstr "Configuració de dispositiu"
+
+#: 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:1235
+msgid "Size (.ipk)"
+msgstr "Mida (.ipk)"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
+#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
+msgid "Software"
+msgstr "Programari"
+
+#: 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: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: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: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:1149
+msgid "Type to filter…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
+msgid "Unable to execute <em>opkg %s</em> command: %s"
+msgstr ""
+
+#: 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:910
+msgid "Unable to save %s: %s"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1165
+#, fuzzy
+msgid "Update lists…"
+msgstr "Actualitza les llistes"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
+#, fuzzy
+msgid "Updates"
+msgstr "Actualitza les llistes"
+
+#: 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:1166
+msgid "Upload Package…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1234
+msgid "Version"
+msgstr "Versió"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
+msgid "Version incompatible"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
+#, 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:1198
+msgctxt "Display translation packages"
+msgid "all"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
+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:1143
+msgid "unknown"
+msgstr "desconegut"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
+msgid "~%1024mB compressed"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
+msgid "~%1024mB installed"
+msgstr ""
+
+#~ msgid "Free space"
+#~ msgstr "Espai lliure"
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"POT-Creation-Date: \n"
+"PO-Revision-Date: 2023-01-13 15:13+0000\n"
+"Last-Translator: Lukáš Wagner <lukaswagner1@gmail.com>\n"
+"Language-Team: Czech <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationsopkg/cs/>\n"
+"Language: cs\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
+"X-Generator: Weblate 4.15.1-dev\n"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
+msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
+msgid ""
+"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
+msgid "Actions"
+msgstr "Akce"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
+msgid "Allow overwriting conflicting package files"
+msgstr "Povolit přepsání souborů konfliktních balíčků"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
+msgid "Automatically remove unused dependencies"
+msgstr "Automatické odstranění nepoužívaných závislostí"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1218
+msgid "Available"
+msgstr "K dispozici"
+
+#: 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 ""
+"Níže je uveden seznam různých konfiguračních souborů, které <em>opkg</em> "
+"používá. Použijte <em>opkg.conf</em> pro globální nastavení a "
+"<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: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šit"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150
+msgid "Clear"
+msgstr "Prázdný"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+msgid "Configure opkg…"
+msgstr "Nakonfigurujte opkg…"
+
+#: 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:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
+msgid "Description"
+msgstr "Popis"
+
+#: 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:1142
+msgid "Disk space"
+msgstr ""
+
+#: 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:1172
+msgid "Display LuCI translation packages"
+msgstr "Zobrazit balíčky překladů LuCI"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
+msgid "Display all available translation packages"
+msgstr "Zobrazit všechny dostupné balíčky překladů"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
+msgid ""
+"Display base translation packages and translation packages for already "
+"installed languages only"
+msgstr ""
+"Zobrazit základní balíčky překladů a balíčky překladů pro již nainstalované "
+"jazyky"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354
+msgid "Displaying %d-%d of %d"
+msgstr "Zobrazuji %d-%d z %d"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155
+msgid "Download and install package"
+msgstr "Stáhnout a nainstalovat balíček"
+
+#: 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:982
+msgid "Executing package manager"
+msgstr "Spuštění správce balíčků"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
+msgid "Filter"
+msgstr "Filtr"
+
+#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
+msgid "Grant access to opkg management"
+msgstr "Udělit přístup ke správě opkg"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1202
+msgid "Hide all translation packages"
+msgstr "Skrýt všechny balíčky překladů"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066
+msgid "Install"
+msgstr "Instalovat"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1133
+msgid "Install additional software and upgrade existing packages with opkg."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr "Instalovat také navrhované balíčky překladů"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
+msgid "Installed"
+msgstr "Instalováno"
+
+#: 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 ""
+"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:288
+msgid "Install…"
+msgstr "Instalovat…"
+
+#: 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:1084
+msgid "Loading package information…"
+msgstr "Načítání informací o balíčku…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+msgid "MD5"
+msgstr "MD5"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
+msgid "Manually install package"
+msgstr "Ručně nainstalujte balíček"
+
+#: 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:1227
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
+msgid "Next page"
+msgstr "Další stránka"
+
+#: 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:355
+msgid "No packages"
+msgstr "Žádné balíčky"
+
+#: 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:542
+msgid "Not available"
+msgstr "Není dostupný"
+
+#: 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:1158
+msgid "OK"
+msgstr "OK"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
+msgid "OPKG Configuration"
+msgstr "Konfigurace OPKG"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
+msgid "Package name"
+msgstr "Název balíčku"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
+msgid "Package name or URL…"
+msgstr "Název balíčku nebo adresa URLL…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
+msgid "Previous page"
+msgstr "Předchozí stránka"
+
+#: 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:967
+msgid "Remove"
+msgstr "Odstranit"
+
+#: 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:276
+msgid "Remove…"
+msgstr "Odstranit…"
+
+#: 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: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: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: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:373
+msgid "Reset"
+msgstr "Reset"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+msgid "SHA256"
+msgstr "SHA256"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
+msgid "Save"
+msgstr "Uložit"
+
+#: 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: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:1235
+msgid "Size (.ipk)"
+msgstr "Velikost (.ipk)"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
+#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
+msgid "Software"
+msgstr "Software"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr "Navrhované překlady"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr "Navrhované překlady vyžadují přibližně %1024mB dalšího prostoru."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
+msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
+msgstr "Příkaz <em>opkg %h</em> byl označen kódem <code>%d</code>."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
+msgid ""
+"The installed version of package <em>%h</em> is not compatible, require %s "
+"while %s is installed."
+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: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:530
+msgid ""
+"The repository version of package <em>%h</em> is not compatible, require %s "
+"but only %s is available."
+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:1149
+msgid "Type to filter…"
+msgstr "Začněte psát pro filtrování…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
+msgid "Unable to execute <em>opkg %s</em> command: %s"
+msgstr "Nelze provést <em>opkg %s</em> příkaz: %s"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871
+msgid "Unable to read %s: %s"
+msgstr "Nelze přečíst %s: %s"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910
+msgid "Unable to save %s: %s"
+msgstr "Nelze uložit %s: %s"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1165
+msgid "Update lists…"
+msgstr "Aktualizovat seznamy…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
+msgid "Updates"
+msgstr "Aktualizace"
+
+#: 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:1166
+msgid "Upload Package…"
+msgstr "Nahrát balíček…"
+
+#: 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:1234
+msgid "Version"
+msgstr "Verze"
+
+#: 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: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:1198
+msgctxt "Display translation packages"
+msgid "all"
+msgstr "vše"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr "filtrovaný"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
+msgctxt "Display translation packages"
+msgid "none"
+msgstr "žádný"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1143
+msgid "unknown"
+msgstr "neznámý"
+
+#: 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"
+
+#~ msgid "Free space"
+#~ msgstr "Volné místo"
+
+#~ msgid "Overwrite files from other package(s)"
+#~ msgstr "Přepsat soubory z jiných balíčků"
--- /dev/null
+msgid ""
+msgstr ""
+"PO-Revision-Date: 2022-08-05 01:21+0000\n"
+"Last-Translator: drax red <drax@outlook.dk>\n"
+"Language-Team: Danish <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationsopkg/da/>\n"
+"Language: da\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 4.14-dev\n"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
+msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
+msgid ""
+"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
+msgid "Actions"
+msgstr "Handlinger"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
+msgid "Allow overwriting conflicting package files"
+msgstr "Tillad overskrivning af modstridende pakkefiler"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
+msgid "Automatically remove unused dependencies"
+msgstr "Fjern automatisk ubrugte dependencies"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1218
+msgid "Available"
+msgstr "Tilgængelig"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
+msgid ""
+"Below is a listing of the various configuration files used by <em>opkg</em>. "
+"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
+"custom repository entries. The configuration in the other files may be "
+"changed but is usually not preserved by <em>sysupgrade</em>."
+msgstr ""
+"Nedenfor er en liste over de forskellige konfigurationsfiler, der anvendes "
+"af <em>opkg</em>. Brug<em>opkg.conf</em>til globale indstillinger og "
+"<em>customfeeds.conf</em> til brugerdefinerede poster i repositoriet. "
+"Konfigurationen i de andre filer kan ændres, men den bevares normalt ikke af "
+"<em>sysupgrade</em>."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
+msgid "Cancel"
+msgstr "Annuller"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150
+msgid "Clear"
+msgstr "Ryd"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+msgid "Configure opkg…"
+msgstr "Konfigurer opkg…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
+msgid "Dependencies"
+msgstr "Dependencies"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
+msgid "Description"
+msgstr "Beskrivelse"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755
+msgid "Details for package <em>%h</em>"
+msgstr "Detaljer for pakke <em>%h</em>"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142
+msgid "Disk space"
+msgstr ""
+
+#: 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:1172
+msgid "Display LuCI translation packages"
+msgstr "Vis LuCI-oversættelsespakker"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
+msgid "Display all available translation packages"
+msgstr "Vis alle tilgængelige oversættelsespakker"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
+msgid ""
+"Display base translation packages and translation packages for already "
+"installed languages only"
+msgstr ""
+"Vis kun basisoversættelsespakker og oversættelsespakker til allerede "
+"installerede sprog"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354
+msgid "Displaying %d-%d of %d"
+msgstr "Viser %d-%d af %d"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155
+msgid "Download and install package"
+msgstr "Download og installer pakken"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
+msgid "Errors"
+msgstr "Fejl"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
+msgid "Executing package manager"
+msgstr "Udførelse af pakkeadministrator"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
+msgid "Filter"
+msgstr "Filter"
+
+#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
+msgid "Grant access to opkg management"
+msgstr "Giv adgang til opkg administration"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1202
+msgid "Hide all translation packages"
+msgstr "Skjul alle oversættelsespakker"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066
+msgid "Install"
+msgstr "Installer"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1133
+msgid "Install additional software and upgrade existing packages with opkg."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr "Installer også de foreslåede oversættelsespakker"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
+msgid "Installed"
+msgstr "Installeret"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
+msgid ""
+"Installing packages from untrusted sources is a potential security risk! "
+"Really attempt to install <em>%h</em>?"
+msgstr ""
+"Installation af pakker fra kilder, der ikke er tillid til, er en potentiel "
+"sikkerhedsrisiko! Forsøger du virkelig at installere <em>%h</em>?"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
+msgid "Install…"
+msgstr "Installer…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
+msgid "Loading configuration data…"
+msgstr "Indlæser konfigurationsdata…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
+msgid "Loading package information…"
+msgstr "Indlæser pakkeoplysninger…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+msgid "MD5"
+msgstr "MD5"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
+msgid "Manually install package"
+msgstr "Installer pakke manuelt"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
+msgid "Needs upgrade"
+msgstr "Skal opgraderes"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
+msgid "Next page"
+msgstr "Næste side"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
+msgid "No information available"
+msgstr "Ingen oplysninger tilgængelige"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
+msgid "No packages"
+msgstr "Ingen pakker"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
+msgid "No packages matching \"<strong>%h</strong>\"."
+msgstr "Ingen pakker, der matcher \"<strong>%h</strong>\"."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
+msgid "Not available"
+msgstr "Ikke tilgængelig"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
+msgid "Not installed"
+msgstr "Ikke installeret"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
+msgid "OK"
+msgstr "OK"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
+msgid "OPKG Configuration"
+msgstr "OPKG konfiguration"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
+msgid "Package name"
+msgstr "Pakkenavn"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
+msgid "Package name or URL…"
+msgstr "Pakkenavn eller URL…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
+msgid "Previous page"
+msgstr "Forrige side"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
+msgid "Really attempt to install <em>%h</em>?"
+msgstr "Forsøger du virkelig at installere <em>%h</em>?"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
+msgid "Remove"
+msgstr "Fjern"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
+msgid "Remove package <em>%h</em>"
+msgstr "Fjern pakke <em>%h</em>"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
+msgid "Remove…"
+msgstr "Fjern…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
+msgid "Require approx. %1024mB size for %d package(s) to install."
+msgstr "Kræver ca. %1024mB størrelse for %d pakke(r) at installere."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
+msgid "Require version %h %h, installed %h"
+msgstr "Kræver version %h %h, installeret %h"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540
+msgid ""
+"Required dependency package <em>%h</em> is not available in any repository."
+msgstr ""
+"Påkrævet dependency pakke <em>%h</em> er ikke tilgængelig i noget repository."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508
+msgid "Requires update to %h %h"
+msgstr "Kræver opdatering til %h %h"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
+msgid "Reset"
+msgstr "Nulstil"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+msgid "SHA256"
+msgstr "SHA256"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
+msgid "Save"
+msgstr "Gem"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
+msgid "Saving configuration data…"
+msgstr "Gemmer konfigurationsdata…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
+msgid "Size"
+msgstr "Størrelse"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
+msgid "Size (.ipk)"
+msgstr "Størrelse (.ipk)"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
+#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
+msgid "Software"
+msgstr "Software"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr "Forslag til oversættelser"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr "Foreslåede oversættelser kræver ca. %1024mB ekstra plads."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
+msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
+msgstr "Kommandoen <em>opkg %h</em> mislykkedes med koden <code>%d</code>."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
+msgid ""
+"The installed version of package <em>%h</em> is not compatible, require %s "
+"while %s is installed."
+msgstr ""
+"Den installerede version af pakken <em>%h</em> er ikke kompatibel, kræver %s "
+"mens %s er installeret."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833
+msgid "The package <em>%h</em> is not available in any configured repository."
+msgstr ""
+"Pakken <em>%h</em> er ikke tilgængelig i noget konfigureret repository."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530
+msgid ""
+"The repository version of package <em>%h</em> is not compatible, require %s "
+"but only %s is available."
+msgstr ""
+"repository version af pakken <em>%h</em> er ikke kompatibel, kræver %s, men "
+"kun %s er tilgængelig."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
+msgid "Type to filter…"
+msgstr "Skriv for at filtrere…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
+msgid "Unable to execute <em>opkg %s</em> command: %s"
+msgstr "Kan ikke udføre <em>opkg %s</em> kommando: %s"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871
+msgid "Unable to read %s: %s"
+msgstr "Kan ikke læse %s: %s"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910
+msgid "Unable to save %s: %s"
+msgstr "Kan ikke gemme %s: %s"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1165
+msgid "Update lists…"
+msgstr "Opdater lister…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
+msgid "Updates"
+msgstr "Opdateringer"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
+msgid "Upgrade…"
+msgstr "Opgrader…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1166
+msgid "Upload Package…"
+msgstr "Upload pakke…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1234
+msgid "Version"
+msgstr "Version"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
+msgid "Version incompatible"
+msgstr "Version inkompatibel"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
+msgid "Waiting for the <em>opkg %h</em> command to complete…"
+msgstr "Venter på at kommandoen <em>opkg %h</em> afsluttes…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1198
+msgctxt "Display translation packages"
+msgid "all"
+msgstr "alle"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr "filtreret"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
+msgctxt "Display translation packages"
+msgid "none"
+msgstr "ingen"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1143
+msgid "unknown"
+msgstr "ukendt"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
+msgid "~%1024mB compressed"
+msgstr "~%1024mB komprimeret"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
+msgid "~%1024mB installed"
+msgstr "~%1024mB installeret"
+
+#~ msgid "Free space"
+#~ msgstr "Ledig plads"
+
+#~ msgid "Overwrite files from other package(s)"
+#~ msgstr "Overskriv filer fra andre pakke(r)"
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2009-05-26 17:57+0200\n"
+"PO-Revision-Date: 2024-03-23 00:13+0000\n"
+"Last-Translator: ssantos <ssantos@web.de>\n"
+"Language-Team: German <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationsopkg/de/>\n"
+"Language: de\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 5.5-dev\n"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
+msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
+msgstr "%s benutzt (%1024mB von %1024mB benutzt, %1024mB frei)"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
+msgid ""
+"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
+msgstr ""
+"<strong>Warnung!</strong> Paketoperationen können <a %s>Ihr System "
+"zerstören</a>."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
+msgid "Actions"
+msgstr "Aktionen"
+
+#: 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:1218
+msgid "Available"
+msgstr "Verfügbar"
+
+#: 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 ""
+"Dies ist eine Auflistung der verschiedenen von <em>opkg</em> genutzten "
+"Konfigurationsdateien. Die <em>opkg.conf</em>-Datei sollte für globale "
+"Einstellungen und die <em>customfeeds.conf</em>-Datei für benutzerdefinierte "
+"Repository-Einträge verwendet werden. Der Inhalt der anderen "
+"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: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:1150
+msgid "Clear"
+msgstr "Zurücksetzen"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+msgid "Configure opkg…"
+msgstr "Konfiguriere opkg…"
+
+#: 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:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
+msgid "Description"
+msgstr "Beschreibung"
+
+#: 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:1142
+msgid "Disk space"
+msgstr "Plattenplatz"
+
+#: 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:1172
+msgid "Display LuCI translation packages"
+msgstr "LuCI Sprachpakete anzeigen"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
+msgid "Display all available translation packages"
+msgstr "Alle verfügbaren Sprachpakete anzeigen"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
+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:1155
+msgid "Download and install package"
+msgstr "Paket herunterladen und installieren"
+
+#: 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:982
+msgid "Executing package manager"
+msgstr "Paketmanager ausführen"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
+msgid "Filter"
+msgstr "Filter"
+
+#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
+msgid "Grant access to opkg management"
+msgstr "Zugriff auf die opkg-Verwaltung gewähren"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1202
+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:1133
+msgid "Install additional software and upgrade existing packages with opkg."
+msgstr ""
+"Installieren Sie zusätzliche Software und aktualisieren Sie bestehende "
+"Pakete mit opkg."
+
+#: 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:1219
+msgid "Installed"
+msgstr "Installiert"
+
+#: 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 ""
+"Die Installation von Paketen aus unbekannten Quellen ist ein mögliches "
+"Sicherheitsrisiko! Soll wirklich versucht werden, <em>%h</em> zu "
+"installieren?"
+
+#: 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:857
+msgid "Loading configuration data…"
+msgstr "Lade Konfigurationsdaten…"
+
+#: 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:1046
+msgid "MD5"
+msgstr "MD5"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
+msgid "Manually install package"
+msgstr "Paket manuell installieren"
+
+#: 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:1227
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
+msgid "Next page"
+msgstr "Nächste Seite"
+
+#: 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:355
+msgid "No packages"
+msgstr "Keine Pakete"
+
+#: 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:542
+msgid "Not available"
+msgstr "Nicht verfügbar"
+
+#: 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:1158
+msgid "OK"
+msgstr "OK"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
+msgid "OPKG Configuration"
+msgstr "OPKG-Konfiguration"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
+msgid "Package name"
+msgstr "Paketname"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
+msgid "Package name or URL…"
+msgstr "Paketname oder URL…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
+msgid "Previous page"
+msgstr "Vorige Seite"
+
+#: 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:967
+msgid "Remove"
+msgstr "Entfernen"
+
+#: 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:276
+msgid "Remove…"
+msgstr "Entfernen…"
+
+#: 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)."
+
+#: 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: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: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:373
+msgid "Reset"
+msgstr "Zurücksetzen"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+msgid "SHA256"
+msgstr "SHA256"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
+msgid "Save"
+msgstr "Speichern"
+
+#: 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: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:1235
+msgid "Size (.ipk)"
+msgstr "Größe (.ipk)"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
+#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
+msgid "Software"
+msgstr "Paketverwaltung"
+
+#: 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:513
+msgid ""
+"The installed version of package <em>%h</em> is not compatible, require %s "
+"while %s is installed."
+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: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:530
+msgid ""
+"The repository version of package <em>%h</em> is not compatible, require %s "
+"but only %s is available."
+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:1149
+msgid "Type to filter…"
+msgstr "Tippen zum Filtern…"
+
+#: 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:871
+msgid "Unable to read %s: %s"
+msgstr "Kann %s nicht lesen: %s"
+
+#: 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:1165
+msgid "Update lists…"
+msgstr "Listen aktualisieren…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
+msgid "Updates"
+msgstr "Aktualisierungen"
+
+#: 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:1166
+msgid "Upload Package…"
+msgstr "Paket hochladen…"
+
+#: 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:1234
+msgid "Version"
+msgstr "Version"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
+msgid "Version incompatible"
+msgstr "Version inkompatibel"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
+msgid "Waiting for the <em>opkg %h</em> command to complete…"
+msgstr "Warte auf das <em>opkg %h</em> Kommando…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1198
+msgctxt "Display translation packages"
+msgid "all"
+msgstr "alle"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr "gefiltert"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
+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:1143
+msgid "unknown"
+msgstr "unbekannt"
+
+#: 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"
+
+#~ msgid "Free space"
+#~ msgstr "Freier Platz"
+
+#~ msgid "Overwrite files from other package(s)"
+#~ msgstr "Überschreiben von Dateien anderer Pakete erlauben"
+
+#~ msgid ""
+#~ "Require version %h %h,\n"
+#~ "installed %h"
+#~ msgstr ""
+#~ "Benötige Version %h %h,\n"
+#~ "aber %h installiert"
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2009-06-10 03:40+0200\n"
+"PO-Revision-Date: 2020-01-14 15:22+0000\n"
+"Last-Translator: Franco Castillo <castillofrancodamian@gmail.com>\n"
+"Language-Team: Greek <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationsopkg/el/>\n"
+"Language: el\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 3.11-dev\n"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
+msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
+msgid ""
+"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
+msgid "Actions"
+msgstr "Ενέργειες"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
+msgid "Allow overwriting conflicting package files"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
+msgid "Automatically remove unused dependencies"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1218
+msgid "Available"
+msgstr "Διαθέσιμο"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
+msgid ""
+"Below is a listing of the various configuration files used by <em>opkg</em>. "
+"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
+"custom repository entries. The configuration in the other files may be "
+"changed but is usually not preserved by <em>sysupgrade</em>."
+msgstr ""
+
+#: 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:1150
+msgid "Clear"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+#, fuzzy
+msgid "Configure opkg…"
+msgstr "Παραμετροποίηση"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
+msgid "Dependencies"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
+msgid "Description"
+msgstr "Περιγραφή"
+
+#: 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:1142
+msgid "Disk space"
+msgstr ""
+
+#: 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:1172
+msgid "Display LuCI translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
+msgid "Display all available translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
+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:1155
+msgid "Download and install package"
+msgstr "Κατέβασμα και εγκατάσταση πακέτου"
+
+#: 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:982
+msgid "Executing package manager"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
+msgid "Filter"
+msgstr "Φίλτρο"
+
+#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
+msgid "Grant access to opkg management"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1202
+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:1133
+msgid "Install additional software and upgrade existing packages with opkg."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
+#, fuzzy
+msgid "Installed"
+msgstr "Εγκατάσταση"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
+msgid ""
+"Installing packages from untrusted sources is a potential security risk! "
+"Really attempt to install <em>%h</em>?"
+msgstr ""
+
+#: 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:857
+#, fuzzy
+msgid "Loading configuration data…"
+msgstr "Μετάβαση στη σχετική σελίδα ρυθμίσεων"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
+msgid "Loading package information…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+msgid "MD5"
+msgstr "MD5"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
+#, fuzzy
+msgid "Manually install package"
+msgstr "Κατέβασμα και εγκατάσταση πακέτου"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
+msgid "Needs upgrade"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
+msgid "Next page"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
+msgid "No information available"
+msgstr "Δεν υπάρχουν πληροφορίες διαθέσιμες"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
+#, fuzzy
+msgid "No packages"
+msgstr "Εύρεση πακέτου"
+
+#: 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:542
+#, fuzzy
+msgid "Not available"
+msgstr "Διαθέσιμο Συνολικά"
+
+#: 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:1158
+msgid "OK"
+msgstr "Εντάξει"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
+#, fuzzy
+msgid "OPKG Configuration"
+msgstr "Παραμετροποίηση OPKG"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
+msgid "Package name"
+msgstr "Όνομα πακέτου"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
+#, fuzzy
+msgid "Package name or URL…"
+msgstr "Όνομα πακέτου"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
+msgid "Previous page"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
+msgid "Really attempt to install <em>%h</em>?"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
+msgid "Remove"
+msgstr "Αφαίρεση"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
+msgid "Remove package <em>%h</em>"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
+msgid "Remove…"
+msgstr "Αφαίρεση…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
+msgid "Require approx. %1024mB size for %d package(s) to install."
+msgstr ""
+
+#: 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: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:508
+msgid "Requires update to %h %h"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
+msgid "Reset"
+msgstr "Αρχικοποίηση"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+msgid "SHA256"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
+msgid "Save"
+msgstr "Αποθήκευση"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
+#, fuzzy
+msgid "Saving configuration data…"
+msgstr "Παραμετροποίηση Συσκευής"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
+msgid "Size"
+msgstr "Μέγεθος"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
+msgid "Size (.ipk)"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
+#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
+msgid "Software"
+msgstr "Λογισμικό"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
+msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
+msgstr ""
+
+#: 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: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: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:1149
+msgid "Type to filter…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
+msgid "Unable to execute <em>opkg %s</em> command: %s"
+msgstr ""
+
+#: 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:910
+msgid "Unable to save %s: %s"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1165
+msgid "Update lists…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
+msgid "Updates"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
+msgid "Upgrade…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1166
+msgid "Upload Package…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1234
+msgid "Version"
+msgstr "Έκδοση"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
+msgid "Version incompatible"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
+msgid "Waiting for the <em>opkg %h</em> command to complete…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1198
+msgctxt "Display translation packages"
+msgid "all"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
+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:1143
+msgid "unknown"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
+msgid "~%1024mB compressed"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
+msgid "~%1024mB installed"
+msgstr ""
+
+#~ msgid "Free space"
+#~ msgstr "Ελεύθερος χώρος"
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2009-06-10 03:40+0200\n"
+"PO-Revision-Date: 2023-11-30 14:34+0000\n"
+"Last-Translator: rygle <pittos@post.com>\n"
+"Language-Team: English <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationsopkg/en/>\n"
+"Language: en\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 5.3-dev\n"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
+msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
+msgid ""
+"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
+msgid "Actions"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
+msgid "Allow overwriting conflicting package files"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
+msgid "Automatically remove unused dependencies"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1218
+msgid "Available"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
+msgid ""
+"Below is a listing of the various configuration files used by <em>opkg</em>. "
+"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
+"custom repository entries. The configuration in the other files may be "
+"changed but is usually not preserved by <em>sysupgrade</em>."
+msgstr ""
+
+#: 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"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150
+msgid "Clear"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+msgid "Configure opkg…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
+msgid "Dependencies"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
+msgid "Description"
+msgstr ""
+
+#: 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:1142
+msgid "Disk space"
+msgstr ""
+
+#: 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:1172
+msgid "Display LuCI translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
+msgid "Display all available translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
+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:1155
+msgid "Download and install package"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
+msgid "Errors"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
+msgid "Executing package manager"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
+msgid "Filter"
+msgstr ""
+
+#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
+msgid "Grant access to opkg management"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1202
+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:1133
+msgid "Install additional software and upgrade existing packages with opkg."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
+msgid "Installed"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
+msgid ""
+"Installing packages from untrusted sources is a potential security risk! "
+"Really attempt to install <em>%h</em>?"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
+msgid "Install…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
+msgid "Loading configuration data…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
+msgid "Loading package information…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+msgid "MD5"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
+msgid "Manually install package"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
+msgid "Needs upgrade"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
+msgid "Next page"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
+msgid "No information available"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
+msgid "No packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
+msgid "No packages matching \"<strong>%h</strong>\"."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
+msgid "Not available"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
+msgid "Not installed"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
+msgid "OK"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
+msgid "OPKG Configuration"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
+msgid "Package name"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
+msgid "Package name or URL…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
+msgid "Previous page"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
+msgid "Really attempt to install <em>%h</em>?"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
+msgid "Remove"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
+msgid "Remove package <em>%h</em>"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
+msgid "Remove…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
+msgid "Require approx. %1024mB size for %d package(s) to install."
+msgstr ""
+
+#: 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: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:508
+msgid "Requires update to %h %h"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
+msgid "Reset"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+msgid "SHA256"
+msgstr "SHA256"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
+msgid "Save"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
+msgid "Saving configuration data…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
+msgid "Size"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
+msgid "Size (.ipk)"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
+#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
+msgid "Software"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
+msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
+msgstr ""
+
+#: 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: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: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:1149
+msgid "Type to filter…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
+msgid "Unable to execute <em>opkg %s</em> command: %s"
+msgstr ""
+
+#: 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:910
+msgid "Unable to save %s: %s"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1165
+msgid "Update lists…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
+msgid "Updates"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
+msgid "Upgrade…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1166
+msgid "Upload Package…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1234
+msgid "Version"
+msgstr "Version"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
+msgid "Version incompatible"
+msgstr ""
+
+#: 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:1198
+msgctxt "Display translation packages"
+msgid "all"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
+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:1143
+msgid "unknown"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
+msgid "~%1024mB compressed"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
+msgid "~%1024mB installed"
+msgstr ""
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2009-06-10 03:41+0200\n"
+"PO-Revision-Date: 2024-07-17 00:19+0000\n"
+"Last-Translator: brodrigueznu <brodrigueznu@hotmail.com>\n"
+"Language-Team: Spanish <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationsopkg/es/>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 5.7-dev\n"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
+msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
+msgstr "%s usados (%1024mB usados de %1024mB, %1024mB libres)"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
+msgid ""
+"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
+msgstr ""
+"<strong>¡Advertencia!</strong> Las operaciones de paquetes pueden <a "
+"%s>romper su sistema</a>."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
+msgid "Actions"
+msgstr "Acciones"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
+msgid "Allow overwriting conflicting package files"
+msgstr "Permitir sobrescribir archivos de paquetes en conflicto"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
+msgid "Automatically remove unused dependencies"
+msgstr "Eliminar automáticamente las dependencias no utilizadas"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1218
+msgid "Available"
+msgstr "Disponible"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
+msgid ""
+"Below is a listing of the various configuration files used by <em>opkg</em>. "
+"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
+"custom repository entries. The configuration in the other files may be "
+"changed but is usually not preserved by <em>sysupgrade</em>."
+msgstr ""
+"A continuación se muestra una lista de los diversos archivos de "
+"configuración utilizados por <em>opkg</em>. Use <em>opkg.conf</em> para la "
+"configuración global y <em>customfeeds.conf</em> para entradas de "
+"repositorio personalizadas. La configuración en los otros archivos puede "
+"cambiarse, pero por lo general no se conserva mediante <em>sysupgrade</em>."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js: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:1150
+msgid "Clear"
+msgstr "Limpiar"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+msgid "Configure opkg…"
+msgstr "Configurar opkg…"
+
+#: 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:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
+msgid "Description"
+msgstr "Descripción"
+
+#: 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:1142
+msgid "Disk space"
+msgstr "Espacio en disco"
+
+#: 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:1172
+msgid "Display LuCI translation packages"
+msgstr "Mostrar paquetes de traducción de LuCI"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
+msgid "Display all available translation packages"
+msgstr "Mostrar todos los paquetes de traducción disponibles"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
+msgid ""
+"Display base translation packages and translation packages for already "
+"installed languages only"
+msgstr ""
+"Mostrar paquetes de traducción base y paquetes de traducción solo para "
+"idiomas ya instalados"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354
+msgid "Displaying %d-%d of %d"
+msgstr "Mostrando %d-%d de %d"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155
+msgid "Download and install package"
+msgstr "Descargar e instalar paquete"
+
+#: 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:982
+msgid "Executing package manager"
+msgstr "Ejecutando el gestor de paquetes"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
+msgid "Filter"
+msgstr "Filtro"
+
+#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
+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:1202
+msgid "Hide all translation packages"
+msgstr "Ocultar todos los paquetes de traducción"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066
+msgid "Install"
+msgstr "Instalar"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1133
+msgid "Install additional software and upgrade existing packages with opkg."
+msgstr ""
+"Instale software adicional y actualice los paquetes existentes con opkg."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr "Instalar también los paquetes de traducción sugeridos"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
+msgid "Installed"
+msgstr "Instalado"
+
+#: 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 ""
+"¡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:288
+msgid "Install…"
+msgstr "Instalar…"
+
+#: 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:1084
+msgid "Loading package information…"
+msgstr "Cargando información del paquete…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+msgid "MD5"
+msgstr "MD5"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
+msgid "Manually install package"
+msgstr "Instalar manualmente el paquete"
+
+#: 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:1227
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
+msgid "Next page"
+msgstr "Página siguiente"
+
+#: 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:355
+msgid "No packages"
+msgstr "Sin paquetes"
+
+#: 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:542
+msgid "Not available"
+msgstr "No disponible"
+
+#: 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:1158
+msgid "OK"
+msgstr "Aceptar"
+
+#: 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:1233
+msgid "Package name"
+msgstr "Nombre del paquete"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
+msgid "Package name or URL…"
+msgstr "Nombre de paquete o URL…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
+msgid "Previous page"
+msgstr "Página anterior"
+
+#: 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:967
+msgid "Remove"
+msgstr "Eliminar"
+
+#: 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:276
+msgid "Remove…"
+msgstr "Desinstalar…"
+
+#: 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: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: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: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:373
+msgid "Reset"
+msgstr "Restablecer"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+msgid "SHA256"
+msgstr "SHA256"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
+msgid "Save"
+msgstr "Guardar"
+
+#: 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: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:1235
+msgid "Size (.ipk)"
+msgstr "Tamaño (.ipk)"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
+#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
+msgid "Software"
+msgstr "Software"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr "Traducciones sugeridas"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr ""
+"Las traducciones sugeridas requieren aprox. %1024mB de espacio adicional."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
+msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
+msgstr "El comando <em>opkg %h</em> falló con el código <code>%d</code>."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
+msgid ""
+"The installed version of package <em>%h</em> is not compatible, require %s "
+"while %s is installed."
+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: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:530
+msgid ""
+"The repository version of package <em>%h</em> is not compatible, require %s "
+"but only %s is available."
+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:1149
+msgid "Type to filter…"
+msgstr "Escriba para filtrar…"
+
+#: 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: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: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:1165
+msgid "Update lists…"
+msgstr "Actualizar listas…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
+msgid "Updates"
+msgstr "Actualizaciones"
+
+#: 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:1166
+msgid "Upload Package…"
+msgstr "Subir paquete…"
+
+#: 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:1234
+msgid "Version"
+msgstr "Versión"
+
+#: 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: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:1198
+msgctxt "Display translation packages"
+msgid "all"
+msgstr "todos"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr "filtrado"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
+msgctxt "Display translation packages"
+msgid "none"
+msgstr "ninguno"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1143
+msgid "unknown"
+msgstr "desconocido"
+
+#: 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"
+
+#~ msgid "Free space"
+#~ msgstr "Espacio libre"
+
+#~ msgid "Overwrite files from other package(s)"
+#~ msgstr "Sobrescribir archivos de otro/s paquete/s"
+
+#~ msgid ""
+#~ "Require version %h %h,\n"
+#~ "installed %h"
+#~ msgstr ""
+#~ "Requiere versión %h %h,\n"
+#~ "instalado %h"
--- /dev/null
+msgid ""
+msgstr ""
+"PO-Revision-Date: 2024-10-19 18:21+0000\n"
+"Last-Translator: Danial Behzadi <dani.behzi@ubuntu.com>\n"
+"Language-Team: Persian <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationsopkg/fa/>\n"
+"Language: fa\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n > 1;\n"
+"X-Generator: Weblate 5.8-rc\n"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
+msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
+msgstr "%s استفاده شده (%1024mB از %1024mB استفاده شده. %1024mB آزاد)"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
+msgid ""
+"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
+msgstr ""
+"<strong>هشدار!</strong> عملیات بسته میتواند <a %s>سامانهتان را خراب کند</a>."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
+msgid "Actions"
+msgstr "کنشها"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
+msgid "Allow overwriting conflicting package files"
+msgstr "بازنویسی فایل های بسته متضاد را مجاز کنید"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
+msgid "Automatically remove unused dependencies"
+msgstr "حذف اتوماتیک پیش نیازهای بدون استفاده"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1218
+msgid "Available"
+msgstr "موجود"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
+msgid ""
+"Below is a listing of the various configuration files used by <em>opkg</em>. "
+"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
+"custom repository entries. The configuration in the other files may be "
+"changed but is usually not preserved by <em>sysupgrade</em>."
+msgstr ""
+"در زیر فهرستی از فایل های پیکربندی مختلف مورد استفاده توسط <em>opkg</em> "
+"است. استفاده از <em>opkg.conf</em> برای تنظیمات جهانی و <em>customfeeds."
+"conf</em> برای ورودی های مخزن سفارشی است. پیکربندی در فایل های دیگر ممکن است "
+"تغییر کند اما معمولاً توسط <em>sysupgrade</em> حفظ نمی شود."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
+msgid "Cancel"
+msgstr "لغو"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150
+msgid "Clear"
+msgstr "پاک کردن"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+msgid "Configure opkg…"
+msgstr "پیکربندی opkg…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
+msgid "Dependencies"
+msgstr "وابستگی ها"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
+msgid "Description"
+msgstr "شرح"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755
+msgid "Details for package <em>%h</em>"
+msgstr "جزئیات مربوط به بسته بندی <em>%h</em>"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142
+msgid "Disk space"
+msgstr "فضای ذخیره سازی"
+
+#: 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:1172
+msgid "Display LuCI translation packages"
+msgstr "نمایش بسته های ترجمه LuCI"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
+msgid "Display all available translation packages"
+msgstr "نمایش همه موارد موجود در بسته های ترجمه"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
+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:1155
+msgid "Download and install package"
+msgstr "دانلود و نصب بسته"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
+msgid "Errors"
+msgstr "خطاها"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
+msgid "Executing package manager"
+msgstr "در حال اجرای مدیر بسته"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
+msgid "Filter"
+msgstr "پالایه"
+
+#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
+msgid "Grant access to opkg management"
+msgstr "اعطای دسترسی به مدیریت opkg"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1202
+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:1133
+msgid "Install additional software and upgrade existing packages with opkg."
+msgstr "نصب نرمافزارهای اضافی و ارتقای بستههای موجود با opkg."
+
+#: 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:1219
+msgid "Installed"
+msgstr "نصب شد"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
+msgid ""
+"Installing packages from untrusted sources is a potential security risk! "
+"Really attempt to install <em>%h</em>?"
+msgstr ""
+"نصب بسته ها از منابع نامعتبر یک خطر امنیتی بالقوه است! آیا واقعاً سعی میکنید "
+"<em>%h</em> را نصب کنید؟"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
+msgid "Install…"
+msgstr "نصب…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
+msgid "Loading configuration data…"
+msgstr "در حال بارگیری داده های پیکربندی…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
+msgid "Loading package information…"
+msgstr "در حال بارگیری اطلاعات بسته…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+msgid "MD5"
+msgstr "MD5"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
+msgid "Manually install package"
+msgstr "بسته را به صورت دستی نصب کنید"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
+msgid "Needs upgrade"
+msgstr "نیاز به ارتقا دارد"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
+msgid "Next page"
+msgstr "صفحه بعد"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
+msgid "No information available"
+msgstr "اطلاعاتی در دسترس نیست"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
+msgid "No packages"
+msgstr "بدون بسته"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
+msgid "No packages matching \"<strong>%h</strong>\"."
+msgstr "هیچ بسته ای مطابق با «<strong>%h</strong>» وجود ندارد."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
+msgid "Not available"
+msgstr "در دسترس نیست"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
+msgid "Not installed"
+msgstr "نصب نشده است"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
+msgid "OK"
+msgstr "تایید"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
+msgid "OPKG Configuration"
+msgstr "پیکربندی OPKG"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
+msgid "Package name"
+msgstr "نام بسته"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
+msgid "Package name or URL…"
+msgstr "نام بسته یا نشانی وب…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
+msgid "Previous page"
+msgstr "صفحه قبلی"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
+msgid "Really attempt to install <em>%h</em>?"
+msgstr "آیا واقعاً سعی میکنید <em>%h</em> را نصب کنید؟"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
+msgid "Remove"
+msgstr "برداشتن"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
+msgid "Remove package <em>%h</em>"
+msgstr "بسته <em>%h</em> را حذف کنید"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
+msgid "Remove…"
+msgstr "حذف…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
+msgid "Require approx. %1024mB size for %d package(s) to install."
+msgstr "نیاز به حدود اندازه %1024 مگابایت برای %d بسته(های) برای نصب."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
+msgid "Require version %h %h, installed %h"
+msgstr "نیاز به نسخه %h% .h %h نصب شده است"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540
+msgid ""
+"Required dependency package <em>%h</em> is not available in any repository."
+msgstr "بسته وابستگی مورد نیاز <em>%h</em> در هیچ مخزنی موجود نیست."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508
+msgid "Requires update to %h %h"
+msgstr "نیاز به بروز رسانی به %h %h"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
+msgid "Reset"
+msgstr "بازنشانی"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+msgid "SHA256"
+msgstr "SHA256"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
+msgid "Save"
+msgstr "ذخیره"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
+msgid "Saving configuration data…"
+msgstr "در حال ذخیره داده های پیکربندی…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
+msgid "Size"
+msgstr "اندازه"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
+msgid "Size (.ipk)"
+msgstr "اندازه (ipk.)"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
+#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
+msgid "Software"
+msgstr "نرم افزار"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr "ترجمه های پیشنهادی"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr "ترجمه های پیشنهادی نیاز به فضای اضافی ٪1024mB دارند."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
+msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
+msgstr "فرمان <em>opkg %h</em> با کد <code>%d</code> ناموفق بود."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
+msgid ""
+"The installed version of package <em>%h</em> is not compatible, require %s "
+"while %s is installed."
+msgstr ""
+"نسخه نصب شده بسته <em>%h</em> سازگار نیست، تا زمانی که %s نصب شده باشد به %s "
+"نیاز دارید."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833
+msgid "The package <em>%h</em> is not available in any configured repository."
+msgstr "بسته <em>%h</em> در هیچ مخزن پیکربندی شده ای موجود نیست."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530
+msgid ""
+"The repository version of package <em>%h</em> is not compatible, require %s "
+"but only %s is available."
+msgstr ""
+"نسخه مخزن بسته <em>%h</em> سازگار نیست، به %s نیاز دارد اما فقط %s موجود است."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
+msgid "Type to filter…"
+msgstr "برای فیلتر کردن تایپ کنید …"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
+msgid "Unable to execute <em>opkg %s</em> command: %s"
+msgstr "فرمان <em>opkg %s</em> را نمیتوان اجرا کرد: %s"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871
+msgid "Unable to read %s: %s"
+msgstr "قادر به خواندن %s: %s نیست"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910
+msgid "Unable to save %s: %s"
+msgstr "قادر به ذخیره %s: %s نیست"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1165
+msgid "Update lists…"
+msgstr "به روز رسانی لیست ها…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
+msgid "Updates"
+msgstr "به روز رسانی ها"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
+msgid "Upgrade…"
+msgstr "ارتقا…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1166
+msgid "Upload Package…"
+msgstr "آپلود بسته…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1234
+msgid "Version"
+msgstr "نسخه"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
+msgid "Version incompatible"
+msgstr "نسخه ناسازگار است"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
+msgid "Waiting for the <em>opkg %h</em> command to complete…"
+msgstr "در انتظار تکمیل شدن دستور <em>opkg %h</em>…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1198
+msgctxt "Display translation packages"
+msgid "all"
+msgstr "همه"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr "فیلتر شده"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
+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:1143
+msgid "unknown"
+msgstr "ناشناخته"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
+msgid "~%1024mB compressed"
+msgstr "~% 1024 مگابایت فشرده شده است"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
+msgid "~%1024mB installed"
+msgstr "~% 1024 مگابایت نصب شده است"
+
+#~ msgid "Free space"
+#~ msgstr "فضای خالی"
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2009-06-10 03:40+0200\n"
+"PO-Revision-Date: 2023-10-18 05:43+0000\n"
+"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n"
+"Language-Team: Finnish <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationsopkg/fi/>\n"
+"Language: fi\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 5.1\n"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
+msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
+msgid ""
+"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
+msgid "Actions"
+msgstr "Toiminnot"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
+msgid "Allow overwriting conflicting package files"
+msgstr "Salli ristiriitoja aiheuttavien pakettien ylikirjoittaminen"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
+msgid "Automatically remove unused dependencies"
+msgstr "Poista tarpeettomat riippuvuudet automaattisesti"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1218
+msgid "Available"
+msgstr "Saatavilla"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
+msgid ""
+"Below is a listing of the various configuration files used by <em>opkg</em>. "
+"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
+"custom repository entries. The configuration in the other files may be "
+"changed but is usually not preserved by <em>sysupgrade</em>."
+msgstr ""
+"Alla on luettelo <em>opkg</em>:n käyttämistä määritystiedostoista. Käytä "
+"<em>opkg.conf</em>-tiedostoa yleisiä asetuksia varten ja <em>customfeeds."
+"conf</em>-tiedostoa mukautettujen arkistojen merkinnöille. Voit toki muuttaa "
+"myös muita tiedostoja, mutta <em>sysupgrade</em> ei yleensä säilytä "
+"muutoksia."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
+msgid "Cancel"
+msgstr "Peruuta"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150
+msgid "Clear"
+msgstr "Tyhjennä"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+msgid "Configure opkg…"
+msgstr "Määritä opkg…"
+
+#: 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:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
+msgid "Description"
+msgstr "Kuvaus"
+
+#: 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:1142
+msgid "Disk space"
+msgstr ""
+
+#: 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:1172
+msgid "Display LuCI translation packages"
+msgstr "Näytä LuCI:n kielikäännöspaketit"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
+msgid "Display all available translation packages"
+msgstr "Näytä kaikki saatavilla olevat kielikäännöspaketit"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
+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:1155
+msgid "Download and install package"
+msgstr "Lataa ja asenna paketti"
+
+#: 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:982
+msgid "Executing package manager"
+msgstr "Suoritetaan paketinhallintaa"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
+msgid "Filter"
+msgstr "Suodatin"
+
+#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
+msgid "Grant access to opkg management"
+msgstr "Salli pääsy pakettiasennusten hallintaan (opkg)"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1202
+msgid "Hide all translation packages"
+msgstr "Piilota kaikki kielikäännöspaketit"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066
+msgid "Install"
+msgstr "Asenna"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1133
+msgid "Install additional software and upgrade existing packages with opkg."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr "Asenna myös ehdotetut kielikäännöspaketit"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
+msgid "Installed"
+msgstr "Asennettu"
+
+#: 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 ""
+"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:288
+msgid "Install…"
+msgstr "Asenna…"
+
+#: 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:1084
+msgid "Loading package information…"
+msgstr "Ladataan paketin tietoja…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+msgid "MD5"
+msgstr "MD5"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
+msgid "Manually install package"
+msgstr "Asenna paketti käsin"
+
+#: 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:1227
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
+msgid "Next page"
+msgstr "Seuraava sivu"
+
+#: 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:355
+msgid "No packages"
+msgstr "Ei paketteja"
+
+#: 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:542
+msgid "Not available"
+msgstr "Ei saatavilla"
+
+#: 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:1158
+msgid "OK"
+msgstr "OK"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
+msgid "OPKG Configuration"
+msgstr "OPKG-määritys"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
+msgid "Package name"
+msgstr "Paketin nimi"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
+msgid "Package name or URL…"
+msgstr "Paketin nimi tai URL…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
+msgid "Previous page"
+msgstr "Edellinen sivu"
+
+#: 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:967
+msgid "Remove"
+msgstr "Poista"
+
+#: 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:276
+msgid "Remove…"
+msgstr "Poista…"
+
+#: 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: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: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: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:373
+msgid "Reset"
+msgstr "Palauta"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+msgid "SHA256"
+msgstr "SHA256"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
+msgid "Save"
+msgstr "Tallenna"
+
+#: 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: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:1235
+msgid "Size (.ipk)"
+msgstr "Koko (.ipk)"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
+#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
+msgid "Software"
+msgstr "Ohjelmisto"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr "Ehdotetut kielikäännökset"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
+msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
+msgstr "<em>opkg %h</em> -komento epäonnistui koodilla <code>%d</code>."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
+msgid ""
+"The installed version of package <em>%h</em> is not compatible, require %s "
+"while %s is installed."
+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: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:530
+msgid ""
+"The repository version of package <em>%h</em> is not compatible, require %s "
+"but only %s is available."
+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:1149
+msgid "Type to filter…"
+msgstr "Kirjoita suodattaaksesi…"
+
+#: 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:871
+msgid "Unable to read %s: %s"
+msgstr "Ei voida lukea %s: %s"
+
+#: 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:1165
+msgid "Update lists…"
+msgstr "Päivitä luettelot…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
+msgid "Updates"
+msgstr "Päivitykset"
+
+#: 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:1166
+msgid "Upload Package…"
+msgstr "Lähetä paketti…"
+
+#: 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:1234
+msgid "Version"
+msgstr "Versio"
+
+#: 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: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:1198
+msgctxt "Display translation packages"
+msgid "all"
+msgstr "kaikki"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
+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:1143
+msgid "unknown"
+msgstr "tuntematon"
+
+#: 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"
+
+#~ msgid "Free space"
+#~ msgstr "Vapaa levytila"
+
+#~ msgid "Overwrite files from other package(s)"
+#~ msgstr "Korvaa tiedostoja muista paketeista"
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2009-06-10 03:40+0200\n"
+"PO-Revision-Date: 2023-06-11 22:12+0000\n"
+"Last-Translator: viking76 <liaudetgael@gmail.com>\n"
+"Language-Team: French <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationsopkg/fr/>\n"
+"Language: fr\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n > 1;\n"
+"X-Generator: Weblate 4.18-dev\n"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
+msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
+msgid ""
+"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
+msgid "Actions"
+msgstr "Actions"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
+msgid "Allow overwriting conflicting package files"
+msgstr "Autoriser l'écrasement des fichiers en conflit du package"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
+msgid "Automatically remove unused dependencies"
+msgstr "Supprimez automatiquement les dépendances inutilisées"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1218
+msgid "Available"
+msgstr "Disponible"
+
+#: 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 ""
+"Vous trouverez ci-dessous une liste des différents fichiers de configuration "
+"utilisés par <em>opkg</em>. Utilisez <em>opkg.conf</em> pour les paramètres "
+"globaux et <em>customfeeds.conf</em> pour les entrées de référentiel "
+"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: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:1150
+msgid "Clear"
+msgstr "Nettoyer"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+msgid "Configure opkg…"
+msgstr "Configuration opkg…"
+
+#: 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:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
+msgid "Description"
+msgstr "Description"
+
+#: 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:1142
+msgid "Disk space"
+msgstr ""
+
+#: 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:1172
+msgid "Display LuCI translation packages"
+msgstr "Afficher les paquets de traduction LuCI"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
+msgid "Display all available translation packages"
+msgstr "Afficher tous les paquets de traduction disponibles"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
+msgid ""
+"Display base translation packages and translation packages for already "
+"installed languages only"
+msgstr ""
+"Afficher uniquement les paquets de traduction de base et les paquets de "
+"traduction pour les langues déjà installées"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354
+msgid "Displaying %d-%d of %d"
+msgstr "Affichage de %d-%d sur %d"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155
+msgid "Download and install package"
+msgstr "Télécharge et installe le paquet"
+
+#: 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:982
+msgid "Executing package manager"
+msgstr "Exécution du gestionnaire de packages"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
+msgid "Filter"
+msgstr "Filtrer"
+
+#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
+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:1202
+msgid "Hide all translation packages"
+msgstr "Masquer tous les paquets de traduction"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066
+msgid "Install"
+msgstr "Installer"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1133
+msgid "Install additional software and upgrade existing packages with opkg."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr "Installer également les paquets de traduction suggérés"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
+msgid "Installed"
+msgstr "Installé"
+
+#: 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 ""
+"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:288
+msgid "Install…"
+msgstr "Installer…"
+
+#: 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:1084
+msgid "Loading package information…"
+msgstr "Chargement des informations sur le package…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+msgid "MD5"
+msgstr "MD5"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
+msgid "Manually install package"
+msgstr "Installer manuellement le package"
+
+#: 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:1227
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
+msgid "Next page"
+msgstr "Page suivante"
+
+#: 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:355
+msgid "No packages"
+msgstr "Pas de paquet"
+
+#: 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:542
+msgid "Not available"
+msgstr "Indisponible"
+
+#: 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:1158
+msgid "OK"
+msgstr "OK"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
+msgid "OPKG Configuration"
+msgstr "Configuration OPKG"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
+msgid "Package name"
+msgstr "Nom du paquet"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
+msgid "Package name or URL…"
+msgstr "Nom ou URL du package…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
+msgid "Previous page"
+msgstr "Page précédente"
+
+#: 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:967
+msgid "Remove"
+msgstr "Désinstaller"
+
+#: 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:276
+msgid "Remove…"
+msgstr "Désinstaller…"
+
+#: 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: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: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: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:373
+msgid "Reset"
+msgstr "Remise à zéro"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+msgid "SHA256"
+msgstr "SHA256"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
+msgid "Save"
+msgstr "Sauvegarder"
+
+#: 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: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:1235
+msgid "Size (.ipk)"
+msgstr "Taille (.ipk)"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
+#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
+msgid "Software"
+msgstr "Logiciels"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr "Traductions suggérées"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr ""
+"Les traductions proposées nécessitent environ %1024mB d'espace "
+"supplémentaire."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
+msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
+msgstr "La commande <em>opkg %h</em> a échoué avec le code <code>%d</code>."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
+msgid ""
+"The installed version of package <em>%h</em> is not compatible, require %s "
+"while %s is installed."
+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: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:530
+msgid ""
+"The repository version of package <em>%h</em> is not compatible, require %s "
+"but only %s is available."
+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:1149
+msgid "Type to filter…"
+msgstr "Type à filtrer…"
+
+#: 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:871
+msgid "Unable to read %s: %s"
+msgstr "Impossible de lire %s: %s"
+
+#: 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:1165
+msgid "Update lists…"
+msgstr "Mettre à jour les listes…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
+msgid "Updates"
+msgstr "Mises à jour"
+
+#: 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:1166
+msgid "Upload Package…"
+msgstr "Télécharger le package…"
+
+#: 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:1234
+msgid "Version"
+msgstr "Version"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
+msgid "Version incompatible"
+msgstr "Version incompatible"
+
+#: 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:1198
+msgctxt "Display translation packages"
+msgid "all"
+msgstr "tout"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr "filtrée"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
+msgctxt "Display translation packages"
+msgid "none"
+msgstr "aucun"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1143
+msgid "unknown"
+msgstr "inconnu"
+
+#: 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é"
+
+#~ msgid "Free space"
+#~ msgstr "Espace libre"
+
+#~ msgid "Overwrite files from other package(s)"
+#~ msgstr "Écraser les fichiers d'autres packages"
--- /dev/null
+msgid ""
+msgstr ""
+"PO-Revision-Date: 2024-09-07 19:01+0000\n"
+"Last-Translator: Aindriú Mac Giolla Eoin <aindriu80@gmail.com>\n"
+"Language-Team: Irish <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationsopkg/ga/>\n"
+"Language: ga\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=5; plural=n==1 ? 0 : n==2 ? 1 : (n>2 && n<7) ? 2 :("
+"n>6 && n<11) ? 3 : 4;\n"
+"X-Generator: Weblate 5.8-dev\n"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
+msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
+msgstr "%s a úsáidtear (%1024MB a úsáidtear as %1024MB, %1024MB saor in aisce)"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
+msgid ""
+"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
+msgstr ""
+"<strong>Rabhadh!</strong> Is féidir le hoibríochtaí pacála <a %s>do chóras a "
+"bhriseadh</a>."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
+msgid "Actions"
+msgstr "Gníomhartha"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
+msgid "Allow overwriting conflicting package files"
+msgstr "Lig comhaid pacáiste contrártha a athscríobh"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
+msgid "Automatically remove unused dependencies"
+msgstr "Bain spleáchais neamhúsáidte a"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1218
+msgid "Available"
+msgstr "Ar fáil"
+
+#: 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 ""
+"Anseo thíos tá liosta de na comhaid chumraíochta éagsúla a úsáideann "
+"<em>opkg</em>. Úsáid <em>opkg.conf</em> le haghaidh socruithe domhanda agus "
+"<em>customfeeds.conf</em> le haghaidh iontrálacha stórtha saincheaptha. "
+"Seans go n-athrófar an chumraíocht sna comhaid eile ach de ghnáth ní "
+"choinnítear í le <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 "Cealaigh"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150
+msgid "Clear"
+msgstr "Soiléir"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+msgid "Configure opkg…"
+msgstr "Cumraigh opkg…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
+msgid "Dependencies"
+msgstr "Spleithiúlachtaí"
+
+#: 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:1236
+msgid "Description"
+msgstr "Cur síos"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755
+msgid "Details for package <em>%h</em>"
+msgstr "Sonraí an phacáiste <em>%h</em>"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142
+msgid "Disk space"
+msgstr "Spás diosca"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
+msgid "Dismiss"
+msgstr "Díbhe"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1172
+msgid "Display LuCI translation packages"
+msgstr "Taispeáin pacáistí aistriúcháin Lu"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
+msgid "Display all available translation packages"
+msgstr "Taispeáin na pacáistí aistriúcháin"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
+msgid ""
+"Display base translation packages and translation packages for already "
+"installed languages only"
+msgstr ""
+"Taispeáin bhunphacáistí aistriúcháin agus pacáistí aistriúcháin le haghaidh"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354
+msgid "Displaying %d-%d of %d"
+msgstr "Ag taispeáint %d-%d de %d"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155
+msgid "Download and install package"
+msgstr "Íoslódáil agus suiteáil pacáiste"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
+msgid "Errors"
+msgstr "Earráidí"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
+msgid "Executing package manager"
+msgstr "Bainisteoir pacáiste a chur"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
+msgid "Filter"
+msgstr "Scagaire"
+
+#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
+msgid "Grant access to opkg management"
+msgstr "Rochtain a dheonú ar bhainistíocht opkg"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1202
+msgid "Hide all translation packages"
+msgstr "Folaigh gach pacáiste aistriúcháin"
+
+#: 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 "Suiteáil"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1133
+msgid "Install additional software and upgrade existing packages with opkg."
+msgstr ""
+"Suiteáil bogearraí breise agus uasghrádaigh na pacáistí atá ann cheana féin "
+"le opkg."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr "Suiteáil pacáistí aistriúcháin atá molta freisin"
+
+#: 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:1219
+msgid "Installed"
+msgstr "Suiteáilte"
+
+#: 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 ""
+"Is baol slándála féideartha é pacáistí a shuiteáil ó fhoinsí neamhiontaofa! "
+"An bhfuil fonn ort <em>%h</em> a shuiteáil i ndáiríre?"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
+msgid "Install…"
+msgstr "Suiteáil…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
+msgid "Loading configuration data…"
+msgstr "Sonraí cumraíochta á luchtú…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
+msgid "Loading package information…"
+msgstr "Faisnéis pacáiste á luchtú…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+msgid "MD5"
+msgstr "MD5"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
+msgid "Manually install package"
+msgstr "Suiteáil pacáiste de láimh"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
+msgid "Needs upgrade"
+msgstr "Riachtanais uasgh"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
+msgid "Next page"
+msgstr "An chéad leathanach eile"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
+msgid "No information available"
+msgstr "Níl aon eolas ar fáil"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
+msgid "No packages"
+msgstr "Gan aon phacáistí"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
+msgid "No packages matching \"<strong>%h</strong>\"."
+msgstr "Níl aon phacáiste ag teacht le \"<strong>%h</strong>\"."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
+msgid "Not available"
+msgstr "Níl ar fáil"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
+msgid "Not installed"
+msgstr "Níl suiteáilte"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
+msgid "OK"
+msgstr "CEART GO LEOR"
+
+#: 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 "Cumraíocht OPKG"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
+msgid "Package name"
+msgstr "Ainm an phacáiste"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
+msgid "Package name or URL…"
+msgstr "Ainm pacáiste nó URL…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
+msgid "Previous page"
+msgstr "Leathanach roimhe seo"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
+msgid "Really attempt to install <em>%h</em>?"
+msgstr "An bhfuil fonn ort <em>%h</em> a shuiteáil i ndáiríre?"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
+msgid "Remove"
+msgstr "Bain"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
+msgid "Remove package <em>%h</em>"
+msgstr "Bain pacáiste <em>%h</em>"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
+msgid "Remove…"
+msgstr "Bain…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
+msgid "Require approx. %1024mB size for %d package(s) to install."
+msgstr "Teastaíonn thart. %1024MB de mhéid chun pacáistí %d a shuiteáil."
+
+#: 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 "Teastaíonn leagan %h %h, %h suiteáilte"
+
+#: 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 ""
+"Níl an pacáiste spleáchais riachtanach <em>%h</em> ar fáil i stór ar bith."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508
+msgid "Requires update to %h %h"
+msgstr "Éilíonn nuashonrú chuig %h %h"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
+msgid "Reset"
+msgstr "Athshocraigh"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+msgid "SHA256"
+msgstr "SHA256"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
+msgid "Save"
+msgstr "Sábháil"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
+msgid "Saving configuration data…"
+msgstr "Sonraí cumraíochta a shábháil…"
+
+#: 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éid"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
+msgid "Size (.ipk)"
+msgstr "Méid (.ipk)"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
+#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
+msgid "Software"
+msgstr "Bogearraí"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr "Aistriúcháin molta"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr "Teastaíonn thart ar %1024MB spás breise ó aistriúcháin mholta."
+
+#: 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 "Theip ar an ordú <em>opkg %h</em> leis an gcód <code>%d</code>."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
+msgid ""
+"The installed version of package <em>%h</em> is not compatible, require %s "
+"while %s is installed."
+msgstr ""
+"Níl an leagan suiteáilte den phacáiste <em>%h</em> comhoiriúnach, teastaíonn "
+"%s agus %s suiteáilte."
+
+#: 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 "Níl an pacáiste <em>%h</em> ar fáil in aon stór cumraithe."
+
+#: 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 ""
+"Níl an leagan stórtha den phacáiste <em>%h</em> comhoiriúnach, teastaíonn %s "
+"ach níl ach %s ar fáil."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
+msgid "Type to filter…"
+msgstr "Cineál chun scagadh…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
+msgid "Unable to execute <em>opkg %s</em> command: %s"
+msgstr "Ní féidir an t-ordú <em>opkg %s</em> a rith: %s"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871
+msgid "Unable to read %s: %s"
+msgstr "Ní féidir %s a léamh: %s"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910
+msgid "Unable to save %s: %s"
+msgstr "Ní féidir %s a shábháil: %s"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1165
+msgid "Update lists…"
+msgstr "Nuashonraigh liostaí…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
+msgid "Updates"
+msgstr "Nuashonruithe"
+
+#: 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 "Uasghrádú…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1166
+msgid "Upload Package…"
+msgstr "Uaslódáil Pacáiste…"
+
+#: 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:1234
+msgid "Version"
+msgstr "Leagan"
+
+#: 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 "Leagan neamhluí"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
+msgid "Waiting for the <em>opkg %h</em> command to complete…"
+msgstr "Ag fanacht leis an ordú <em>opkg % h</em> a chur i gcrích…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1198
+msgctxt "Display translation packages"
+msgid "all"
+msgstr "go léir"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr "scagtha"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
+msgctxt "Display translation packages"
+msgid "none"
+msgstr "níl aon"
+
+#: 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:1143
+msgid "unknown"
+msgstr "anaithnid"
+
+#: 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 comhbhrúite"
+
+#: 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 suiteáilte"
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"PO-Revision-Date: 2023-09-18 21:37+0000\n"
+"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
+"Language-Team: Hebrew <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationsopkg/he/>\n"
+"Language: he\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Weblate 5.0.2\n"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
+msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
+msgid ""
+"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
+msgid "Actions"
+msgstr "פעולות"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
+msgid "Allow overwriting conflicting package files"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
+msgid "Automatically remove unused dependencies"
+msgstr "להסיר אוטומטית תלויות שאינן בשימוש"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1218
+msgid "Available"
+msgstr "זמין"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
+msgid ""
+"Below is a listing of the various configuration files used by <em>opkg</em>. "
+"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
+"custom repository entries. The configuration in the other files may be "
+"changed but is usually not preserved by <em>sysupgrade</em>."
+msgstr ""
+
+#: 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:1150
+msgid "Clear"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+msgid "Configure opkg…"
+msgstr "הגדר opkg…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
+msgid "Dependencies"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
+msgid "Description"
+msgstr "תיאור"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755
+msgid "Details for package <em>%h</em>"
+msgstr "פרטים על החבילה <em>%h</em>"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142
+msgid "Disk space"
+msgstr ""
+
+#: 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:1172
+msgid "Display LuCI translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
+msgid "Display all available translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
+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:1155
+msgid "Download and install package"
+msgstr "הורדת והתקנת חבילות"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
+msgid "Errors"
+msgstr "שגיאות"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
+msgid "Executing package manager"
+msgstr "מנהל החבילות מופעל"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
+msgid "Filter"
+msgstr "מסנן"
+
+#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
+msgid "Grant access to opkg management"
+msgstr "הענקת גישה לניהול opkg"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1202
+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:1133
+msgid "Install additional software and upgrade existing packages with opkg."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
+msgid "Installed"
+msgstr "מותקנת"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
+msgid ""
+"Installing packages from untrusted sources is a potential security risk! "
+"Really attempt to install <em>%h</em>?"
+msgstr ""
+"התקנת חבילות ממקורות מפוקפקים היא הזמנה לסיכון אבטחה! לנסות להתקין את <em>"
+"%h</em>?"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
+msgid "Install…"
+msgstr "התקנה…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
+msgid "Loading configuration data…"
+msgstr "נתוני התצורה נטענים…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
+msgid "Loading package information…"
+msgstr "פרטי החבילה נטענים…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+msgid "MD5"
+msgstr "MD5"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
+msgid "Manually install package"
+msgstr "התקנת חבילה באופן ידני"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
+msgid "Needs upgrade"
+msgstr "נדרש שדרוג"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
+msgid "Next page"
+msgstr "העמוד הבא"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
+msgid "No information available"
+msgstr "אין פרטים זמינים"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
+msgid "No packages"
+msgstr "אין חבילות"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
+msgid "No packages matching \"<strong>%h</strong>\"."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
+msgid "Not available"
+msgstr "לא זמין"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
+msgid "Not installed"
+msgstr "לא מותקן"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
+msgid "OK"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
+msgid "OPKG Configuration"
+msgstr "תצורת OPKG"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
+msgid "Package name"
+msgstr "שם החבילה"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
+msgid "Package name or URL…"
+msgstr "שם החבילה או URL…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
+msgid "Previous page"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
+msgid "Really attempt to install <em>%h</em>?"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
+msgid "Remove"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
+msgid "Remove package <em>%h</em>"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
+msgid "Remove…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
+msgid "Require approx. %1024mB size for %d package(s) to install."
+msgstr ""
+
+#: 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: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:508
+msgid "Requires update to %h %h"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
+msgid "Reset"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+msgid "SHA256"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
+msgid "Save"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
+msgid "Saving configuration data…"
+msgstr "שומר נתוני תצורה…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
+msgid "Size"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
+msgid "Size (.ipk)"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
+#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
+msgid "Software"
+msgstr "תוכנה"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
+msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
+msgstr ""
+
+#: 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: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: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:1149
+msgid "Type to filter…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
+msgid "Unable to execute <em>opkg %s</em> command: %s"
+msgstr ""
+
+#: 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:910
+msgid "Unable to save %s: %s"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1165
+msgid "Update lists…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
+msgid "Updates"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
+msgid "Upgrade…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1166
+msgid "Upload Package…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1234
+msgid "Version"
+msgstr "גרסה"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
+msgid "Version incompatible"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
+msgid "Waiting for the <em>opkg %h</em> command to complete…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1198
+msgctxt "Display translation packages"
+msgid "all"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
+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:1143
+msgid "unknown"
+msgstr "לא ידוע"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
+msgid "~%1024mB compressed"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
+msgid "~%1024mB installed"
+msgstr ""
+
+#~ msgid "Free space"
+#~ msgstr "מקום פנוי"
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2009-06-10 03:40+0200\n"
+"PO-Revision-Date: 2024-07-06 11:32+0000\n"
+"Last-Translator: Sathvic <sathvic.p@gmail.com>\n"
+"Language-Team: Hindi <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationsopkg/hi/>\n"
+"Language: hi\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n > 1;\n"
+"X-Generator: Weblate 5.7-dev\n"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
+msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
+msgid ""
+"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
+msgid "Actions"
+msgstr "चाल-चलन"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
+msgid "Allow overwriting conflicting package files"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
+msgid "Automatically remove unused dependencies"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1218
+msgid "Available"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
+msgid ""
+"Below is a listing of the various configuration files used by <em>opkg</em>. "
+"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
+"custom repository entries. The configuration in the other files may be "
+"changed but is usually not preserved by <em>sysupgrade</em>."
+msgstr ""
+
+#: 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:1150
+msgid "Clear"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+msgid "Configure opkg…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
+msgid "Dependencies"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
+msgid "Description"
+msgstr ""
+
+#: 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:1142
+msgid "Disk space"
+msgstr ""
+
+#: 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:1172
+msgid "Display LuCI translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
+msgid "Display all available translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
+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:1155
+msgid "Download and install package"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
+msgid "Errors"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
+msgid "Executing package manager"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
+msgid "Filter"
+msgstr ""
+
+#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
+msgid "Grant access to opkg management"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1202
+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:1133
+msgid "Install additional software and upgrade existing packages with opkg."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
+msgid "Installed"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
+msgid ""
+"Installing packages from untrusted sources is a potential security risk! "
+"Really attempt to install <em>%h</em>?"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
+msgid "Install…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
+msgid "Loading configuration data…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
+msgid "Loading package information…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+msgid "MD5"
+msgstr "MD5"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
+msgid "Manually install package"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
+msgid "Needs upgrade"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
+msgid "Next page"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
+msgid "No information available"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
+msgid "No packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
+msgid "No packages matching \"<strong>%h</strong>\"."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
+msgid "Not available"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
+msgid "Not installed"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
+msgid "OK"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
+msgid "OPKG Configuration"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
+msgid "Package name"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
+msgid "Package name or URL…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
+msgid "Previous page"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
+msgid "Really attempt to install <em>%h</em>?"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
+msgid "Remove"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
+msgid "Remove package <em>%h</em>"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
+msgid "Remove…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
+msgid "Require approx. %1024mB size for %d package(s) to install."
+msgstr ""
+
+#: 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: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:508
+msgid "Requires update to %h %h"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
+msgid "Reset"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+msgid "SHA256"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
+msgid "Save"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
+msgid "Saving configuration data…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
+msgid "Size"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
+msgid "Size (.ipk)"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
+#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
+msgid "Software"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
+msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
+msgstr ""
+
+#: 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: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: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:1149
+msgid "Type to filter…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
+msgid "Unable to execute <em>opkg %s</em> command: %s"
+msgstr ""
+
+#: 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:910
+msgid "Unable to save %s: %s"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1165
+msgid "Update lists…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
+msgid "Updates"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
+msgid "Upgrade…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1166
+msgid "Upload Package…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1234
+msgid "Version"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
+msgid "Version incompatible"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
+msgid "Waiting for the <em>opkg %h</em> command to complete…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1198
+msgctxt "Display translation packages"
+msgid "all"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
+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:1143
+msgid "unknown"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
+msgid "~%1024mB compressed"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
+msgid "~%1024mB installed"
+msgstr ""
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"PO-Revision-Date: 2024-08-18 14:10+0000\n"
+"Last-Translator: hmzs <hmzs@1szer1.hu>\n"
+"Language-Team: Hungarian <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationsopkg/hu/>\n"
+"Language: hu\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 5.7\n"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
+msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
+msgstr "%s foglalt (%1024mB / %1024mB, szabad: %1024mB)"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
+msgid ""
+"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
+msgstr ""
+"<strong>Figyelem!</strong> A csomagművelet(ek) hatására <a %s> a rendszert "
+"működésképtelenné válhat</a>."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
+msgid "Actions"
+msgstr "Műveletek"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
+msgid "Allow overwriting conflicting package files"
+msgstr "Ütköző csomagfájlok felülírásának engedélyezése"
+
+#: 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:1218
+msgid "Available"
+msgstr "Elérhető"
+
+#: 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 ""
+"Alább található az <em>opkg</em> által használt különféle beállítófájlok "
+"listája. Használja az <code>opkg.conf</code> fájlt a globális "
+"beállításokhoz, és a <code>customfeeds.conf</code> fájlt az egyéni "
+"tárolóbejegyzésekhez. Az egyéb 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: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:1150
+msgid "Clear"
+msgstr "Törlés"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+msgid "Configure opkg…"
+msgstr "Az opkg beállítása…"
+
+#: 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:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
+msgid "Description"
+msgstr "Leírás"
+
+#: 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:1142
+msgid "Disk space"
+msgstr "Szabad tárterület"
+
+#: 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:1172
+msgid "Display LuCI translation packages"
+msgstr "LuCI nyelvi csomagok megjelenítése"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
+msgid "Display all available translation packages"
+msgstr "Minden elérhető nyelvi csomag megjelenítése."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
+msgid ""
+"Display base translation packages and translation packages for already "
+"installed languages only"
+msgstr ""
+"Csak az alapvető nyelvi csomagok, és a már telepített nyelvekhez tartozó "
+"nyelvi csomagok megjelenítése."
+
+#: 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:1155
+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:1008
+msgid "Errors"
+msgstr "Hibák"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
+msgid "Executing package manager"
+msgstr "Csomagkezelő műveletek végrehajtása"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
+msgid "Filter"
+msgstr "Szűrő"
+
+#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
+msgid "Grant access to opkg management"
+msgstr "Jogosultság adása az opkg csomagkezelőnek"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1202
+msgid "Hide all translation packages"
+msgstr "Minden nyelvi csomag rejtve marad."
+
+#: 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:1133
+msgid "Install additional software and upgrade existing packages with opkg."
+msgstr ""
+"Telepítsen további szoftvereket, és frissítse a meglévő csomagokat az opkg "
+"segítségével."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr "Telepítse a javasolt nyelvi csomagokat is"
+
+#: 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:1219
+msgid "Installed"
+msgstr "Telepítve"
+
+#: 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 ""
+"A nem megbízható forrásokból származó csomagok telepítése biztonsági "
+"kockázattal jár! Valóban megpróbálja telepíteni a(z) <em>%h</em> csomagot?"
+
+#: 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: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:1084
+msgid "Loading package information…"
+msgstr "Csomaginformációk betöltése…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+msgid "MD5"
+msgstr "MD5"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
+msgid "Manually install package"
+msgstr "Csomag kézi telepítése"
+
+#: 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:1227
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
+msgid "Next page"
+msgstr "Következő oldal"
+
+#: 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:355
+msgid "No packages"
+msgstr "Nincsenek csomagok"
+
+#: 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:542
+msgid "Not available"
+msgstr "Nem érhető el"
+
+#: 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:1158
+msgid "OK"
+msgstr "Rendben"
+
+#: 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 "Csomagkezelő beállítása"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
+msgid "Package name"
+msgstr "Csomagnév"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
+msgid "Package name or URL…"
+msgstr "Csomagnév vagy URL…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
+msgid "Previous page"
+msgstr "Előző oldal"
+
+#: 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:967
+msgid "Remove"
+msgstr "Eltávolítás"
+
+#: 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:276
+msgid "Remove…"
+msgstr "Eltávolítá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 "~%1024mB hely szükséges %d csomag telepítéséhez."
+
+#: 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, telepített: %h"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540
+msgid ""
+"Required dependency package <em>%h</em> is not available in any repository."
+msgstr ""
+"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: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:373
+msgid "Reset"
+msgstr "Visszaállítás"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+msgid "SHA256"
+msgstr "SHA256"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
+msgid "Save"
+msgstr "Mentés"
+
+#: 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: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:1235
+msgid "Size (.ipk)"
+msgstr "Méret (.ipk)"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
+#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
+msgid "Software"
+msgstr "Szoftver"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr "Javasolt nyelvi csomagok"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr "A javasolt nyelvi csomagokhoz további kb. %1024mB hely szükséges."
+
+#: 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:513
+msgid ""
+"The installed version of package <em>%h</em> is not compatible, require %s "
+"while %s is installed."
+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: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:530
+msgid ""
+"The repository version of package <em>%h</em> is not compatible, require %s "
+"but only %s is available."
+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:1149
+msgid "Type to filter…"
+msgstr "Gépeljen a szűréshez…"
+
+#: 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: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: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:1165
+msgid "Update lists…"
+msgstr "Listák frissítése…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
+msgid "Updates"
+msgstr "Frissítések"
+
+#: 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:1166
+msgid "Upload Package…"
+msgstr "Csomag feltöltése…"
+
+#: 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:1234
+msgid "Version"
+msgstr "Verzió"
+
+#: 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: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:1198
+msgctxt "Display translation packages"
+msgid "all"
+msgstr "összes"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr "szűrt"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
+msgctxt "Display translation packages"
+msgid "none"
+msgstr "nincs"
+
+#: 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:1143
+msgid "unknown"
+msgstr "ismeretlen"
+
+#: 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"
+
+#~ msgid "Free space"
+#~ msgstr "Szabad hely"
+
+#~ msgid "Overwrite files from other package(s)"
+#~ msgstr "Fájlok felülírása más csomagokból"
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: LuCI\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2009-06-10 03:40+0200\n"
+"PO-Revision-Date: 2024-05-18 06:49+0000\n"
+"Last-Translator: Random <random-r@users.noreply.hosted.weblate.org>\n"
+"Language-Team: Italian <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationsopkg/it/>\n"
+"Language: it\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 5.6-dev\n"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
+msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
+msgstr "%s usato (%1024mB usati di %1024mB, %1024mB liberi)"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
+msgid ""
+"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
+msgstr ""
+"<strong>Attenzione!</strong>Operazioni sul pacchetto possono <a %s>rendere "
+"inutilizzabile il sistema</a>."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
+msgid "Actions"
+msgstr "Azioni"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
+msgid "Allow overwriting conflicting package files"
+msgstr "Consenti la sovrascrittura dei pacchetti in conflitto"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
+msgid "Automatically remove unused dependencies"
+msgstr "Rimuovi automaticamente le dipendenze inutilizzate"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1218
+msgid "Available"
+msgstr "Disponibili"
+
+#: 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 ""
+"Di seguito è riportato un elenco dei vari file di configurazione utilizzati "
+"da <em>opkg</em>. Usa <em>opkg.conf</em> per le impostazioni globali e "
+"<em>customfeeds.conf</em> per le voci di repository personalizzati. La "
+"configurazione negli altri file può essere cambiata, ma solitamente non "
+"viene conservata da <em>sysupgrade</em>."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js: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:1150
+msgid "Clear"
+msgstr "Cancella"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+msgid "Configure opkg…"
+msgstr "Configura opkg…"
+
+#: 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:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
+msgid "Description"
+msgstr "Descrizione"
+
+#: 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:1142
+msgid "Disk space"
+msgstr "Spazio su disco"
+
+#: 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:1172
+msgid "Display LuCI translation packages"
+msgstr "Mostra pacchetti traduzione di LuCI"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
+msgid "Display all available translation packages"
+msgstr "Mostra tutti i pacchetti traduzione disponibili"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
+msgid ""
+"Display base translation packages and translation packages for already "
+"installed languages only"
+msgstr ""
+"Mostra i pacchetti di traduzione di base e i pacchetti di traduzione solo "
+"per le lingue già installate"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354
+msgid "Displaying %d-%d of %d"
+msgstr "Mostrando %d-%d di %d"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155
+msgid "Download and install package"
+msgstr "Scarica e installa il pacchetto"
+
+#: 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:982
+msgid "Executing package manager"
+msgstr "Esecuzione del gestore pacchetti"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
+msgid "Filter"
+msgstr "Filtro"
+
+#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
+msgid "Grant access to opkg management"
+msgstr "Concedi l'accesso alla gestione di opkg"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1202
+msgid "Hide all translation packages"
+msgstr "Nascondi tutti i pacchetti di traduzione"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066
+msgid "Install"
+msgstr "Installa"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1133
+msgid "Install additional software and upgrade existing packages with opkg."
+msgstr "Installa software aggiuntivo e aggiorna i pacchetti esistenti con opkg."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr "Installa anche i pacchetti di traduzione suggeriti"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
+msgid "Installed"
+msgstr "Installati"
+
+#: 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 ""
+"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:288
+msgid "Install…"
+msgstr "Installa…"
+
+#: 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:1084
+msgid "Loading package information…"
+msgstr "Caricamento delle informazioni sul pacchetto…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+msgid "MD5"
+msgstr "MD5"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
+msgid "Manually install package"
+msgstr "Installa pacchetto manualmente"
+
+#: 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:1227
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
+msgid "Next page"
+msgstr "Pagina successiva"
+
+#: 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:355
+msgid "No packages"
+msgstr "Nessun pacchetto"
+
+#: 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:542
+msgid "Not available"
+msgstr "Non disponibile"
+
+#: 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:1158
+msgid "OK"
+msgstr "OK"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
+msgid "OPKG Configuration"
+msgstr "Configurazione OPKG"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
+msgid "Package name"
+msgstr "Nome pacchetto"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
+msgid "Package name or URL…"
+msgstr "Nome pacchetto o URL…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
+msgid "Previous page"
+msgstr "Pagina precedente"
+
+#: 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:967
+msgid "Remove"
+msgstr "Rimuovi"
+
+#: 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:276
+msgid "Remove…"
+msgstr "Rimuovi…"
+
+#: 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: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: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 nessun "
+"repository."
+
+#: 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:373
+msgid "Reset"
+msgstr "Reimposta"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+msgid "SHA256"
+msgstr "SHA256"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
+msgid "Save"
+msgstr "Salva"
+
+#: 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: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:1235
+msgid "Size (.ipk)"
+msgstr "Dimensione (.ipk)"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
+#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
+msgid "Software"
+msgstr "Software"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr "Traduzioni suggerite"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr "Le traduzioni suggerite richiedono ca. %1024 mB di spazio aggiuntivo."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
+msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
+msgstr "Il comando <em>opkg %h</em> è fallito con il codice <code>%d</code>."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
+msgid ""
+"The installed version of package <em>%h</em> is not compatible, require %s "
+"while %s is installed."
+msgstr ""
+"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:833
+msgid "The package <em>%h</em> is not available in any configured repository."
+msgstr ""
+"Il pacchetto <em>%h</em> non è disponibile in nessun repository configurato."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530
+msgid ""
+"The repository version of package <em>%h</em> is not compatible, require %s "
+"but only %s is available."
+msgstr ""
+"La versione del repository del pacchetto <em>%h</em> non è compatibile, "
+"richiede %s ma è disponibile solo %s."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
+msgid "Type to filter…"
+msgstr "Scrivi per filtrare…"
+
+#: 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:871
+msgid "Unable to read %s: %s"
+msgstr "Impossibile leggere %s: %s"
+
+#: 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:1165
+msgid "Update lists…"
+msgstr "Aggiorna liste…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
+msgid "Updates"
+msgstr "Aggiornamenti"
+
+#: 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:1166
+msgid "Upload Package…"
+msgstr "Carica pacchetto…"
+
+#: 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:1234
+msgid "Version"
+msgstr "Versione"
+
+#: 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: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:1198
+msgctxt "Display translation packages"
+msgid "all"
+msgstr "tutto"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr "filtrato"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
+msgctxt "Display translation packages"
+msgid "none"
+msgstr "nessuno"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1143
+msgid "unknown"
+msgstr "sconosciuto"
+
+#: 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"
+
+#~ msgid "Free space"
+#~ msgstr "Spazio libero"
+
+#~ msgid "Overwrite files from other package(s)"
+#~ msgstr "Sovrascrivere i file da altri pacchetti"
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2009-06-10 03:40+0200\n"
+"PO-Revision-Date: 2024-07-15 18:06+0000\n"
+"Last-Translator: INAGAKI Hiroshi <musashino.open@gmail.com>\n"
+"Language-Team: Japanese <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationsopkg/ja/>\n"
+"Language: ja\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Generator: Weblate 5.7-dev\n"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
+msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
+msgstr "%s 使用済み (%1024mB 中 %1024mB 使用済み, %1024mB 空き)"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
+msgid ""
+"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
+msgstr "<strong>警告!</strong> パッケージ操作は<a "
+"%s>システムを破壊</a>することがあります。"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
+msgid "Actions"
+msgstr "操作"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
+msgid "Allow overwriting conflicting package files"
+msgstr "重複するパッケージ内ファイルの上書きを許可"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
+msgid "Automatically remove unused dependencies"
+msgstr "使用されない依存パッケージを自動的に削除"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1218
+msgid "Available"
+msgstr "利用可能"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
+msgid ""
+"Below is a listing of the various configuration files used by <em>opkg</em>. "
+"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
+"custom repository entries. The configuration in the other files may be "
+"changed but is usually not preserved by <em>sysupgrade</em>."
+msgstr ""
+"以下は <em>opkg</em> によって使用される、様々な設定ファイルの一覧です。"
+"<em>opkg.conf</em> は全般的な設定に、<em>customfeeds.conf</em> はカスタム リ"
+"ポジトリの登録に使用します。これら以外のファイル内の設定を変更しても、通常は "
+"<em>sysupgrade</em> 時に保持されません。"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
+msgid "Cancel"
+msgstr "キャンセル"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150
+msgid "Clear"
+msgstr "クリア"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+msgid "Configure opkg…"
+msgstr "opkg設定…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
+msgid "Dependencies"
+msgstr "依存関係"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
+msgid "Description"
+msgstr "説明"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755
+msgid "Details for package <em>%h</em>"
+msgstr "<em>%h</em> パッケージの詳細"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142
+msgid "Disk space"
+msgstr "ディスク領域"
+
+#: 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:1172
+msgid "Display LuCI translation packages"
+msgstr "LuCI 翻訳パッケージの表示"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
+msgid "Display all available translation packages"
+msgstr "利用可能な全ての翻訳パッケージを表示します"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
+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:1155
+msgid "Download and install package"
+msgstr "パッケージのダウンロードとインストール"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
+msgid "Errors"
+msgstr "エラー"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
+msgid "Executing package manager"
+msgstr "パッケージマネージャーが実行中"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
+msgid "Filter"
+msgstr "フィルター"
+
+#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
+msgid "Grant access to opkg management"
+msgstr "opkg 管理へのアクセスを許可"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1202
+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:1133
+msgid "Install additional software and upgrade existing packages with opkg."
+msgstr "opkg で追加のソフトウェアのインストールと既存パッケージのアップグレードを行い"
+"ます。"
+
+#: 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:1219
+msgid "Installed"
+msgstr "インストール済"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
+msgid ""
+"Installing packages from untrusted sources is a potential security risk! "
+"Really attempt to install <em>%h</em>?"
+msgstr ""
+"信頼されていない提供元からのパッケージのインストールは、セキュリティ リスクを"
+"伴います! <em>%h</em> のインストールを試行してもよろしいですか?"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
+msgid "Install…"
+msgstr "インストール…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
+msgid "Loading configuration data…"
+msgstr "設定データをロード中…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
+msgid "Loading package information…"
+msgstr "パッケージ情報をロード中…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+msgid "MD5"
+msgstr "MD5"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
+msgid "Manually install package"
+msgstr "パッケージの手動インストール"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
+msgid "Needs upgrade"
+msgstr "要アップグレード"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
+msgid "Next page"
+msgstr "次のページ"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
+msgid "No information available"
+msgstr "情報なし"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
+msgid "No packages"
+msgstr "パッケージなし"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
+msgid "No packages matching \"<strong>%h</strong>\"."
+msgstr "\"<strong>%h</strong>\" に一致するパッケージはありません。"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
+msgid "Not available"
+msgstr "利用不可"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
+msgid "Not installed"
+msgstr "未インストール"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
+msgid "OK"
+msgstr "OK"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
+msgid "OPKG Configuration"
+msgstr "OPKG 設定"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
+msgid "Package name"
+msgstr "パッケージ名"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
+msgid "Package name or URL…"
+msgstr "パッケージ名または URL…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
+msgid "Previous page"
+msgstr "前のページ"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
+msgid "Really attempt to install <em>%h</em>?"
+msgstr "本当に <em>%h</em> をインストールしますか?"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
+msgid "Remove"
+msgstr "削除"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
+msgid "Remove package <em>%h</em>"
+msgstr "<em>%h</em> パッケージを削除"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
+msgid "Remove…"
+msgstr "削除…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
+msgid "Require approx. %1024mB size for %d package(s) to install."
+msgstr "%d のインストールには約 %1024mB の領域が必要です。"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
+msgid "Require version %h %h, installed %h"
+msgstr "バージョン %h %h が必要です。%h がインストール済みです"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540
+msgid ""
+"Required dependency package <em>%h</em> is not available in any repository."
+msgstr ""
+"必須の依存パッケージ <em>%h</em> は、設定されているリポジトリでは利用できませ"
+"ん。"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508
+msgid "Requires update to %h %h"
+msgstr "%h %h への更新が必要です"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
+msgid "Reset"
+msgstr "リセット"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+msgid "SHA256"
+msgstr "SHA256"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
+msgid "Save"
+msgstr "保存"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
+msgid "Saving configuration data…"
+msgstr "設定データを保存中…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
+msgid "Size"
+msgstr "サイズ"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
+msgid "Size (.ipk)"
+msgstr "サイズ (.ipk)"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
+#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
+msgid "Software"
+msgstr "ソフトウェア"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr "提案された翻訳"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr "提案された翻訳は追加で約 %1024mB の領域を必要とします。"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
+msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
+msgstr "<em>opkg %h</em> コマンドが失敗しました(コード <code>%d</code>)。"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
+msgid ""
+"The installed version of package <em>%h</em> is not compatible, require %s "
+"while %s is installed."
+msgstr ""
+"<em>%h</em> のインストール済みバージョンは互換性がありません。 %s が、インス"
+"トールされている %s には必要です。"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833
+msgid "The package <em>%h</em> is not available in any configured repository."
+msgstr "<em>%h</em> パッケージは、設定済みのリポジトリでは利用できません。"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530
+msgid ""
+"The repository version of package <em>%h</em> is not compatible, require %s "
+"but only %s is available."
+msgstr ""
+"<em>%h</em> パッケージのリポジトリ バージョンは互換性がありません。 %s が必要"
+"ですが、 %s のみ利用可能です。"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
+msgid "Type to filter…"
+msgstr "検索…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
+msgid "Unable to execute <em>opkg %s</em> command: %s"
+msgstr "<em>opkg %s</em> コマンドを実行できません: %s"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871
+msgid "Unable to read %s: %s"
+msgstr "%s を読み取れません: %s"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910
+msgid "Unable to save %s: %s"
+msgstr "%s を保存できません: %s"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1165
+msgid "Update lists…"
+msgstr "リストを更新…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
+msgid "Updates"
+msgstr "アップデート"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
+msgid "Upgrade…"
+msgstr "アップグレード…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1166
+msgid "Upload Package…"
+msgstr "パッケージをアップロード…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1234
+msgid "Version"
+msgstr "バージョン"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
+msgid "Version incompatible"
+msgstr "互換性の無いバージョン"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
+msgid "Waiting for the <em>opkg %h</em> command to complete…"
+msgstr "<em>opkg %h</em> コマンドが完了するのを待っています…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1198
+msgctxt "Display translation packages"
+msgid "all"
+msgstr "全て"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr "フィルター済"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
+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:1143
+msgid "unknown"
+msgstr "不明"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
+msgid "~%1024mB compressed"
+msgstr "~%1024mB(圧縮後)"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
+msgid "~%1024mB installed"
+msgstr "~%1024mB(インストール後)"
+
+#~ msgid "Free space"
+#~ msgstr "空き容量"
+
+#~ msgid "Overwrite files from other package(s)"
+#~ msgstr "他のパッケージからファイルを上書き"
+
+#~ msgid ""
+#~ "Require version %h %h,\n"
+#~ "installed %h"
+#~ msgstr ""
+#~ "必要バージョン: %h %h,\n"
+#~ "インストール済: %h"
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2009-06-10 03:40+0200\n"
+"PO-Revision-Date: 2023-10-04 03:38+0000\n"
+"Last-Translator: Wonchul Kang <teshi85@gmail.com>\n"
+"Language-Team: Korean <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationsopkg/ko/>\n"
+"Language: ko\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n == 1 ? 0 : 1;\n"
+"X-Generator: Weblate 5.1-dev\n"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
+msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
+msgid ""
+"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
+msgid "Actions"
+msgstr "관리 도구"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
+msgid "Allow overwriting conflicting package files"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
+msgid "Automatically remove unused dependencies"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1218
+msgid "Available"
+msgstr "사용 가능"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
+msgid ""
+"Below is a listing of the various configuration files used by <em>opkg</em>. "
+"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
+"custom repository entries. The configuration in the other files may be "
+"changed but is usually not preserved by <em>sysupgrade</em>."
+msgstr ""
+
+#: 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:1150
+msgid "Clear"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+msgid "Configure opkg…"
+msgstr "opkg 설정…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
+msgid "Dependencies"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
+msgid "Description"
+msgstr "설명"
+
+#: 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:1142
+msgid "Disk space"
+msgstr ""
+
+#: 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:1172
+msgid "Display LuCI translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
+msgid "Display all available translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
+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:1155
+msgid "Download and install package"
+msgstr "패키지 다운로드 후 설치"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
+msgid "Errors"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
+msgid "Executing package manager"
+msgstr "패키지 관리자 실행 중"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
+msgid "Filter"
+msgstr "필터"
+
+#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
+msgid "Grant access to opkg management"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1202
+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:1133
+msgid "Install additional software and upgrade existing packages with opkg."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
+msgid "Installed"
+msgstr "설치됨"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
+msgid ""
+"Installing packages from untrusted sources is a potential security risk! "
+"Really attempt to install <em>%h</em>?"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
+msgid "Install…"
+msgstr "설치…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
+msgid "Loading configuration data…"
+msgstr "공통 설정 읽는 중…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
+msgid "Loading package information…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+msgid "MD5"
+msgstr "MD5"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
+#, fuzzy
+msgid "Manually install package"
+msgstr "패키지 다운로드 후 설치"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
+msgid "Needs upgrade"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
+msgid "Next page"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
+msgid "No information available"
+msgstr "이용 가능한 정보가 없습니다"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
+#, fuzzy
+msgid "No packages"
+msgstr "패키지 찾기"
+
+#: 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:542
+#, fuzzy
+msgid "Not available"
+msgstr "총 이용 가능한 양"
+
+#: 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:1158
+msgid "OK"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
+#, fuzzy
+msgid "OPKG Configuration"
+msgstr "OPKG-설정"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
+msgid "Package name"
+msgstr "패키지 이름"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
+msgid "Package name or URL…"
+msgstr "패키지 이름 또는 URL…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
+msgid "Previous page"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
+msgid "Really attempt to install <em>%h</em>?"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
+msgid "Remove"
+msgstr "제거"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
+msgid "Remove package <em>%h</em>"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
+msgid "Remove…"
+msgstr "제거…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
+msgid "Require approx. %1024mB size for %d package(s) to install."
+msgstr ""
+
+#: 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: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:508
+msgid "Requires update to %h %h"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
+msgid "Reset"
+msgstr "초기화"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+#, fuzzy
+msgid "SHA256"
+msgstr "SHA256"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
+msgid "Save"
+msgstr "저장"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
+msgid "Saving configuration data…"
+msgstr "장치 설정 저장중…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
+msgid "Size"
+msgstr "크기"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
+msgid "Size (.ipk)"
+msgstr "크기 (.ipk)"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
+#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
+msgid "Software"
+msgstr "소프트웨어"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
+msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
+msgstr ""
+
+#: 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: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: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:1149
+msgid "Type to filter…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
+msgid "Unable to execute <em>opkg %s</em> command: %s"
+msgstr ""
+
+#: 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:910
+msgid "Unable to save %s: %s"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1165
+msgid "Update lists…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
+msgid "Updates"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
+msgid "Upgrade…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1166
+msgid "Upload Package…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1234
+msgid "Version"
+msgstr "버전"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
+msgid "Version incompatible"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
+#, fuzzy
+msgid "Waiting for the <em>opkg %h</em> command to complete…"
+msgstr "실행한 명령이 끝나기를 기다리는 중입니다..."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1198
+msgctxt "Display translation packages"
+msgid "all"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
+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:1143
+msgid "unknown"
+msgstr "알 수 없는"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
+msgid "~%1024mB compressed"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
+msgid "~%1024mB installed"
+msgstr ""
+
+#~ msgid "Free space"
+#~ msgstr "여유 공간"
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"PO-Revision-Date: 2024-10-07 15:11+0000\n"
+"Last-Translator: Džiugas Januševičius <dziugas1959@hotmail.com>\n"
+"Language-Team: Lithuanian <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationsopkg/lt/>\n"
+"Language: lt\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && ("
+"n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Weblate 5.8-dev\n"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
+msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
+msgstr ""
+"%s naudota/-s/-i (%1024mB naudojama/-s/-i iš %1024mB, %1024mB laisva/-s/-i)"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
+msgid ""
+"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
+msgstr ""
+"<strong>Įspėjimas!</strong> Prog. įrangos paketų operacijos *gali* <a "
+"%s>sugadinti Jūsų sistemą</a>."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
+msgid "Actions"
+msgstr "Veiksmai"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
+msgid "Allow overwriting conflicting package files"
+msgstr "Leisti perrašymą konfliktuojamų paketų failus"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
+msgid "Automatically remove unused dependencies"
+msgstr "Automatiškai pašalinti nenaudojamas priklausomybes"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1218
+msgid "Available"
+msgstr "Pasiekiama/-s/-i"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
+msgid ""
+"Below is a listing of the various configuration files used by <em>opkg</em>. "
+"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
+"custom repository entries. The configuration in the other files may be "
+"changed but is usually not preserved by <em>sysupgrade</em>."
+msgstr ""
+"Žemyn šio teksto yra įvairių konfigūracijų sąrašas, kurios naudoja "
+"„<em>opkg</em>“. Naudoti „<em>opkg.conf</em>“ visiems nustatymams ir "
+"„<em>customfeeds.conf</em>“ pasirinktinėms atsisiuntimo šaltinių įvestims. "
+"Konfigūracijos kitose failuose gali būti pakeistos, bet dažniausiai nėra "
+"išlaikomas „<em>sysupgrade</em>“."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
+msgid "Cancel"
+msgstr "Atšaukti"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150
+msgid "Clear"
+msgstr "Išvalyti"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+msgid "Configure opkg…"
+msgstr "Konfigūruoti „opkg“…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
+msgid "Dependencies"
+msgstr "Priklausomybės"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
+msgid "Description"
+msgstr "Aprašas/-ymas"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755
+msgid "Details for package <em>%h</em>"
+msgstr "Išsami informacija paketui <em>„%h“</em>"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142
+msgid "Disk space"
+msgstr "Disko talpa/vietovė"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
+msgid "Dismiss"
+msgstr "Nepaisyti"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1172
+msgid "Display LuCI translation packages"
+msgstr "Rodyti „LuCI“ vertimo/kalbos paketus"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
+msgid "Display all available translation packages"
+msgstr "Rodyti visus galimus vertimo/kalbos paketus"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
+msgid ""
+"Display base translation packages and translation packages for already "
+"installed languages only"
+msgstr ""
+"Rody pagrindinius vertimų/kalbų paketus ir tik tuos kurie jau įdiegti "
+"dabartinei kalbai"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354
+msgid "Displaying %d-%d of %d"
+msgstr "Rodoma %d-%d iš %d"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155
+msgid "Download and install package"
+msgstr "Atsisiųsti ir įdiegti paketą"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
+msgid "Errors"
+msgstr "Klaidos"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
+msgid "Executing package manager"
+msgstr "Paleidžiama paketų tvarkyklė"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
+msgid "Filter"
+msgstr "Filtras/Filtruoti"
+
+#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
+msgid "Grant access to opkg management"
+msgstr "Suteikti prieigą „opkg management“"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1202
+msgid "Hide all translation packages"
+msgstr "Slėpti visus vertimo/kalbos paketus"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066
+msgid "Install"
+msgstr "Įdiegti"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1133
+msgid "Install additional software and upgrade existing packages with opkg."
+msgstr ""
+"Įdiegti papildomas taikomąsias programas ir aukštutiniškai atnaujinti "
+"egzistuojamus prog. įrangos paketus su „opkg“."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr "Įdiegti pritaikytus pasiūlomus vertimo/kalbos paketus"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
+msgid "Installed"
+msgstr "Įdiegta/-s/-i"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
+msgid ""
+"Installing packages from untrusted sources is a potential security risk! "
+"Really attempt to install <em>%h</em>?"
+msgstr ""
+"Įdiegiant paketus iš nepatikimų šaltinių yra galimas saugos pažeidimas! Ar "
+"tikrai norite įdiegti <em>„%h“</em>?"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
+msgid "Install…"
+msgstr "Įdiegti…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
+msgid "Loading configuration data…"
+msgstr "Kraunama konfigūravimo data…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
+msgid "Loading package information…"
+msgstr "Kraunama paketo informacija…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+msgid "MD5"
+msgstr "„MD5“"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
+msgid "Manually install package"
+msgstr "Savarankiškai įdiegti paketą"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
+msgid "Needs upgrade"
+msgstr "Reikia aukštutinio atnaujinimo"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
+msgid "Next page"
+msgstr "Kitas puslapis"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
+msgid "No information available"
+msgstr "Nėra informacijos"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
+msgid "No packages"
+msgstr "Nėra paketų"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
+msgid "No packages matching \"<strong>%h</strong>\"."
+msgstr "Nėra paketų atitinkančių \"<strong>„%h“</strong>\"."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
+msgid "Not available"
+msgstr "Nėra pasiekiama"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
+msgid "Not installed"
+msgstr "Neįdiegta"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
+msgid "OK"
+msgstr "Gerai"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
+msgid "OPKG Configuration"
+msgstr "„OPKG“ konfigūracija"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
+msgid "Package name"
+msgstr "Paketo pavadinimas"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
+msgid "Package name or URL…"
+msgstr "Paketo pavadinimas arba „URL“ – saitas…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
+msgid "Previous page"
+msgstr "Praeitas puslapis"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
+msgid "Really attempt to install <em>%h</em>?"
+msgstr "Ar tikrai norite pamėginti įdiegti <em>„%h“</em>?"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
+msgid "Remove"
+msgstr "Pašalinti"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
+msgid "Remove package <em>%h</em>"
+msgstr "Pašalinti paketą <em>„%h“</em>"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
+msgid "Remove…"
+msgstr "Pašalinti…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
+msgid "Require approx. %1024mB size for %d package(s) to install."
+msgstr ""
+"Reikalaujama apytiksliai %1024mB dydžio %d paketui/-ams, kad įdiegtumėte."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
+msgid "Require version %h %h, installed %h"
+msgstr "Reikalaujama versija %h %h, įdiegta %h"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540
+msgid ""
+"Required dependency package <em>%h</em> is not available in any repository."
+msgstr ""
+"Reikalaujamas priklausomybės paketas „<em>%h</em> “ nėra pasiekiamas jokioje "
+"atsisiuntimo vietovėje."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508
+msgid "Requires update to %h %h"
+msgstr "Reikalaujama, kad atnaujintumėte į %h %h"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
+msgid "Reset"
+msgstr "Grąžinti į pradinę padėti ar būsena"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+msgid "SHA256"
+msgstr "„SHA256“"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
+msgid "Save"
+msgstr "Išsaugoti"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
+msgid "Saving configuration data…"
+msgstr "Saugoma konfigūracijos duomenis…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
+msgid "Size"
+msgstr "Dydis"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
+msgid "Size (.ipk)"
+msgstr "Dydis („*.ipk“)"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
+#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
+msgid "Software"
+msgstr "Taikomoji programa"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr "Pasiūlomi vertimai"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr ""
+"Siūlomi vertimai reikalauja apytiksliai %1024mB papildomos vietos/-ovės."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
+msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
+msgstr "<em>„opkg %h“</em> komanda nepavyko su kodu – <code>%d</code>."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
+msgid ""
+"The installed version of package <em>%h</em> is not compatible, require %s "
+"while %s is installed."
+msgstr ""
+"Įdiegta paketo versija „<em>%h</em>“ nėra palaikomas/-a. Reikalingas „%s“, "
+"kol „%s“ yra įdiegtas."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833
+msgid "The package <em>%h</em> is not available in any configured repository."
+msgstr ""
+"Paketas „<em>%h</em>“ nėra pasiekiamas jokioje konfigūruotame atsisiuntimo "
+"vietovėje."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530
+msgid ""
+"The repository version of package <em>%h</em> is not compatible, require %s "
+"but only %s is available."
+msgstr ""
+"Atsisiuntimo vietovės paketo versija „<em>%h</em>“ nėra palaikomas/-a, nes "
+"reikalinga „%s“, bet tik „%s“ yra pasiekiamas."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
+msgid "Type to filter…"
+msgstr "Rašykite, kad filtruotumėte…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
+msgid "Unable to execute <em>opkg %s</em> command: %s"
+msgstr "Negalima paleisti <em>„opkg %s“</em> komanda: %s"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871
+msgid "Unable to read %s: %s"
+msgstr "Negalima nuskaityti %s: %s"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910
+msgid "Unable to save %s: %s"
+msgstr "Negalima išsaugoti %s: %s"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1165
+msgid "Update lists…"
+msgstr "Atnaujinti sąrašus (reikalingą)…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
+msgid "Updates"
+msgstr "Atnaujinimai/Naujiniai"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
+msgid "Upgrade…"
+msgstr "Aukštutinis atnaujinimas…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1166
+msgid "Upload Package…"
+msgstr "Įkelti paketą…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1234
+msgid "Version"
+msgstr "Versija"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
+msgid "Version incompatible"
+msgstr "Versija nesutampa/nepalaikoma"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
+msgid "Waiting for the <em>opkg %h</em> command to complete…"
+msgstr "Laukiama kol <em>„opkg %h“</em> komanda bus atlikta…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1198
+msgctxt "Display translation packages"
+msgid "all"
+msgstr "visi"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr "filtruota/-s/-i"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
+msgctxt "Display translation packages"
+msgid "none"
+msgstr "joks (-ia/-ie)"
+
+#: 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:1143
+msgid "unknown"
+msgstr "nežinoma/-s/-i"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
+msgid "~%1024mB compressed"
+msgstr "~%1024mB kompresuota/suspausta"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
+msgid "~%1024mB installed"
+msgstr "~%1024mB įdiegtą"
+
+#~ msgid "Free space"
+#~ msgstr "Laisva vieta/-ovė"
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2009-06-10 03:40+0200\n"
+"PO-Revision-Date: 2020-10-15 00:31+0000\n"
+"Last-Translator: Prachi Joshi <josprachi@yahoo.com>\n"
+"Language-Team: Marathi <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationsopkg/mr/>\n"
+"Language: mr\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n > 1;\n"
+"X-Generator: Weblate 4.3-dev\n"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
+msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
+msgid ""
+"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
+msgid "Actions"
+msgstr "क्रिया"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
+msgid "Allow overwriting conflicting package files"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
+msgid "Automatically remove unused dependencies"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1218
+msgid "Available"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
+msgid ""
+"Below is a listing of the various configuration files used by <em>opkg</em>. "
+"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
+"custom repository entries. The configuration in the other files may be "
+"changed but is usually not preserved by <em>sysupgrade</em>."
+msgstr ""
+
+#: 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:1150
+msgid "Clear"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+msgid "Configure opkg…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
+msgid "Dependencies"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
+msgid "Description"
+msgstr "वर्णन"
+
+#: 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:1142
+msgid "Disk space"
+msgstr ""
+
+#: 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:1172
+msgid "Display LuCI translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
+msgid "Display all available translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
+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:1155
+msgid "Download and install package"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
+msgid "Errors"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
+msgid "Executing package manager"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
+msgid "Filter"
+msgstr "फिल्टर करा"
+
+#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
+msgid "Grant access to opkg management"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1202
+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:1133
+msgid "Install additional software and upgrade existing packages with opkg."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
+msgid "Installed"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
+msgid ""
+"Installing packages from untrusted sources is a potential security risk! "
+"Really attempt to install <em>%h</em>?"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
+msgid "Install…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
+msgid "Loading configuration data…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
+msgid "Loading package information…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+msgid "MD5"
+msgstr "MD5"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
+msgid "Manually install package"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
+msgid "Needs upgrade"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
+msgid "Next page"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
+msgid "No information available"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
+msgid "No packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
+msgid "No packages matching \"<strong>%h</strong>\"."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
+msgid "Not available"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
+msgid "Not installed"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
+msgid "OK"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
+msgid "OPKG Configuration"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
+msgid "Package name"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
+msgid "Package name or URL…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
+msgid "Previous page"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
+msgid "Really attempt to install <em>%h</em>?"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
+msgid "Remove"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
+msgid "Remove package <em>%h</em>"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
+msgid "Remove…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
+msgid "Require approx. %1024mB size for %d package(s) to install."
+msgstr ""
+
+#: 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: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:508
+msgid "Requires update to %h %h"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
+msgid "Reset"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+msgid "SHA256"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
+msgid "Save"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
+msgid "Saving configuration data…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
+msgid "Size"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
+msgid "Size (.ipk)"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
+#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
+msgid "Software"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
+msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
+msgstr ""
+
+#: 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: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: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:1149
+msgid "Type to filter…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
+msgid "Unable to execute <em>opkg %s</em> command: %s"
+msgstr ""
+
+#: 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:910
+msgid "Unable to save %s: %s"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1165
+msgid "Update lists…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
+msgid "Updates"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
+msgid "Upgrade…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1166
+msgid "Upload Package…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1234
+msgid "Version"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
+msgid "Version incompatible"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
+msgid "Waiting for the <em>opkg %h</em> command to complete…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1198
+msgctxt "Display translation packages"
+msgid "all"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
+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:1143
+msgid "unknown"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
+msgid "~%1024mB compressed"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
+msgid "~%1024mB installed"
+msgstr ""
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-05-07 17:57+1000\n"
+"PO-Revision-Date: 2024-01-22 09:21+0000\n"
+"Last-Translator: Abdul Muizz Bin Abdul Jalil <abmuizz@gmail.com>\n"
+"Language-Team: Malay <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationsopkg/ms/>\n"
+"Language: ms\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Generator: Weblate 5.4-dev\n"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
+msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
+msgid ""
+"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
+msgid "Actions"
+msgstr "Tindakkan"
+
+#: 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:1218
+msgid "Available"
+msgstr "Boleh didapati"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
+msgid ""
+"Below is a listing of the various configuration files used by <em>opkg</em>. "
+"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
+"custom repository entries. The configuration in the other files may be "
+"changed but is usually not preserved by <em>sysupgrade</em>."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js: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:1150
+msgid "Clear"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+#, fuzzy
+msgid "Configure opkg…"
+msgstr "Konfigurasi"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
+msgid "Dependencies"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
+msgid "Description"
+msgstr "Keterangan"
+
+#: 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:1142
+msgid "Disk space"
+msgstr ""
+
+#: 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:1172
+msgid "Display LuCI translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
+msgid "Display all available translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
+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:1155
+msgid "Download and install package"
+msgstr "Turun dan memasang pakej"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
+msgid "Errors"
+msgstr "Ralat"
+
+#: 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:1147
+msgid "Filter"
+msgstr "Penapis"
+
+#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
+msgid "Grant access to opkg management"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1202
+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:1133
+msgid "Install additional software and upgrade existing packages with opkg."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
+#, fuzzy
+msgid "Installed"
+msgstr "Memasang"
+
+#: 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:288
+#, fuzzy
+msgid "Install…"
+msgstr "Memasang"
+
+#: 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:1084
+msgid "Loading package information…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+msgid "MD5"
+msgstr "MD5"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
+#, fuzzy
+msgid "Manually install package"
+msgstr "Turun dan memasang pakej"
+
+#: 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:1227
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
+msgid "Next page"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
+msgid "No information available"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
+#, fuzzy
+msgid "No packages"
+msgstr "Cari pakej"
+
+#: 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:542
+#, fuzzy
+msgid "Not available"
+msgstr "(%s sedia)"
+
+#: 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:1158
+msgid "OK"
+msgstr "Baik"
+
+#: 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:1233
+msgid "Package name"
+msgstr "Nama pakej"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
+#, fuzzy
+msgid "Package name or URL…"
+msgstr "Nama pakej"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
+msgid "Previous page"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
+msgid "Really attempt to install <em>%h</em>?"
+msgstr ""
+
+#: 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:943
+msgid "Remove package <em>%h</em>"
+msgstr ""
+
+#: 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:737
+msgid "Require approx. %1024mB size for %d package(s) to install."
+msgstr ""
+
+#: 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: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:508
+msgid "Requires update to %h %h"
+msgstr ""
+
+#: 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:1047
+msgid "SHA256"
+msgstr ""
+
+#: 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:905
+msgid "Saving configuration data…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
+msgid "Size"
+msgstr "Saiz"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
+msgid "Size (.ipk)"
+msgstr ""
+
+#: 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: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: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: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: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:1149
+msgid "Type to filter…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
+msgid "Unable to execute <em>opkg %s</em> command: %s"
+msgstr ""
+
+#: 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:910
+msgid "Unable to save %s: %s"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1165
+msgid "Update lists…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
+msgid "Updates"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
+msgid "Upgrade…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1166
+msgid "Upload Package…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1234
+msgid "Version"
+msgstr "Versi"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
+msgid "Version incompatible"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
+msgid "Waiting for the <em>opkg %h</em> command to complete…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1198
+msgctxt "Display translation packages"
+msgid "all"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
+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:1143
+msgid "unknown"
+msgstr "tidak diketahui"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
+msgid "~%1024mB compressed"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
+msgid "~%1024mB installed"
+msgstr ""
--- /dev/null
+msgid ""
+msgstr ""
+"PO-Revision-Date: 2024-01-03 18:37+0000\n"
+"Last-Translator: Allan Nordhøy <epost@anotheragency.no>\n"
+"Language-Team: Norwegian Bokmål <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationsopkg/nb_NO/>\n"
+"Language: nb_NO\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 5.4-dev\n"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
+msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
+msgid ""
+"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
+msgid "Actions"
+msgstr "Handlinger"
+
+#: 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:1218
+msgid "Available"
+msgstr "Tilgjengelig"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
+msgid ""
+"Below is a listing of the various configuration files used by <em>opkg</em>. "
+"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
+"custom repository entries. The configuration in the other files may be "
+"changed but is usually not preserved by <em>sysupgrade</em>."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js: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:1150
+msgid "Clear"
+msgstr "Tøm"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+#, fuzzy
+msgid "Configure opkg…"
+msgstr "Sett opp opkg…"
+
+#: 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:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
+msgid "Description"
+msgstr "Beskrivelse"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755
+msgid "Details for package <em>%h</em>"
+msgstr "Detaljer for pakken <em>%h</em>"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142
+msgid "Disk space"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
+msgid "Dismiss"
+msgstr "Avslå"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1172
+msgid "Display LuCI translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
+msgid "Display all available translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
+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:1155
+msgid "Download and install package"
+msgstr "Last ned og installer pakken"
+
+#: 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:982
+msgid "Executing package manager"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
+#, fuzzy
+msgid "Filter"
+msgstr "Filter"
+
+#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
+msgid "Grant access to opkg management"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1202
+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:1133
+msgid "Install additional software and upgrade existing packages with opkg."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
+#, fuzzy
+msgid "Installed"
+msgstr "Installer"
+
+#: 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:288
+msgid "Install…"
+msgstr "Installer…"
+
+#: 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:1084
+msgid "Loading package information…"
+msgstr "Last inn pakkeinfo …"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+msgid "MD5"
+msgstr "MD5"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
+#, fuzzy
+msgid "Manually install package"
+msgstr "Last ned og installer pakken"
+
+#: 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:1227
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
+msgid "Next page"
+msgstr "Neste side"
+
+#: 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:355
+#, fuzzy
+msgid "No packages"
+msgstr "Finn pakke"
+
+#: 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:542
+#, fuzzy
+msgid "Not available"
+msgstr "Totalt Tilgjengelig"
+
+#: 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:1158
+msgid "OK"
+msgstr "OK"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
+#, fuzzy
+msgid "OPKG Configuration"
+msgstr "<abbr title=\"Open PacKaGe Management\">OPKG</abbr>-Konfigurasjon"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
+msgid "Package name"
+msgstr "Pakkenavn"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
+msgid "Package name or URL…"
+msgstr "Pakkenavn eller nettadresse…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
+msgid "Previous page"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
+msgid "Really attempt to install <em>%h</em>?"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
+msgid "Remove"
+msgstr "Fjern"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
+msgid "Remove package <em>%h</em>"
+msgstr ""
+
+#: 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:737
+msgid "Require approx. %1024mB size for %d package(s) to install."
+msgstr ""
+
+#: 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: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:508
+msgid "Requires update to %h %h"
+msgstr ""
+
+#: 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:1047
+msgid "SHA256"
+msgstr ""
+
+#: 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:905
+msgid "Saving configuration data…"
+msgstr "Lagrer oppsettsdata…"
+
+#: 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:1235
+msgid "Size (.ipk)"
+msgstr "Størrelse (.ipk)"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
+#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
+msgid "Software"
+msgstr "Programvare"
+
+#: 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: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: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: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:1149
+msgid "Type to filter…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
+msgid "Unable to execute <em>opkg %s</em> command: %s"
+msgstr ""
+
+#: 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:910
+msgid "Unable to save %s: %s"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1165
+msgid "Update lists…"
+msgstr "Oppdater lister…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
+#, fuzzy
+msgid "Updates"
+msgstr "Oppdater lister"
+
+#: 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:1166
+msgid "Upload Package…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1234
+msgid "Version"
+msgstr "Versjon"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
+msgid "Version incompatible"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
+msgid "Waiting for the <em>opkg %h</em> command to complete…"
+msgstr "Venter på at <em>opkg %h</em>-kommando fullføres…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1198
+msgctxt "Display translation packages"
+msgid "all"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
+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:1143
+msgid "unknown"
+msgstr "ukjent"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
+msgid "~%1024mB compressed"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
+msgid "~%1024mB installed"
+msgstr ""
+
+#~ msgid "Free space"
+#~ msgstr "Ledig plass"
--- /dev/null
+msgid ""
+msgstr ""
+"Content-Type: text/plain; charset=UTF-8\n"
+"Project-Id-Version: PACKAGE VERSION\n"
+"Last-Translator: Automatically generated\n"
+"Language-Team: none\n"
+"Language: nl\n"
+"MIME-Version: 1.0\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
+msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
+msgid ""
+"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
+msgid "Actions"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
+msgid "Allow overwriting conflicting package files"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
+msgid "Automatically remove unused dependencies"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1218
+msgid "Available"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
+msgid ""
+"Below is a listing of the various configuration files used by <em>opkg</em>. "
+"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
+"custom repository entries. The configuration in the other files may be "
+"changed but is usually not preserved by <em>sysupgrade</em>."
+msgstr ""
+
+#: 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:1150
+msgid "Clear"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+msgid "Configure opkg…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
+msgid "Dependencies"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
+msgid "Description"
+msgstr ""
+
+#: 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:1142
+msgid "Disk space"
+msgstr ""
+
+#: 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:1172
+msgid "Display LuCI translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
+msgid "Display all available translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
+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:1155
+msgid "Download and install package"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
+msgid "Errors"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
+msgid "Executing package manager"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
+msgid "Filter"
+msgstr ""
+
+#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
+msgid "Grant access to opkg management"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1202
+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:1133
+msgid "Install additional software and upgrade existing packages with opkg."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
+msgid "Installed"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
+msgid ""
+"Installing packages from untrusted sources is a potential security risk! "
+"Really attempt to install <em>%h</em>?"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
+msgid "Install…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
+msgid "Loading configuration data…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
+msgid "Loading package information…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+msgid "MD5"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
+msgid "Manually install package"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
+msgid "Needs upgrade"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
+msgid "Next page"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
+msgid "No information available"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
+msgid "No packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
+msgid "No packages matching \"<strong>%h</strong>\"."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
+msgid "Not available"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
+msgid "Not installed"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
+msgid "OK"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
+msgid "OPKG Configuration"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
+msgid "Package name"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
+msgid "Package name or URL…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
+msgid "Previous page"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
+msgid "Really attempt to install <em>%h</em>?"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
+msgid "Remove"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
+msgid "Remove package <em>%h</em>"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
+msgid "Remove…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
+msgid "Require approx. %1024mB size for %d package(s) to install."
+msgstr ""
+
+#: 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: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:508
+msgid "Requires update to %h %h"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
+msgid "Reset"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+msgid "SHA256"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
+msgid "Save"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
+msgid "Saving configuration data…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
+msgid "Size"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
+msgid "Size (.ipk)"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
+#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
+msgid "Software"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
+msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
+msgstr ""
+
+#: 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: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: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:1149
+msgid "Type to filter…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
+msgid "Unable to execute <em>opkg %s</em> command: %s"
+msgstr ""
+
+#: 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:910
+msgid "Unable to save %s: %s"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1165
+msgid "Update lists…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
+msgid "Updates"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
+msgid "Upgrade…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1166
+msgid "Upload Package…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1234
+msgid "Version"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
+msgid "Version incompatible"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
+msgid "Waiting for the <em>opkg %h</em> command to complete…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1198
+msgctxt "Display translation packages"
+msgid "all"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
+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:1143
+msgid "unknown"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
+msgid "~%1024mB compressed"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
+msgid "~%1024mB installed"
+msgstr ""
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: LuCI\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-04-20 09:40+0200\n"
+"PO-Revision-Date: 2024-09-16 17:15+0000\n"
+"Last-Translator: Matthaiks <kitynska@gmail.com>\n"
+"Language-Team: Polish <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationsopkg/pl/>\n"
+"Language: pl\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
+"|| n%100>=20) ? 1 : 2);\n"
+"X-Generator: Weblate 5.8-dev\n"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
+msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
+msgstr "Zajęte: %s (zajęte: %1024mB z %1024mB, wolne: %1024mB)"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
+msgid ""
+"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
+msgstr ""
+"<strong>Uwaga!</strong> Operacje na pakietach mogą <a %s>uszkodzić "
+"system</a>."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
+msgid "Actions"
+msgstr "Akcje"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
+msgid "Allow overwriting conflicting package files"
+msgstr "Zezwalaj na zastępowanie plików powodujących konflikty"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
+msgid "Automatically remove unused dependencies"
+msgstr "Automatycznie usuwaj nieużywane zależności"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1218
+msgid "Available"
+msgstr "Dostępne"
+
+#: 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 ""
+"Poniżej znajduje się lista różnych plików konfiguracyjnych używanych przez "
+"<em>opkg</em>. Użyj <em>opkg.conf</em> dla ustawień globalnych i "
+"<em>customfeeds.conf</em> dla niestandardowych wpisów w repozytorium. "
+"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: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:1150
+msgid "Clear"
+msgstr "Wyczyść"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+msgid "Configure opkg…"
+msgstr "Skonfiguruj opkg…"
+
+#: 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:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
+msgid "Description"
+msgstr "Opis"
+
+#: 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:1142
+msgid "Disk space"
+msgstr "Miejsce na dysku"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
+msgid "Dismiss"
+msgstr "Zamknij"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1172
+msgid "Display LuCI translation packages"
+msgstr "Wyświetl pakiety tłumaczeń LuCI"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
+msgid "Display all available translation packages"
+msgstr "Wyświetl wszystkie dostępne pakiety tłumaczeń"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
+msgid ""
+"Display base translation packages and translation packages for already "
+"installed languages only"
+msgstr ""
+"Wyświetl tylko podstawowe pakiety tłumaczeń i pakiety tłumaczeń dla już "
+"zainstalowanych języków"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354
+msgid "Displaying %d-%d of %d"
+msgstr "Wyświetlanie %d-%d z %d"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155
+msgid "Download and install package"
+msgstr "Pobierz i zainstaluj pakiet"
+
+#: 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:982
+msgid "Executing package manager"
+msgstr "Uruchamianie menedżera pakietów"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
+msgid "Filter"
+msgstr "Filtr"
+
+#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
+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:1202
+msgid "Hide all translation packages"
+msgstr "Ukryj wszystkie pakiety tłumaczeń"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066
+msgid "Install"
+msgstr "Instaluj"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1133
+msgid "Install additional software and upgrade existing packages with opkg."
+msgstr ""
+"Instaluj dodatkowe oprogramowanie i aktualizuj istniejące pakiety za pomocą "
+"opkg."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr "Zainstaluj również sugerowane pakiety tłumaczeń"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
+msgid "Installed"
+msgstr "Zainstalowane"
+
+#: 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 ""
+"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:288
+msgid "Install…"
+msgstr "Zainstaluj.…"
+
+#: 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:1084
+msgid "Loading package information…"
+msgstr "Ładowanie informacji o pakietach…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+msgid "MD5"
+msgstr "MD5"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
+msgid "Manually install package"
+msgstr "Ręczna instalacja pakietu"
+
+#: 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:1227
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
+msgid "Next page"
+msgstr "Następna strona"
+
+#: 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:355
+msgid "No packages"
+msgstr "Brak pakietów"
+
+#: 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:542
+msgid "Not available"
+msgstr "Niedostępne"
+
+#: 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:1158
+msgid "OK"
+msgstr "OK"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
+msgid "OPKG Configuration"
+msgstr "Konfiguracja OPKG"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
+msgid "Package name"
+msgstr "Nazwa pakietu"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
+msgid "Package name or URL…"
+msgstr "Nazwa pakietu lub adres URL…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
+msgid "Previous page"
+msgstr "Poprzednia strona"
+
+#: 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:967
+msgid "Remove"
+msgstr "Usuń"
+
+#: 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:276
+msgid "Remove…"
+msgstr "Usuń…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
+msgid "Require approx. %1024mB size for %d package(s) to install."
+msgstr "Wymaga ok. %1024mB miejsca i instalacji %d pakietu(-ów)."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js: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: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:508
+msgid "Requires update to %h %h"
+msgstr "Wymaga aktualizacji do %h %h"
+
+#: 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:1047
+msgid "SHA256"
+msgstr "SHA256"
+
+#: 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:905
+msgid "Saving configuration data…"
+msgstr "Zapisywanie danych konfiguracyjnych…"
+
+#: 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:1235
+msgid "Size (.ipk)"
+msgstr "Rozmiar (.ipk)"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
+#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
+msgid "Software"
+msgstr "Oprogramowanie"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr "Sugerowane tłumaczenia"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr "Sugerowane tłumaczenia wymagają ok. %1024mB dodatkowej przestrzeni."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
+msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
+msgstr ""
+"Polecenie <em>opkg %h</em> zakończyło się niepowodzeniem z kodem "
+"<code>%d</code>."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
+msgid ""
+"The installed version of package <em>%h</em> is not compatible, require %s "
+"while %s is installed."
+msgstr ""
+"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: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:530
+msgid ""
+"The repository version of package <em>%h</em> is not compatible, require %s "
+"but only %s is available."
+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:1149
+msgid "Type to filter…"
+msgstr "Wpisz, aby przefiltrować…"
+
+#: 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: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: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:1165
+msgid "Update lists…"
+msgstr "Aktualizuj listy…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
+msgid "Updates"
+msgstr "Aktualizacje"
+
+#: 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:1166
+msgid "Upload Package…"
+msgstr "Prześlij pakiet…"
+
+#: 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:1234
+msgid "Version"
+msgstr "Wersja"
+
+#: 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:984
+msgid "Waiting for the <em>opkg %h</em> command to complete…"
+msgstr "Oczekiwanie na wykonanie polecenia <em>opkg %h</em>…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1198
+msgctxt "Display translation packages"
+msgid "all"
+msgstr "wszystkie"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr "przefiltrowane"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
+msgctxt "Display translation packages"
+msgid "none"
+msgstr "żadne"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1143
+msgid "unknown"
+msgstr "nieznana"
+
+#: 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"
+
+#~ msgid "Free space"
+#~ msgstr "Wolna przestrzeń"
+
+#~ msgid "Overwrite files from other package(s)"
+#~ msgstr "Nadpisz pliki z innych pakietów"
+
+#~ msgid ""
+#~ "Require version %h %h,\n"
+#~ "installed %h"
+#~ msgstr ""
+#~ "Wymaga wersji %h %h,\n"
+#~ "zainstalowanej %h"
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2009-05-26 19:03+0200\n"
+"PO-Revision-Date: 2024-03-23 00:13+0000\n"
+"Last-Translator: ssantos <ssantos@web.de>\n"
+"Language-Team: Portuguese <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationsopkg/pt/>\n"
+"Language: pt\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 5.5-dev\n"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
+msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
+msgstr "%s usado (%1024mB de %1024mB usados, %1024mB livre)"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
+msgid ""
+"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
+msgstr ""
+"<strong>Atenção!</strong>Operações de pacotes podem <a %s>destruir o seu "
+"sistema</a>."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
+msgid "Actions"
+msgstr "Ações"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
+msgid "Allow overwriting conflicting package files"
+msgstr "Permitir sobrescrever ficheiros de pacotes em conflito"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
+msgid "Automatically remove unused dependencies"
+msgstr "Remover automaticamente dependências não utilizadas"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1218
+msgid "Available"
+msgstr "Disponível"
+
+#: 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 baixo está uma listagem dos vários ficheiros de configuração utilizados "
+"pelo <em>opkg</em>. Utilize <em>opkg.conf</em> para definições globais e "
+"<em>customfeeds.conf</em> para entradas de repositórios personalizados. A "
+"configuração dos outros ficheiros pode ser alterada mas geralmente não é "
+"preservada pelo <em>sysupgrade</em>."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js: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:1150
+msgid "Clear"
+msgstr "Limpar"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+msgid "Configure opkg…"
+msgstr "Configurar opkg…"
+
+#: 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:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
+msgid "Description"
+msgstr "Descrição"
+
+#: 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:1142
+msgid "Disk space"
+msgstr "Espaço no disco"
+
+#: 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:1172
+msgid "Display LuCI translation packages"
+msgstr "Mostrar pacotes de tradução do LuCI"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
+msgid "Display all available translation packages"
+msgstr "Mostrar todos os pacotes de tradução disponíveis"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
+msgid ""
+"Display base translation packages and translation packages for already "
+"installed languages only"
+msgstr ""
+"Mostrar apenas pacotes de tradução base e pacotes de tradução apenas para "
+"idiomas já instalados"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354
+msgid "Displaying %d-%d of %d"
+msgstr "A mostrar %d-%d de %d"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155
+msgid "Download and install package"
+msgstr "Descarregar e instalar o pacote"
+
+#: 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:982
+msgid "Executing package manager"
+msgstr "A executar o gestor de pacotes"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
+msgid "Filter"
+msgstr "Filtro"
+
+#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
+msgid "Grant access to opkg management"
+msgstr "Conceder acesso à gestão do opkg"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1202
+msgid "Hide all translation packages"
+msgstr "Ocultar todos os pacotes de tradução"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066
+msgid "Install"
+msgstr "Instalar"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1133
+msgid "Install additional software and upgrade existing packages with opkg."
+msgstr "Instale software adicional e atualize pacotes existentes com opkg."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr "Também instalar os pacotes de tradução sugeridos"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
+msgid "Installed"
+msgstr "Instalado"
+
+#: 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 ""
+"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:288
+msgid "Install…"
+msgstr "Instalar…"
+
+#: 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:1084
+msgid "Loading package information…"
+msgstr "A carregar informações do pacote…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+msgid "MD5"
+msgstr "MD5"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
+msgid "Manually install package"
+msgstr "Instalar pacote manualmente"
+
+#: 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:1227
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
+msgid "Next page"
+msgstr "Próxima página"
+
+#: 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:355
+msgid "No packages"
+msgstr "Não há pacotes"
+
+#: 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:542
+msgid "Not available"
+msgstr "Não disponível"
+
+#: 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:1158
+msgid "OK"
+msgstr "OK"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
+msgid "OPKG Configuration"
+msgstr "Configuração do OPKG"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
+msgid "Package name"
+msgstr "Nome do pacote"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
+msgid "Package name or URL…"
+msgstr "Nome do pacote ou URL…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
+msgid "Previous page"
+msgstr "Página anterior"
+
+#: 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:967
+msgid "Remove"
+msgstr "Remover"
+
+#: 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:276
+msgid "Remove…"
+msgstr "Remover…"
+
+#: 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: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: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: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:373
+msgid "Reset"
+msgstr "Reset"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+msgid "SHA256"
+msgstr "SHA256"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
+msgid "Save"
+msgstr "Guardar"
+
+#: 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: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:1235
+msgid "Size (.ipk)"
+msgstr "Tamanho (.ipk)"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
+#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
+msgid "Software"
+msgstr "Software"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr "Traduções sugeridas"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr ""
+"As traduções sugeridas requerem aproximadamente %1024mB de espaço adicional."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
+msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
+msgstr ""
+"O comando <em>opkg %h</em> falhou com o código de erro <code>%d</code>."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
+msgid ""
+"The installed version of package <em>%h</em> is not compatible, require %s "
+"while %s is installed."
+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: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:530
+msgid ""
+"The repository version of package <em>%h</em> is not compatible, require %s "
+"but only %s is available."
+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:1149
+msgid "Type to filter…"
+msgstr "Escreva para filtrar…"
+
+#: 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:871
+msgid "Unable to read %s: %s"
+msgstr "Incapaz de ler %s: %s"
+
+#: 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:1165
+msgid "Update lists…"
+msgstr "Atualizar listas…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
+msgid "Updates"
+msgstr "Atualizações"
+
+#: 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:1166
+msgid "Upload Package…"
+msgstr "Enviar pacote…"
+
+#: 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:1234
+msgid "Version"
+msgstr "Versão"
+
+#: 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: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:1198
+msgctxt "Display translation packages"
+msgid "all"
+msgstr "todos"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr "filtrado"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
+msgctxt "Display translation packages"
+msgid "none"
+msgstr "nenhum"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1143
+msgid "unknown"
+msgstr "desconhecido"
+
+#: 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"
+
+#~ msgid "Free space"
+#~ msgstr "Espaço livre"
+
+#~ msgid "Overwrite files from other package(s)"
+#~ msgstr "Substituir ficheiros de outro(s) pacote(s)"
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2009-06-10 03:41+0200\n"
+"PO-Revision-Date: 2024-07-17 07:32+0000\n"
+"Last-Translator: Janderson Vieira Santos <jandersonvs79@gmail.com>\n"
+"Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/"
+"openwrt/luciapplicationsopkg/pt_BR/>\n"
+"Language: pt_BR\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n > 1;\n"
+"X-Generator: Weblate 5.7-dev\n"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
+msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
+msgstr "%s utilizado (%1024mB utilizados de %1024mB, %1024mB livres)"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
+msgid ""
+"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
+msgstr ""
+"<strong>Aviso!</strong> Operações de pacotes podem <a %s>danificar seu "
+"sistema</a>."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
+msgid "Actions"
+msgstr "Ações"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
+msgid "Allow overwriting conflicting package files"
+msgstr "Permite a substituição dos arquivos dos pacotes com conflito"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
+msgid "Automatically remove unused dependencies"
+msgstr "Remover automaticamente dependentes não-utilizados"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1218
+msgid "Available"
+msgstr "Disponível"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
+msgid ""
+"Below is a listing of the various configuration files used by <em>opkg</em>. "
+"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
+"custom repository entries. The configuration in the other files may be "
+"changed but is usually not preserved by <em>sysupgrade</em>."
+msgstr ""
+"Abaixo está uma lista dos diversos arquivos de configuração utilizados por "
+"<em>opkg</em>. Use <em>opkg.conf</em> para configuração geral e "
+"<em>customfeeds.conf</em> para inserir repositórios personalizados. As "
+"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: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:1150
+msgid "Clear"
+msgstr "Limpar"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+msgid "Configure opkg…"
+msgstr "Configurar o opkg…"
+
+#: 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:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
+msgid "Description"
+msgstr "Descrição"
+
+#: 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:1142
+msgid "Disk space"
+msgstr "Espaço no disco"
+
+#: 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:1172
+msgid "Display LuCI translation packages"
+msgstr "Exibe os pacotes de tradução do LuCI"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
+msgid "Display all available translation packages"
+msgstr "Exibe todos os pacotes de tradução disponíveis"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
+msgid ""
+"Display base translation packages and translation packages for already "
+"installed languages only"
+msgstr ""
+"Exibe os pacotes base de tradução e os pacotes de tradução apenas para os "
+"idiomas já instalados"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354
+msgid "Displaying %d-%d of %d"
+msgstr "Exibindo %d-%d de %d"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155
+msgid "Download and install package"
+msgstr "Baixe e instale o pacote"
+
+#: 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:982
+msgid "Executing package manager"
+msgstr "Executando o gerenciador de pacotes"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
+msgid "Filter"
+msgstr "Filtro"
+
+#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
+msgid "Grant access to opkg management"
+msgstr "Conceder acesso ao gerenciador opkg"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1202
+msgid "Hide all translation packages"
+msgstr "Oculte todos os pacotes de tradução"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066
+msgid "Install"
+msgstr "Instalar"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1133
+msgid "Install additional software and upgrade existing packages with opkg."
+msgstr "Instale software adicional e atualize pacotes existentes com o opkg."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr "Instale também os pacotes sugeridos de tradução"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
+msgid "Installed"
+msgstr "Instalado"
+
+#: 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 ""
+"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:288
+msgid "Install…"
+msgstr "Instalar…"
+
+#: 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:1084
+msgid "Loading package information…"
+msgstr "Carregando informações de pacotes…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+msgid "MD5"
+msgstr "MD5"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
+msgid "Manually install package"
+msgstr "Instalar o pacote manualmente"
+
+#: 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:1227
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
+msgid "Next page"
+msgstr "Próxima página"
+
+#: 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:355
+msgid "No packages"
+msgstr "Sem pacotes"
+
+#: 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:542
+msgid "Not available"
+msgstr "Não disponível"
+
+#: 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:1158
+msgid "OK"
+msgstr "OK"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
+msgid "OPKG Configuration"
+msgstr "Configuração do OPKG"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
+msgid "Package name"
+msgstr "Nome do Pacote"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
+msgid "Package name or URL…"
+msgstr "Nome do pacote ou URL…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
+msgid "Previous page"
+msgstr "Página anterior"
+
+#: 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:967
+msgid "Remove"
+msgstr "Remover"
+
+#: 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:276
+msgid "Remove…"
+msgstr "Remover…"
+
+#: 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."
+
+#: 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: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: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:373
+msgid "Reset"
+msgstr "Limpar"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+msgid "SHA256"
+msgstr "SHA256"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
+msgid "Save"
+msgstr "Salvar"
+
+#: 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: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:1235
+msgid "Size (.ipk)"
+msgstr "Tamanho (.ipk)"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
+#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
+msgid "Software"
+msgstr "Software"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr "Traduções sugeridas"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr "As traduções sugeridas precisam de aprox. %1024mB de espaço adicional."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
+msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
+msgstr "O comando <em>opkg %h</em> falhou com o código <code>%d</code>."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
+msgid ""
+"The installed version of package <em>%h</em> is not compatible, require %s "
+"while %s is installed."
+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: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:530
+msgid ""
+"The repository version of package <em>%h</em> is not compatible, require %s "
+"but only %s is available."
+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:1149
+msgid "Type to filter…"
+msgstr "Digite para filtrar…"
+
+#: 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:871
+msgid "Unable to read %s: %s"
+msgstr "Impossível ler %s: %s"
+
+#: 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:1165
+msgid "Update lists…"
+msgstr "Atualizar listas…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
+msgid "Updates"
+msgstr "Atualizações"
+
+#: 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:1166
+msgid "Upload Package…"
+msgstr "Enviar Pacote…"
+
+#: 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:1234
+msgid "Version"
+msgstr "Versão"
+
+#: 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: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:1198
+msgctxt "Display translation packages"
+msgid "all"
+msgstr "todos"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr "filtrado"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
+msgctxt "Display translation packages"
+msgid "none"
+msgstr "nenhum"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1143
+msgid "unknown"
+msgstr "desconhecido"
+
+#: 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"
+
+#~ msgid "Free space"
+#~ msgstr "Espaço livre"
+
+#~ msgid "Overwrite files from other package(s)"
+#~ msgstr "Sobrescrever arquivos de outro(s) pacote(s)"
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"PO-Revision-Date: 2023-03-09 19:13+0000\n"
+"Last-Translator: Simona Iacob <s@zp1.net>\n"
+"Language-Team: Romanian <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationsopkg/ro/>\n"
+"Language: ro\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < "
+"20)) ? 1 : 2;\n"
+"X-Generator: Weblate 4.16.2-dev\n"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
+msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
+msgid ""
+"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
+msgid "Actions"
+msgstr "Acțiuni"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
+msgid "Allow overwriting conflicting package files"
+msgstr "Permiteți suprascrierea fișierelor pachetelor conflictuale"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
+msgid "Automatically remove unused dependencies"
+msgstr "Eliminați automat dependențele neutilizate"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1218
+msgid "Available"
+msgstr "Disponibile"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
+msgid ""
+"Below is a listing of the various configuration files used by <em>opkg</em>. "
+"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
+"custom repository entries. The configuration in the other files may be "
+"changed but is usually not preserved by <em>sysupgrade</em>."
+msgstr ""
+"Mai jos este o listă a diferitelor fișiere de configurare utilizate de "
+"<em>opkg</em>. Folosiți <em>opkg.conf</em> pentru setările globale și "
+"<em>customfeeds.conf</em> pentru intrările personalizate ale depozitelor. "
+"Configurația din celelalte fișiere poate fi modificată, dar de obicei nu "
+"este păstrată de <em>sysupgrade</em>."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js: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:1150
+msgid "Clear"
+msgstr "Curățați"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+msgid "Configure opkg…"
+msgstr "Configurați opkg…"
+
+#: 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:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
+msgid "Description"
+msgstr "Descriere"
+
+#: 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:1142
+msgid "Disk space"
+msgstr ""
+
+#: 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:1172
+msgid "Display LuCI translation packages"
+msgstr "Afișați pachetele de traducere LuCI"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
+msgid "Display all available translation packages"
+msgstr "Afișați toate pachetele de traducere disponibile"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
+msgid ""
+"Display base translation packages and translation packages for already "
+"installed languages only"
+msgstr ""
+"Afișați pachetele de traducere de bază și pachetele de traducere numai "
+"pentru limbile deja instalate"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js: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:1155
+msgid "Download and install package"
+msgstr "Descărcați și instalați pachetul"
+
+#: 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:982
+msgid "Executing package manager"
+msgstr "Executarea managerului de pachete"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
+msgid "Filter"
+msgstr "Filtru"
+
+#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
+msgid "Grant access to opkg management"
+msgstr "Acordați acces la gestionarea opkg"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1202
+msgid "Hide all translation packages"
+msgstr "Ascundeți toate pachetele de traducere"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066
+msgid "Install"
+msgstr "Instalați"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1133
+msgid "Install additional software and upgrade existing packages with opkg."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr "Instalați și pachetele de traducere sugerate"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
+msgid "Installed"
+msgstr "Instalat"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
+msgid ""
+"Installing packages from untrusted sources is a potential security risk! "
+"Really attempt to install <em>%h</em>?"
+msgstr ""
+"Instalarea de pachete din surse nesigure reprezintă un potențial risc de "
+"securitate! Încercați cu adevărat să instalați <em>%h</em>?"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
+msgid "Install…"
+msgstr "Instalați…"
+
+#: 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:1084
+msgid "Loading package information…"
+msgstr "Se încarcă informațiile despre pachet…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+msgid "MD5"
+msgstr "MD5"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
+msgid "Manually install package"
+msgstr "Instalați manual pachetul"
+
+#: 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:1227
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
+msgid "Next page"
+msgstr "Pagina următoare"
+
+#: 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:355
+msgid "No packages"
+msgstr "Fără pachete"
+
+#: 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:542
+msgid "Not available"
+msgstr "Nu este disponibil"
+
+#: 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:1158
+msgid "OK"
+msgstr "OK"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
+msgid "OPKG Configuration"
+msgstr "Configurația OPKG"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
+msgid "Package name"
+msgstr "Numele pachetului"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
+msgid "Package name or URL…"
+msgstr "Numele pachetului sau URL-ul…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
+msgid "Previous page"
+msgstr "Pagina anterioară"
+
+#: 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:967
+msgid "Remove"
+msgstr "Eliminați"
+
+#: 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:276
+msgid "Remove…"
+msgstr "Eliminaț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 "Este necesar aproximativ %1024mB pentru instalarea a %d pachete(e)."
+
+#: 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: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:508
+msgid "Requires update to %h %h"
+msgstr "Necesită actualizare la %h %h"
+
+#: 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:1047
+msgid "SHA256"
+msgstr "SHA256"
+
+#: 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:905
+msgid "Saving configuration data…"
+msgstr "Se salvează datele de configurare…"
+
+#: 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:1235
+msgid "Size (.ipk)"
+msgstr "Dimensiune (.ipk)"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
+#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
+msgid "Software"
+msgstr "Software"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr "Traduceri sugerate"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr "Traducerile sugerate necesită aproximativ %1024mB spațiu suplimentar."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
+msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
+msgstr "Comanda <em>opkg %h</em> a eșuat cu codul <code>%d</code>."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
+msgid ""
+"The installed version of package <em>%h</em> is not compatible, require %s "
+"while %s is installed."
+msgstr ""
+"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: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:530
+msgid ""
+"The repository version of package <em>%h</em> is not compatible, require %s "
+"but only %s is available."
+msgstr ""
+"Versiunea din depozit a pachetului <em>%h</em> nu este compatibilă, este "
+"necesar %s dar numai %s este disponibil."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
+msgid "Type to filter…"
+msgstr "Tastați pentru a filtra…"
+
+#: 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: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: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:1165
+msgid "Update lists…"
+msgstr "Actualizați listele…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
+msgid "Updates"
+msgstr "Actualizări"
+
+#: 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:1166
+msgid "Upload Package…"
+msgstr "Încărcați pachetul…"
+
+#: 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:1234
+msgid "Version"
+msgstr "Versiune"
+
+#: 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: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:1198
+msgctxt "Display translation packages"
+msgid "all"
+msgstr "toate"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr "Filtrate"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
+msgctxt "Display translation packages"
+msgid "none"
+msgstr "niciunul"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1143
+msgid "unknown"
+msgstr "necunoscut"
+
+#: 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"
+
+#~ msgid "Free space"
+#~ msgstr "Spațiu liber"
+
+#~ msgid "Overwrite files from other package(s)"
+#~ msgstr "Suprascrierea fișierelor din alt(e) pachet(e)"
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: LuCI: base\n"
+"POT-Creation-Date: 2010-05-09 01:01+0300\n"
+"PO-Revision-Date: 2024-04-12 04:01+0000\n"
+"Last-Translator: st7105 <st7105@gmail.com>\n"
+"Language-Team: Russian <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationsopkg/ru/>\n"
+"Language: ru\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
+"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Weblate 5.5-dev\n"
+"Project-Info: Это технический перевод, не дословный. Главное-удобный русский "
+"интерфейс, все проверялось в графическом режиме, совместим с другими apps\n"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
+msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
+msgstr "%s использовано (%1024mB использовано из %1024mB, %1024mB свободно)"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
+msgid ""
+"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
+msgstr ""
+"<strong>Внимание!</strong> Операции с пакетами могут <a %s>сломать вашу "
+"систему</a>."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
+msgid "Actions"
+msgstr "Действия"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
+msgid "Allow overwriting conflicting package files"
+msgstr "Разрешить перезапись конфликтующих файлов пакетов"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
+msgid "Automatically remove unused dependencies"
+msgstr "Удалить неиспользуемые зависимости"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1218
+msgid "Available"
+msgstr "Доступно"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
+msgid ""
+"Below is a listing of the various configuration files used by <em>opkg</em>. "
+"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
+"custom repository entries. The configuration in the other files may be "
+"changed but is usually not preserved by <em>sysupgrade</em>."
+msgstr ""
+"Ниже приведен список различных файлов конфигурации, используемых <em>opkg</"
+"em>. Используйте файл <em>opkg.conf</em> для глобальных настроек и "
+"<em>customfeeds.conf</em> для пользовательских настроек репозиториев. "
+"Конфигурация в других файлах может производится, но такие настройки могут не "
+"сохраняться утилитой <em>sysupgrade</em>."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
+msgid "Cancel"
+msgstr "Отмена"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150
+msgid "Clear"
+msgstr "Очистить"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+msgid "Configure opkg…"
+msgstr "Настройки"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
+msgid "Dependencies"
+msgstr "Зависимости"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
+msgid "Description"
+msgstr "Описание"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755
+msgid "Details for package <em>%h</em>"
+msgstr "Подробная информация о пакете <em>%h</em>"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142
+msgid "Disk space"
+msgstr "Дисковое пространство"
+
+#: 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:1172
+msgid "Display LuCI translation packages"
+msgstr "Отображение пакетов перевода LuCI"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
+msgid "Display all available translation packages"
+msgstr "Показывать все доступные переводы пакетов"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
+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:1155
+msgid "Download and install package"
+msgstr "Загрузить и установить пакет"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
+msgid "Errors"
+msgstr "Ошибки"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
+msgid "Executing package manager"
+msgstr "Выполнение..."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
+msgid "Filter"
+msgstr "Фильтр"
+
+#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
+msgid "Grant access to opkg management"
+msgstr "Предоставить доступ к управлению opkg"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1202
+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:1133
+msgid "Install additional software and upgrade existing packages with opkg."
+msgstr ""
+"Устанавливайте дополнительное программное обеспечение и обновляйте "
+"существующие пакеты с помощью opkg."
+
+#: 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:1219
+msgid "Installed"
+msgstr "Установлено"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
+msgid ""
+"Installing packages from untrusted sources is a potential security risk! "
+"Really attempt to install <em>%h</em>?"
+msgstr ""
+"Установка пакетов из недоверенных источников может привести к угрозе "
+"безопасности! Вы действительно хотите установить <em>%h</em>?"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
+msgid "Install…"
+msgstr "Установить…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
+msgid "Loading configuration data…"
+msgstr "Загрузка данных конфигурации…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
+msgid "Loading package information…"
+msgstr "Загрузка информации о пакете…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+msgid "MD5"
+msgstr "MD5"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
+msgid "Manually install package"
+msgstr "Ручная установка пакета"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
+msgid "Needs upgrade"
+msgstr "Требуется обновление"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
+msgid "Next page"
+msgstr "Следующая страница"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
+msgid "No information available"
+msgstr "Нет доступной информации"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
+msgid "No packages"
+msgstr "Нет пакетов"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
+msgid "No packages matching \"<strong>%h</strong>\"."
+msgstr "Нет пакетов соответствующих запросу «<strong>%h</strong>»."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
+msgid "Not available"
+msgstr "Не доступно"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
+msgid "Not installed"
+msgstr "Не установлено"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
+msgid "OK"
+msgstr "OK"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
+msgid "OPKG Configuration"
+msgstr "Настройка OPKG"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
+msgid "Package name"
+msgstr "Имя пакета"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
+msgid "Package name or URL…"
+msgstr "Имя пакета или URL…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
+msgid "Previous page"
+msgstr "Предыдущая страница"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
+msgid "Really attempt to install <em>%h</em>?"
+msgstr "Вы действительно хотите установить <em>%h</em>?"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
+msgid "Remove"
+msgstr "Удалить"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
+msgid "Remove package <em>%h</em>"
+msgstr "Удалить пакет <em>%h</em>"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
+msgid "Remove…"
+msgstr "Удалить…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
+msgid "Require approx. %1024mB size for %d package(s) to install."
+msgstr ""
+"Требуется примерно %1024mБ свободного пространства для установки %d пакетов."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
+msgid "Require version %h %h, installed %h"
+msgstr "Требуемая версия %h %h, установлена %h"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540
+msgid ""
+"Required dependency package <em>%h</em> is not available in any repository."
+msgstr ""
+"Требуемый в качестве зависимости пакет <em>%h</em> не доступен ни в одном из "
+"сконфигурированных репозиториев."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508
+msgid "Requires update to %h %h"
+msgstr "Требуется обновить до %h %h"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
+msgid "Reset"
+msgstr "Очистить"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+msgid "SHA256"
+msgstr "SHA256"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
+msgid "Save"
+msgstr "Сохранить"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
+msgid "Saving configuration data…"
+msgstr "Сохранение данных конфигурации…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
+msgid "Size"
+msgstr "Размер"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
+msgid "Size (.ipk)"
+msgstr "Размер (.ipk)"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
+#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
+msgid "Software"
+msgstr "Менеджер пакетов"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr "Рекомендуемые переводы"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr "Рекомендуемые переводы требуют примерно %1024мБ дополнительного места."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
+msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
+msgstr "Команда <em>opkg %h</em> завершилась с кодом ошибки <code>%d</code>."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
+msgid ""
+"The installed version of package <em>%h</em> is not compatible, require %s "
+"while %s is installed."
+msgstr ""
+"Установленная версия пакета <em>%h</em> не совместима. Требуется версия %s, "
+"а установлена %s."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833
+msgid "The package <em>%h</em> is not available in any configured repository."
+msgstr ""
+"Пакет <em>%h</em> не доступен ни в одном из сконфигурированных репозиториев."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530
+msgid ""
+"The repository version of package <em>%h</em> is not compatible, require %s "
+"but only %s is available."
+msgstr ""
+"Версия пакета <em>%h</em>, доступная в репозитории, несовместима. Требуется "
+"%s, но доступна только %s."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
+msgid "Type to filter…"
+msgstr "Введите для фильтрации"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
+msgid "Unable to execute <em>opkg %s</em> command: %s"
+msgstr "Не удалось выполнить команду <em>opkg %s</em>: %s"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871
+msgid "Unable to read %s: %s"
+msgstr "Не удалось прочитать %s: %s"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910
+msgid "Unable to save %s: %s"
+msgstr "Не удалось сохранить %s: %s"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1165
+msgid "Update lists…"
+msgstr "Обновить списки"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
+msgid "Updates"
+msgstr "Обновления"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
+msgid "Upgrade…"
+msgstr "Обновление…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1166
+msgid "Upload Package…"
+msgstr "Загрузить пакет"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1234
+msgid "Version"
+msgstr "Версия"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
+msgid "Version incompatible"
+msgstr "Версия несовместима"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
+msgid "Waiting for the <em>opkg %h</em> command to complete…"
+msgstr "Выполнение команды <em>opkg %h</em>…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1198
+msgctxt "Display translation packages"
+msgid "all"
+msgstr "все"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr "отфильтровать"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
+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:1143
+msgid "unknown"
+msgstr "неизвестно"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
+msgid "~%1024mB compressed"
+msgstr "~%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Б установлено"
+
+#~ msgid "Free space"
+#~ msgstr "Свободное место"
+
+#~ msgid "Overwrite files from other package(s)"
+#~ msgstr "Переписать файлы для других пакетов"
+
+#~ msgid ""
+#~ "Require version %h %h,\n"
+#~ "installed %h"
+#~ msgstr ""
+#~ "Требуется версия %h %h,\n"
+#~ "установлен %h"
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"PO-Revision-Date: 2023-07-10 15:50+0000\n"
+"Last-Translator: MaycoH <hudec.marian@hotmail.com>\n"
+"Language-Team: Slovak <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationsopkg/sk/>\n"
+"Language: sk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
+"X-Generator: Weblate 5.0-dev\n"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
+msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
+msgid ""
+"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
+msgid "Actions"
+msgstr "Akcie"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
+msgid "Allow overwriting conflicting package files"
+msgstr "Povoliť prepísanie konfliktných súborov balíkov"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
+msgid "Automatically remove unused dependencies"
+msgstr "Automatické odstránenie nepoužitých závislostí"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1218
+msgid "Available"
+msgstr "Dostupné"
+
+#: 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 ""
+"Nižšie je uvedený zoznam rôznych konfiguračných súborov, ktoré používa "
+"<em>opkg</em>. Pre globálne nastavenia použite <em>opkg.conf</em> a pre "
+"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: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:1150
+msgid "Clear"
+msgstr "Vymazať"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+msgid "Configure opkg…"
+msgstr "Konfigurovať opkg…"
+
+#: 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:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
+msgid "Description"
+msgstr "Popis"
+
+#: 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:1142
+msgid "Disk space"
+msgstr ""
+
+#: 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:1172
+#, fuzzy
+msgid "Display LuCI translation packages"
+msgstr "Zobraziť balíky prekladov LuCI"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
+#, fuzzy
+msgid "Display all available translation packages"
+msgstr "Zobraziť všetky dostupné balíky prekladov"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
+#, fuzzy
+msgid ""
+"Display base translation packages and translation packages for already "
+"installed languages only"
+msgstr ""
+"Zobraziť základné balíky prekladov a balíky prekladov len pre už "
+"nainštalované jazyky"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354
+msgid "Displaying %d-%d of %d"
+msgstr "Zobrazených %d-%d z %d"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155
+msgid "Download and install package"
+msgstr "Prevziať a nainštalovať balík"
+
+#: 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:982
+msgid "Executing package manager"
+msgstr "Spúšťanie správcu balíkov"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
+msgid "Filter"
+msgstr "Filter"
+
+#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
+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:1202
+#, fuzzy
+msgid "Hide all translation packages"
+msgstr "Skryť všetky balíky prekladov"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066
+msgid "Install"
+msgstr "Inštalovať"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1133
+msgid "Install additional software and upgrade existing packages with opkg."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+#, fuzzy
+msgid "Install suggested translation packages as well"
+msgstr "Inštalovať aj navrhované balíky prekladov"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
+msgid "Installed"
+msgstr "Nainštalované"
+
+#: 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 ""
+"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:288
+msgid "Install…"
+msgstr "Inštalovať…"
+
+#: 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: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:1046
+msgid "MD5"
+msgstr "MD5"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
+msgid "Manually install package"
+msgstr "Manuálna inštalácia balíka"
+
+#: 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:1227
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
+msgid "Next page"
+msgstr "Ďalšia strana"
+
+#: 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:355
+msgid "No packages"
+msgstr "Žiadne balíčky"
+
+#: 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:542
+msgid "Not available"
+msgstr "Nie je k dispozícií"
+
+#: 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:1158
+msgid "OK"
+msgstr "OK"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
+msgid "OPKG Configuration"
+msgstr "Konfigurácia OPKG"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
+msgid "Package name"
+msgstr "Názov balíka"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
+msgid "Package name or URL…"
+msgstr "Názov balíka alebo URL adresa…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
+msgid "Previous page"
+msgstr "Predošlá strana"
+
+#: 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:967
+msgid "Remove"
+msgstr "Odstrániť"
+
+#: 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:276
+msgid "Remove…"
+msgstr "Odstrániť…"
+
+#: 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)."
+
+#: 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: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: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:373
+msgid "Reset"
+msgstr "Obnoviť"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+msgid "SHA256"
+msgstr "SHA256"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
+msgid "Save"
+msgstr "Uložiť"
+
+#: 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: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:1235
+msgid "Size (.ipk)"
+msgstr "Veľkosť (.ipk)"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
+#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
+msgid "Software"
+msgstr "Softvér"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr "Navrhované preklady"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr "Navrhované preklady vyžadujú približne %1024mB ďalšieho priestoru."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
+msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
+msgstr "Príkaz <em>opkg %h</em> zlyhal s kódom <code>%d</code>."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
+msgid ""
+"The installed version of package <em>%h</em> is not compatible, require %s "
+"while %s is installed."
+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: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:530
+msgid ""
+"The repository version of package <em>%h</em> is not compatible, require %s "
+"but only %s is available."
+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:1149
+msgid "Type to filter…"
+msgstr "Reťazec na filtrovanie…"
+
+#: 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: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: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:1165
+msgid "Update lists…"
+msgstr "Aktualizovať zoznamy…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
+msgid "Updates"
+msgstr "Aktualizácie"
+
+#: 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:1166
+msgid "Upload Package…"
+msgstr "Odovzdať balík…"
+
+#: 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:1234
+msgid "Version"
+msgstr "Verzia"
+
+#: 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: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:1198
+msgctxt "Display translation packages"
+msgid "all"
+msgstr "všetko"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr "filtrované"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
+msgctxt "Display translation packages"
+msgid "none"
+msgstr "žiadne"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1143
+msgid "unknown"
+msgstr "neznámy"
+
+#: 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"
+
+#~ msgid "Free space"
+#~ msgstr "Voľné miesto"
+
+#~ msgid "Overwrite files from other package(s)"
+#~ msgstr "Prepísať súbory z iného balíka(kov)"
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"PO-Revision-Date: 2024-05-12 08:00+0000\n"
+"Last-Translator: Daniel Nilsson <daniel.nilsson94@outlook.com>\n"
+"Language-Team: Swedish <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationsopkg/sv/>\n"
+"Language: sv\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 5.5.4\n"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
+msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
+msgstr "%s använt (%1024mB använt av %1024mB, %1024mB ledigt)"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
+msgid ""
+"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
+msgstr ""
+"<strong>Varning!</strong> Ändringar av paket kan <a %s>förstöra ditt "
+"system</a>."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
+msgid "Actions"
+msgstr "Åtgärder"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
+msgid "Allow overwriting conflicting package files"
+msgstr "Tillåt överskrivning av paketfiler med konflikter"
+
+#: 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:1218
+msgid "Available"
+msgstr "Tillgänglig"
+
+#: 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 ""
+"Nedan är en lista på olika konfigurationsfiler som används av <em>opkg</em>. "
+"Använd <em>opkg.conf</em> för globala inställningar och <em>customfeeds."
+"conf</em> för anpassade filförrådsposter. Konfigurationen i de andra filerna "
+"kan vara ändrade, men är oftast inte reserverad av <em>sysupgrade</em>."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
+msgid "Cancel"
+msgstr "Avbryt"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150
+msgid "Clear"
+msgstr "Rensa"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+msgid "Configure opkg…"
+msgstr "Ställ in opkg…"
+
+#: 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:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
+msgid "Description"
+msgstr "Beskrivning"
+
+#: 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:1142
+msgid "Disk space"
+msgstr "Diskutrymme"
+
+#: 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:1172
+msgid "Display LuCI translation packages"
+msgstr "Visa LuCI översättningspaket"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
+msgid "Display all available translation packages"
+msgstr "Visa alla tillgängliga översättningspaket"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
+msgid ""
+"Display base translation packages and translation packages for already "
+"installed languages only"
+msgstr ""
+"Visa endast grundöversättningspaket och översättningspaket för installerade "
+"språk"
+
+#: 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:1155
+msgid "Download and install package"
+msgstr "Ladda ner och installera paket"
+
+#: 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:982
+msgid "Executing package manager"
+msgstr "Kör pakethanteraren"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
+msgid "Filter"
+msgstr "Filter"
+
+#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
+msgid "Grant access to opkg management"
+msgstr "Tillåt åtkomst till hantering av opkg"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1202
+msgid "Hide all translation packages"
+msgstr "Göm alla översättningspaket"
+
+#: 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:1133
+msgid "Install additional software and upgrade existing packages with opkg."
+msgstr "Installera extra mjukvara och uppgradera existerande paket med opkg."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr "Installera också föreslagna översättningspaket"
+
+#: 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:1219
+msgid "Installed"
+msgstr "Installerad"
+
+#: 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 ""
+"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:288
+msgid "Install…"
+msgstr "Installera…"
+
+#: 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:1084
+msgid "Loading package information…"
+msgstr "Laddar paketinformationen…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+msgid "MD5"
+msgstr "MD5"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
+msgid "Manually install package"
+msgstr "Installera paket manuellt"
+
+#: 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:1227
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
+msgid "Next page"
+msgstr "Nästa sida"
+
+#: 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:355
+msgid "No packages"
+msgstr "Inga paket"
+
+#: 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:542
+msgid "Not available"
+msgstr "Ej tillgängligt"
+
+#: 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:1158
+msgid "OK"
+msgstr "OK"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
+msgid "OPKG Configuration"
+msgstr "Konfiguration av OPKG"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
+msgid "Package name"
+msgstr "Paketnamn"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
+msgid "Package name or URL…"
+msgstr "Paketnamn eller URL…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
+msgid "Previous page"
+msgstr "Föregående sida"
+
+#: 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:967
+msgid "Remove"
+msgstr "Ta bort"
+
+#: 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:276
+msgid "Remove…"
+msgstr "Ta bort…"
+
+#: 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: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: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: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:373
+msgid "Reset"
+msgstr "Återställ"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+msgid "SHA256"
+msgstr "SHA256"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
+msgid "Save"
+msgstr "Spara"
+
+#: 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: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:1235
+msgid "Size (.ipk)"
+msgstr "Storlek (.ipk)"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
+#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
+msgid "Software"
+msgstr "Mjukvara"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr "Föreslagna översättningar"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr "Föreslagna översättningar kommer kräva ungefär %1024mB extra utrymme."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
+msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
+msgstr "<em>opkg %h</em>-kommandot misslyckades med koden <code>%d</code>."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
+msgid ""
+"The installed version of package <em>%h</em> is not compatible, require %s "
+"while %s is installed."
+msgstr ""
+"Den installerade versionen av paketet <em>%h</em>är inte kompatibel, kräver "
+"%s medans %s är installerat."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js: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:530
+msgid ""
+"The repository version of package <em>%h</em> is not compatible, require %s "
+"but only %s is available."
+msgstr ""
+"Filförrådets version av paketet <em>%h</em> är inte tillgängligt, kräver %s, "
+"men endast %s är tillgänglig."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
+msgid "Type to filter…"
+msgstr "Skriv för att filtrera…"
+
+#: 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: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:910
+msgid "Unable to save %s: %s"
+msgstr "Kunde inte spara %s: %s"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1165
+msgid "Update lists…"
+msgstr "Uppdatera listor…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
+msgid "Updates"
+msgstr "Uppdateringar"
+
+#: 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:1166
+msgid "Upload Package…"
+msgstr "Ladda upp paket…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1234
+msgid "Version"
+msgstr "Version"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
+msgid "Version incompatible"
+msgstr "Versionen passar inte"
+
+#: 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:1198
+msgctxt "Display translation packages"
+msgid "all"
+msgstr "alla"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr "filtrerade"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
+msgctxt "Display translation packages"
+msgid "none"
+msgstr "inga"
+
+#: 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:1143
+msgid "unknown"
+msgstr "okänd"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
+msgid "~%1024mB compressed"
+msgstr "~%1024mB komprimerat"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
+msgid "~%1024mB installed"
+msgstr "~%1024mB installerat"
+
+#~ msgid "Free space"
+#~ msgstr "Fritt utrymme"
+
+#~ msgid "Overwrite files from other package(s)"
+#~ msgstr "Skriv över filer från andra paket(en)"
--- /dev/null
+msgid ""
+msgstr "Content-Type: text/plain; charset=UTF-8"
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:1095
+msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:1135
+msgid ""
+"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:1163
+msgid "Actions"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:792
+msgid "Allow overwriting conflicting package files"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:953
+msgid "Automatically remove unused dependencies"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:1218
+msgid "Available"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:878
+msgid ""
+"Below is a listing of the various configuration files used by <em>ipkg</em>. "
+"Use <em>ipkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
+"custom repository entries. The configuration in the other files may be "
+"changed but is usually not preserved by <em>sysupgrade</em>."
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:800
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:846
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:893
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:959
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:1056
+msgid "Cancel"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:1150
+msgid "Clear"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:1167
+msgid "Configure ipkg…"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:744
+msgid "Dependencies"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:750
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:938
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:1236
+msgid "Description"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:755
+msgid "Details for package <em>%h</em>"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:1142
+msgid "Disk space"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:1030
+msgid "Dismiss"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:1172
+msgid "Display LuCI translation packages"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:1189
+msgid "Display all available translation packages"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:1175
+msgid ""
+"Display base translation packages and translation packages for already "
+"installed languages only"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:354
+msgid "Displaying %d-%d of %d"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:1155
+msgid "Download and install package"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:1008
+msgid "Errors"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:982
+msgid "Executing package manager"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:1147
+msgid "Filter"
+msgstr ""
+
+#: applications/luci-app-ipkg/root/usr/share/rpcd/acl.d/luci-app-ipkg.json:3
+msgid "Grant access to ipkg management"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:1202
+msgid "Hide all translation packages"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:808
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:824
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:1066
+msgid "Install"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:1133
+msgid "Install additional software and upgrade existing packages with ipkg."
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:780
+msgid "Install suggested translation packages as well"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:299
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:522
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:1219
+msgid "Installed"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:830
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:1043
+msgid ""
+"Installing packages from untrusted sources is a potential security risk! "
+"Really attempt to install <em>%h</em>?"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:288
+msgid "Install…"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:857
+msgid "Loading configuration data…"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:1084
+msgid "Loading package information…"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:1046
+msgid "MD5"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:840
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:1042
+msgid "Manually install package"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:510
+msgid "Needs upgrade"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:1227
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:1245
+msgid "Next page"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:368
+msgid "No information available"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:355
+msgid "No packages"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:372
+msgid "No packages matching \"<strong>%h</strong>\"."
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:542
+msgid "Not available"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:527
+msgid "Not installed"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:1158
+msgid "OK"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:856
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:904
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:918
+msgid "OPKG Configuration"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:1233
+msgid "Package name"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:1157
+msgid "Package name or URL…"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:1225
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:1243
+msgid "Previous page"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:837
+msgid "Really attempt to install <em>%h</em>?"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:967
+msgid "Remove"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:943
+msgid "Remove package <em>%h</em>"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:276
+msgid "Remove…"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:737
+msgid "Require approx. %1024mB size for %d package(s) to install."
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:517
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:535
+msgid "Require version %h %h, installed %h"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:540
+msgid ""
+"Required dependency package <em>%h</em> is not available in any repository."
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:508
+msgid "Requires update to %h %h"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:373
+msgid "Reset"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:1047
+msgid "SHA256"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:915
+msgid "Save"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:905
+msgid "Saving configuration data…"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:758
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:946
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:1045
+msgid "Size"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:1235
+msgid "Size (.ipk)"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:1130
+#: applications/luci-app-ipkg/root/usr/share/luci/menu.d/luci-app-ipkg.json:3
+msgid "Software"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:761
+msgid "Suggested translations"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:1013
+msgid "The <em>ipkg %h</em> command failed with code <code>%d</code>."
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:513
+msgid ""
+"The installed version of package <em>%h</em> is not compatible, require %s "
+"while %s is installed."
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:833
+msgid "The package <em>%h</em> is not available in any configured repository."
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.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-ipkg/htdocs/luci-static/resources/view/package_manager.js:1149
+msgid "Type to filter…"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:1032
+msgid "Unable to execute <em>ipkg %s</em> command: %s"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:871
+msgid "Unable to read %s: %s"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:910
+msgid "Unable to save %s: %s"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:1165
+msgid "Update lists…"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:1220
+msgid "Updates"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:265
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:294
+msgid "Upgrade…"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:1166
+msgid "Upload Package…"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:757
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:945
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:1234
+msgid "Version"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:519
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:537
+msgid "Version incompatible"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:984
+msgid "Waiting for the <em>ipkg %h</em> command to complete…"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:1198
+msgctxt "Display translation packages"
+msgid "all"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:1185
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:1211
+msgctxt "Display translation packages"
+msgid "none"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:673
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:934
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:1143
+msgid "unknown"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:671
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:932
+msgid "~%1024mB compressed"
+msgstr ""
+
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:669
+#: applications/luci-app-ipkg/htdocs/luci-static/resources/view/package_manager.js:930
+msgid "~%1024mB installed"
+msgstr ""
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"POT-Creation-Date: \n"
+"PO-Revision-Date: 2024-03-24 13:06+0000\n"
+"Last-Translator: Oğuz Ersen <oguz@ersen.moe>\n"
+"Language-Team: Turkish <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationsopkg/tr/>\n"
+"Language: tr\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Generator: Weblate 5.5-dev\n"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
+msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
+msgstr "%s kullanılıyor (%1024mB / %1024mB kullanılıyor, %1024mB boş)"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
+msgid ""
+"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
+msgstr ""
+"<strong>Uyarı!</strong> Paket işlemleri <a %s>sisteminizi bozabilir</a>."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
+msgid "Actions"
+msgstr "Eylemler"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
+msgid "Allow overwriting conflicting package files"
+msgstr "Çakışan paket dosyalarının üzerine yazılmasına izin ver"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
+msgid "Automatically remove unused dependencies"
+msgstr "Kullanılmayan bağımlılıkları otomatik olarak kaldır"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1218
+msgid "Available"
+msgstr "Kullanılabilir"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
+msgid ""
+"Below is a listing of the various configuration files used by <em>opkg</em>. "
+"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
+"custom repository entries. The configuration in the other files may be "
+"changed but is usually not preserved by <em>sysupgrade</em>."
+msgstr ""
+"Aşağıda <em>opkg</em> tarafından kullanılan çeşitli yapılandırma "
+"dosyalarının bir listesi bulunmaktadır. Genel ayarlar için <em>opkg.conf</"
+"em> ve özel depo girişleri için <em>customfeeds.conf</em> kullanın. Diğer "
+"dosyalardaki yapılandırmalar değiştirilebilir ancak genellikle "
+"<em>sysupgrade</em> tarafından korunmaz."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js: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:1150
+msgid "Clear"
+msgstr "Temizle"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+msgid "Configure opkg…"
+msgstr "opkg'yi yapılandır…"
+
+#: 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:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
+msgid "Description"
+msgstr "Açıklama"
+
+#: 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:1142
+msgid "Disk space"
+msgstr "Disk alanı"
+
+#: 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:1172
+msgid "Display LuCI translation packages"
+msgstr "LuCI çeviri paketlerini görüntüle"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
+msgid "Display all available translation packages"
+msgstr "Mevcut tüm çeviri paketlerini göster"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
+msgid ""
+"Display base translation packages and translation packages for already "
+"installed languages only"
+msgstr ""
+"Yalnızca önceden kurulmuş diller için temel çeviri paketlerini ve çeviri "
+"paketlerini görüntüle"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354
+msgid "Displaying %d-%d of %d"
+msgstr "Görüntülenen %d-%d toplam %d"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155
+msgid "Download and install package"
+msgstr "Paket indir ve yükle"
+
+#: 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: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:1147
+msgid "Filter"
+msgstr "Filtre"
+
+#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
+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:1202
+msgid "Hide all translation packages"
+msgstr "Tüm çeviri paketlerini gizle"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066
+msgid "Install"
+msgstr "Yükle"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1133
+msgid "Install additional software and upgrade existing packages with opkg."
+msgstr "opkg ile ek yazılımlar kurun ve var olan paketleri yükseltin."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr "Önerilen çeviri paketlerini de yükle"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
+msgid "Installed"
+msgstr "Yüklenenler"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
+msgid ""
+"Installing packages from untrusted sources is a potential security risk! "
+"Really attempt to install <em>%h</em>?"
+msgstr ""
+"Güvenilmeyen kaynaklardan paket yüklemek, güvenlik riski oluşturabilir! Bu "
+"paketi yüklemeyi gerçekten denemek istiyor musunuz <em>% h </em>?"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
+msgid "Install…"
+msgstr "Yükle…"
+
+#: 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:1084
+msgid "Loading package information…"
+msgstr "Paket bilgisi yükleniyor…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+msgid "MD5"
+msgstr "MD5"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
+msgid "Manually install package"
+msgstr "Elle paket yükle"
+
+#: 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:1227
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
+msgid "Next page"
+msgstr "Sonraki sayfa"
+
+#: 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:355
+msgid "No packages"
+msgstr "Paket(ler) yok"
+
+#: 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:542
+msgid "Not available"
+msgstr "Mevcut değil"
+
+#: 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:1158
+msgid "OK"
+msgstr "Tamam"
+
+#: 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:1233
+msgid "Package name"
+msgstr "Paket adı"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
+msgid "Package name or URL…"
+msgstr "Paket adı veya URL…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
+msgid "Previous page"
+msgstr "Önceki sayfa"
+
+#: 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:967
+msgid "Remove"
+msgstr "Kaldır"
+
+#: 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:276
+msgid "Remove…"
+msgstr "Kaldır…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
+msgid "Require approx. %1024mB size for %d package(s) to install."
+msgstr ""
+"%d paket(ler)ini yüklemek için yaklaşık %1024mB boyutunda alan gerekli."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js: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: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: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:373
+msgid "Reset"
+msgstr "Sıfırla"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+msgid "SHA256"
+msgstr "SHA256"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
+msgid "Save"
+msgstr "Kaydet"
+
+#: 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: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:1235
+msgid "Size (.ipk)"
+msgstr "Boyut (.ipk)"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
+#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
+msgid "Software"
+msgstr "Yazılım"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr "Önerilen çeviriler"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr "Önerilen çeviriler yaklaşık %1024mB ek alan gerektiriyor."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
+msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
+msgstr "<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:513
+msgid ""
+"The installed version of package <em>%h</em> is not compatible, require %s "
+"while %s is installed."
+msgstr ""
+"Yüklü olan <em>%h</em> paketinin sürümü uyumlu değil. Gerekli olan %s iken, "
+"%s sürümü yüklü."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js: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:530
+msgid ""
+"The repository version of package <em>%h</em> is not compatible, require %s "
+"but only %s is available."
+msgstr ""
+"<em>%h</em> paketinin depo bulunan sürümü uyumlu değil. Gerekli olan %s iken "
+"sadece %s sürümü mevcut."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
+msgid "Type to filter…"
+msgstr "Filtrelemek için yazın…"
+
+#: 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:871
+msgid "Unable to read %s: %s"
+msgstr "Okunamıyor %s: %s"
+
+#: 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:1165
+msgid "Update lists…"
+msgstr "Listeyi güncelle…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
+msgid "Updates"
+msgstr "Güncellemeler"
+
+#: 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:1166
+msgid "Upload Package…"
+msgstr "Paket Yükle…"
+
+#: 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:1234
+msgid "Version"
+msgstr "Sürüm"
+
+#: 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: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:1198
+msgctxt "Display translation packages"
+msgid "all"
+msgstr "tüm"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr "filtrelenmiş"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
+msgctxt "Display translation packages"
+msgid "none"
+msgstr "hiçbiri"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1143
+msgid "unknown"
+msgstr "bilinmeyen"
+
+#: 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"
+
+#~ msgid "Free space"
+#~ msgstr "Boş alan"
+
+#~ msgid "Overwrite files from other package(s)"
+#~ msgstr "Diğer paket(ler)in dosyalarının üzerine yaz"
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"PO-Revision-Date: 2024-02-25 06:41+0000\n"
+"Last-Translator: Костянтин Серьогін <seryoginki@gmail.com>\n"
+"Language-Team: Ukrainian <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationsopkg/uk/>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
+"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Weblate 5.5-dev\n"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
+msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
+msgstr "%s використано (%1024mB використано з %1024mB, вільно %1024mB)"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
+msgid ""
+"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
+msgid "Actions"
+msgstr "Дії"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
+msgid "Allow overwriting conflicting package files"
+msgstr "Дозволити перезапис файлів пакунків, які конфліктують"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
+msgid "Automatically remove unused dependencies"
+msgstr "Автоматичне видалення невикористовуваних залежностей"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1218
+msgid "Available"
+msgstr "Доступно"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
+msgid ""
+"Below is a listing of the various configuration files used by <em>opkg</em>. "
+"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
+"custom repository entries. The configuration in the other files may be "
+"changed but is usually not preserved by <em>sysupgrade</em>."
+msgstr ""
+"Нижче наведено список різних файлів конфігурації, котрі використовуються "
+"<em>opkg</em>. Використовуйте <em>opkg.conf</em> для глобальних налаштувань "
+"і <em>customfeeds.conf</em> для записів власного репозиторію. Конфігурацію в "
+"інших файлах може бути змінено, але вона зазвичай не зберігається при "
+"<em>оновленні системи</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:1150
+msgid "Clear"
+msgstr "Очистити"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+msgid "Configure opkg…"
+msgstr "Налаштування opkg…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
+msgid "Dependencies"
+msgstr "Залежності"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
+msgid "Description"
+msgstr "Опис"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755
+msgid "Details for package <em>%h</em>"
+msgstr "Подробиці про пакет <em>%h</em>"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142
+msgid "Disk space"
+msgstr "Дисковий простір"
+
+#: 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:1172
+msgid "Display LuCI translation packages"
+msgstr "Відображати пакети перекладу LuCI"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
+msgid "Display all available translation packages"
+msgstr "Відображати всі доступні пакети перекладу"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
+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:1155
+msgid "Download and install package"
+msgstr "Завантажити та інсталювати пакети"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
+msgid "Errors"
+msgstr "Помилки"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
+msgid "Executing package manager"
+msgstr "Виконання менеджера пакетів"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
+msgid "Filter"
+msgstr "Фільтр"
+
+#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
+msgid "Grant access to opkg management"
+msgstr "Надати доступ до керування opkg"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1202
+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:1133
+msgid "Install additional software and upgrade existing packages with opkg."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr "Встановлювати запропоновані пакети перекладу також"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
+msgid "Installed"
+msgstr "Інстальовано"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
+msgid ""
+"Installing packages from untrusted sources is a potential security risk! "
+"Really attempt to install <em>%h</em>?"
+msgstr ""
+"Інсталяція пакетів з ненадійних джерел є потенційною загрозою безпеці! "
+"Дійсно спробувати інсталювати <em>%h</em>?"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
+msgid "Install…"
+msgstr "Інсталювати…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
+msgid "Loading configuration data…"
+msgstr "Завантаження даних конфігурації…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
+msgid "Loading package information…"
+msgstr "Завантаження інформації про пакети…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+msgid "MD5"
+msgstr "MD5"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
+msgid "Manually install package"
+msgstr "Інсталяція пакета вручну"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
+msgid "Needs upgrade"
+msgstr "Потребує оновлення"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
+msgid "Next page"
+msgstr "Наступна сторінка"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
+msgid "No information available"
+msgstr "Інформація відсутня"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
+msgid "No packages"
+msgstr "Немає пакетів"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
+msgid "No packages matching \"<strong>%h</strong>\"."
+msgstr "Немає пакетів, що відповідають \"<strong>%h</strong>\"."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
+msgid "Not available"
+msgstr "Недоступно"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
+msgid "Not installed"
+msgstr "Не інстальовано"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
+msgid "OK"
+msgstr "OK"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
+msgid "OPKG Configuration"
+msgstr "Конфігурація OPKG"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
+msgid "Package name"
+msgstr "Назва пакунку"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
+msgid "Package name or URL…"
+msgstr "Назва пакунка чи URL-адреса…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
+msgid "Previous page"
+msgstr "Попередня сторінка"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
+msgid "Really attempt to install <em>%h</em>?"
+msgstr "Дійсно спробувати інсталювати <em>%h</em>?"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
+msgid "Remove"
+msgstr "Видалити"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
+msgid "Remove package <em>%h</em>"
+msgstr "Видалити пакет <em>%h</em>"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
+msgid "Remove…"
+msgstr "Видалити…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
+msgid "Require approx. %1024mB size for %d package(s) to install."
+msgstr "Потрібно приблизно %1024mB для інсталяції %d пакетів."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
+msgid "Require version %h %h, installed %h"
+msgstr "Потрібна версія %h %h, інстальовано %h"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540
+msgid ""
+"Required dependency package <em>%h</em> is not available in any repository."
+msgstr ""
+"Необхідний за залежністю пакет <em>%h</em> не доступний ні в одному "
+"репозиторії."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508
+msgid "Requires update to %h %h"
+msgstr "Потрібно оновити до %h %h"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
+msgid "Reset"
+msgstr "Скинути"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+msgid "SHA256"
+msgstr "SHA256"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
+msgid "Save"
+msgstr "Зберегти"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
+msgid "Saving configuration data…"
+msgstr "Збереження даних конфігурації…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
+msgid "Size"
+msgstr "Розмір"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
+msgid "Size (.ipk)"
+msgstr "Розмір (.ipk)"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
+#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
+msgid "Software"
+msgstr "Програмне забезпечення"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr "Пропоновані переклади"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr ""
+"Запропоновані переклади потребують приблизно %1024мБ додаткового місця."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
+msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
+msgstr "Помилка виконання команди <em>opkg %h</em> з кодом <code>%d</code>."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
+msgid ""
+"The installed version of package <em>%h</em> is not compatible, require %s "
+"while %s is installed."
+msgstr ""
+"Інстальована версія пакета <em>%h</em> несумісна, потрібно %s, а "
+"інстальовано %s."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833
+msgid "The package <em>%h</em> is not available in any configured repository."
+msgstr ""
+"Пакет <em>%h</em> не доступний ні в одному сконфігурованому репозиторії."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530
+msgid ""
+"The repository version of package <em>%h</em> is not compatible, require %s "
+"but only %s is available."
+msgstr ""
+"Версія пакету <em>%h</em> у репозиторії несумісна, потрібно %s, але доступна "
+"лише %s."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
+msgid "Type to filter…"
+msgstr "Введіть текст для фільтра…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
+msgid "Unable to execute <em>opkg %s</em> command: %s"
+msgstr "Не вдалося виконати команду <em>opkg %s</em>: %s"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871
+msgid "Unable to read %s: %s"
+msgstr "Не вдалося прочитати %s: %s"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910
+msgid "Unable to save %s: %s"
+msgstr "Не вдалося зберегти %s: %s"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1165
+msgid "Update lists…"
+msgstr "Оновити списки…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
+msgid "Updates"
+msgstr "Оновлення"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
+msgid "Upgrade…"
+msgstr "Оновлення…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1166
+msgid "Upload Package…"
+msgstr "Відвантажити пакет…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1234
+msgid "Version"
+msgstr "Версія"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
+msgid "Version incompatible"
+msgstr "Несумісна версія"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
+msgid "Waiting for the <em>opkg %h</em> command to complete…"
+msgstr "Очікуємо завершення виконання команди <em>opkg %h</em> …"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1198
+msgctxt "Display translation packages"
+msgid "all"
+msgstr "усі"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr "фільтрувати"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
+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:1143
+msgid "unknown"
+msgstr "невідомо"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
+msgid "~%1024mB compressed"
+msgstr "~%1024mB стиснуто"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
+msgid "~%1024mB installed"
+msgstr "~%1024mB інстальовано"
+
+#~ msgid "Free space"
+#~ msgstr "Вільне місце"
+
+#~ msgid "Overwrite files from other package(s)"
+#~ msgstr "Перезаписати файли з інших пакетів"
--- /dev/null
+msgid ""
+msgstr ""
+"PO-Revision-Date: 2022-07-24 14:21+0000\n"
+"Last-Translator: Usama Khursheed <Usamakhursheedkhan@gmail.com>\n"
+"Language-Team: Urdu <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationsopkg/ur/>\n"
+"Language: ur\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 4.14-dev\n"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
+msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
+msgid ""
+"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
+msgid "Actions"
+msgstr "اعمال"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
+msgid "Allow overwriting conflicting package files"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
+msgid "Automatically remove unused dependencies"
+msgstr "غیر استعمال شدہ انحصار کو خود بخود ہٹا دیں"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1218
+msgid "Available"
+msgstr "موجود"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
+msgid ""
+"Below is a listing of the various configuration files used by <em>opkg</em>. "
+"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
+"custom repository entries. The configuration in the other files may be "
+"changed but is usually not preserved by <em>sysupgrade</em>."
+msgstr ""
+"ذیل میں <em>opkg</em> کے ذریعے استعمال ہونے والی مختلف کنفیگریشن فائلوں کی "
+"فہرست ہے۔ عالمی ترتیبات کے لیے <em>opkg.conf</em> اور حسب ضرورت ریپوزٹری "
+"اندراجات کے لیے <em>customfeeds.conf</em> استعمال کریں۔ دوسری فائلوں میں "
+"کنفیگریشن کو تبدیل کیا جا سکتا ہے لیکن عام طور پر <em>sysupgrade</em> کے "
+"ذریعے محفوظ نہیں کیا جاتا ہے۔"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:800
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:846
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:893
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:959
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1056
+msgid "Cancel"
+msgstr "کینسل"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150
+msgid "Clear"
+msgstr "کلیر"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+msgid "Configure opkg…"
+msgstr "opkg کو ترتیب دیں…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
+msgid "Dependencies"
+msgstr "انحصار"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
+msgid "Description"
+msgstr "تفصیل"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755
+msgid "Details for package <em>%h</em>"
+msgstr "پیکیج <em>%h</em> کی تفصیلات"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142
+msgid "Disk space"
+msgstr ""
+
+#: 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:1172
+msgid "Display LuCI translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
+msgid "Display all available translation packages"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
+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:1155
+msgid "Download and install package"
+msgstr "پیکیج ڈاؤن لوڈ اور انسٹال کریں"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
+msgid "Errors"
+msgstr "غلطیاں"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
+msgid "Executing package manager"
+msgstr "پیکج مینیجر پر عمل درآمد ہو رہا"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
+msgid "Filter"
+msgstr "فلٹر"
+
+#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
+msgid "Grant access to opkg management"
+msgstr "opkg مینجمنٹ تک رسائی فراہم کریں"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1202
+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:1133
+msgid "Install additional software and upgrade existing packages with opkg."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
+msgid "Installed"
+msgstr "نصب خدمات"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
+msgid ""
+"Installing packages from untrusted sources is a potential security risk! "
+"Really attempt to install <em>%h</em>?"
+msgstr ""
+"غیر بھروسہ مند ذرائع سے پیکجز انسٹال کرنا ایک ممکنہ سیکورٹی رسک ہے! واقعی "
+"انسٹال کرنے کی کوشش کریں <em>%h</em>؟"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
+msgid "Install…"
+msgstr "انسٹال کریں…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
+msgid "Loading configuration data…"
+msgstr "کنفیگریشن ڈیٹا لوڈ ہو رہا ہے…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
+msgid "Loading package information…"
+msgstr "پیکیج کی معلومات لوڈ ہو رہی ہے…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+#, fuzzy
+msgid "MD5"
+msgstr "MD5"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
+msgid "Manually install package"
+msgstr "دستی طور پر پیکیج انسٹال کریں"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
+msgid "Needs upgrade"
+msgstr "اپ گریڈ کی ضرورت ہے"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
+msgid "Next page"
+msgstr "اگلا صفحہ"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
+msgid "No information available"
+msgstr "کوئی معلومات دستیاب نہیں"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
+msgid "No packages"
+msgstr "کوئی پیکجز نہیں"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
+msgid "No packages matching \"<strong>%h</strong>\"."
+msgstr "\"<strong>%h</strong>\" سے مماثل کوئی پیکیج نہیں ہے۔"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
+msgid "Not available"
+msgstr "دستیاب نہیں ہے"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
+msgid "Not installed"
+msgstr "انسٹال نہیں ہے"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
+msgid "OK"
+msgstr "ٹھیک ہے"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
+msgid "OPKG Configuration"
+msgstr "OPKG کنفیگریشن"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
+msgid "Package name"
+msgstr "پیکیج کا نام"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
+msgid "Package name or URL…"
+msgstr "پیکیج کا نام یا URL…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
+msgid "Previous page"
+msgstr "پچھلا صفحہ"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
+msgid "Really attempt to install <em>%h</em>?"
+msgstr "واقعی انسٹال کرنے کی کوشش کریں <em>%h</em>؟"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
+msgid "Remove"
+msgstr "ہٹا دیا"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
+msgid "Remove package <em>%h</em>"
+msgstr "پیکیج <em>%h</em> کو ہٹا دیں"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
+msgid "Remove…"
+msgstr "الگ کرنا…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
+msgid "Require approx. %1024mB size for %d package(s) to install."
+msgstr "لگ بھگ کی ضرورت ہے۔ انسٹال کرنے کے لیے %d پیکجز کے لیے %1024mB سائز۔"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
+msgid "Require version %h %h, installed %h"
+msgstr "ورژن %h %h، انسٹال کردہ %h کی ضرورت ہے"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540
+msgid ""
+"Required dependency package <em>%h</em> is not available in any repository."
+msgstr "مطلوبہ انحصار پیکج <em>%h</em> کسی بھی ذخیرہ میں دستیاب نہیں ہے"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508
+msgid "Requires update to %h %h"
+msgstr "%h %h تک اپ ڈیٹ کی ضرورت ہے"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
+msgid "Reset"
+msgstr "دوبارہ ترتیب دیں"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+#, fuzzy
+msgid "SHA256"
+msgstr "SHA256"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
+msgid "Save"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
+msgid "Saving configuration data…"
+msgstr "کنفیگریشن ڈیٹا محفوظ ہو رہا ہے…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
+msgid "Size"
+msgstr "سائز"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
+msgid "Size (.ipk)"
+msgstr "سائز(.ipk)"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
+#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
+msgid "Software"
+msgstr "سافٹ ویئر"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
+msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
+msgstr "<em>opkg %h</em> کمانڈ <code>%d</code> کوڈ کے ساتھ ناکام ہوگئی۔"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
+msgid ""
+"The installed version of package <em>%h</em> is not compatible, require %s "
+"while %s is installed."
+msgstr "<em>opkg %h</em> کمانڈ <code>%d</code> کوڈ کے ساتھ ناکام ہوگئی"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833
+msgid "The package <em>%h</em> is not available in any configured repository."
+msgstr "پیکیج <em>%h</em> کسی بھی ترتیب شدہ ذخیرہ میں دستیاب نہیں ہے"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530
+msgid ""
+"The repository version of package <em>%h</em> is not compatible, require %s "
+"but only %s is available."
+msgstr ""
+"پیکیج <em>%h</em> کا ذخیرہ ورژن مطابقت نہیں رکھتا، %s کی ضرورت ہے لیکن صرف "
+"%s دستیاب ہے۔"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
+msgid "Type to filter…"
+msgstr "فلٹر کرنے کے لیے ٹائپ کریں…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
+msgid "Unable to execute <em>opkg %s</em> command: %s"
+msgstr "<em>opkg %s</em> کمانڈ پر عمل کرنے سے قاصر: %s"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871
+msgid "Unable to read %s: %s"
+msgstr "پڑھنے سے قاصر%s: s%"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910
+msgid "Unable to save %s: %s"
+msgstr "%s پڑھنے سے قاصر: %s"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1165
+msgid "Update lists…"
+msgstr "فہرستوں کو اپ ڈیٹ کریں…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
+msgid "Updates"
+msgstr "تازہ ترین"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
+msgid "Upgrade…"
+msgstr "اپ گریڈ…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1166
+msgid "Upload Package…"
+msgstr "پیکج اپ لوڈ کریں…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1234
+msgid "Version"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
+msgid "Version incompatible"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
+msgid "Waiting for the <em>opkg %h</em> command to complete…"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1198
+msgctxt "Display translation packages"
+msgid "all"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
+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:1143
+msgid "unknown"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
+msgid "~%1024mB compressed"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
+msgid "~%1024mB installed"
+msgstr ""
+
+#~ msgid "Free space"
+#~ msgstr "خالی جگہ"
+
+#~ msgid "Overwrite files from other package(s)"
+#~ msgstr "دوسرے پیکجوں سے فائلوں کو اوور رائٹ کریں"
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2009-08-16 06:59+0200\n"
+"PO-Revision-Date: 2023-06-21 08:00+0000\n"
+"Last-Translator: Mashiro <michio.haiyaku@gmail.com>\n"
+"Language-Team: Vietnamese <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationsopkg/vi/>\n"
+"Language: vi\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Generator: Weblate 4.18.1\n"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
+msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
+msgid ""
+"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
+msgid "Actions"
+msgstr "hành động"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
+msgid "Allow overwriting conflicting package files"
+msgstr "Cho phép ghi đè các tệp gói xung đột"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
+msgid "Automatically remove unused dependencies"
+msgstr "Tự động gỡ bỏ các gói phụ thuộc không được sử dụng"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1218
+msgid "Available"
+msgstr "Sẵn có"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
+msgid ""
+"Below is a listing of the various configuration files used by <em>opkg</em>. "
+"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
+"custom repository entries. The configuration in the other files may be "
+"changed but is usually not preserved by <em>sysupgrade</em>."
+msgstr ""
+"Dưới đây là danh sách các tập tin cấu hình khác nhau được sử dung bởi "
+"<em>opkg</em>. Sử dụng <em>opkg.conf</em> cho cài đặt chính và "
+"<em>customfeeds.conf</em> cho các mục repository tùy chỉnh. Cấu hình trong "
+"các tập tin khác có thể thay đổi nhưng thường không được giữ lại thay đổi "
+"bởi <em>sysupgrade</em>."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js: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 lệnh"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1150
+msgid "Clear"
+msgstr "Xóa"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+msgid "Configure opkg…"
+msgstr "Cấu hình opkg…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
+msgid "Dependencies"
+msgstr "Các gói phụ thuộc"
+
+#: 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:1236
+msgid "Description"
+msgstr "Mô tả"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755
+msgid "Details for package <em>%h</em>"
+msgstr "Chi tiết cho gói <em>%h</em>"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142
+msgid "Disk space"
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1030
+msgid "Dismiss"
+msgstr "Bỏ qua"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1172
+msgid "Display LuCI translation packages"
+msgstr "Hiển thị các gói dịch LuCI"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
+msgid "Display all available translation packages"
+msgstr "Hiển thị tất cả các gói dịch có sẵn"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
+msgid ""
+"Display base translation packages and translation packages for already "
+"installed languages only"
+msgstr ""
+"Chỉ hiển thị các gói dịch cơ sở và gói dịch cho các ngôn ngữ đã được cài đặt"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354
+msgid "Displaying %d-%d of %d"
+msgstr "Hiển thị %d-%d của %d"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155
+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:1008
+msgid "Errors"
+msgstr "Lỗi"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
+msgid "Executing package manager"
+msgstr "Đang thực thi quản lý gói"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
+msgid "Filter"
+msgstr "Bộ lọc"
+
+#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
+msgid "Grant access to opkg management"
+msgstr "Cấp quyền truy cập vào quản lý opkg"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1202
+msgid "Hide all translation packages"
+msgstr "Ẩn tất cả các gói dịch"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066
+msgid "Install"
+msgstr "Cài đặt"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1133
+msgid "Install additional software and upgrade existing packages with opkg."
+msgstr ""
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr "Cài đặt cả các gói dịch được đề xuất"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
+msgid "Installed"
+msgstr "Đã cài đặt"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
+msgid ""
+"Installing packages from untrusted sources is a potential security risk! "
+"Really attempt to install <em>%h</em>?"
+msgstr ""
+"Cài đặt các gói từ các nguồn không được tin tưởng là một rủi ro bảo mật tiềm "
+"tàng! Chắc chắn muốn cài đặt <em>%h</em>?"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
+msgid "Install…"
+msgstr "Cài đặt…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
+msgid "Loading configuration data…"
+msgstr "Tải dữ liệu cấu hình…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
+msgid "Loading package information…"
+msgstr "Tải thông tin gói…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+msgid "MD5"
+msgstr "MD5"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
+msgid "Manually install package"
+msgstr "Cài đặt gói thủ công"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
+msgid "Needs upgrade"
+msgstr "Cần nâng cấp"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
+msgid "Next page"
+msgstr "Trang kế"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
+msgid "No information available"
+msgstr "Không có thông tin có sẵn"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
+msgid "No packages"
+msgstr "Không có các gói"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
+msgid "No packages matching \"<strong>%h</strong>\"."
+msgstr "Không có gói khớp với \"<strong>%h</strong>\"."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
+msgid "Not available"
+msgstr "Không có sẵn"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
+msgid "Not installed"
+msgstr "Không được càu đặt"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
+msgid "OK"
+msgstr "OK"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
+msgid "OPKG Configuration"
+msgstr "Cấu hình OPKG-"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
+msgid "Package name"
+msgstr "Tên gói"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
+msgid "Package name or URL…"
+msgstr "Tên gói hoặc URL…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
+msgid "Previous page"
+msgstr "Trang trước"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
+msgid "Really attempt to install <em>%h</em>?"
+msgstr "Thực sự muốn cài <em>%h</em>?"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
+msgid "Remove"
+msgstr "Xóa"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
+msgid "Remove package <em>%h</em>"
+msgstr "Gỡ bỏ gói <em>%h</em>"
+
+#: 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:737
+msgid "Require approx. %1024mB size for %d package(s) to install."
+msgstr "Yêu cầu khoảng Kích thước %1024mB cho %d gói cài đặt."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
+msgid "Require version %h %h, installed %h"
+msgstr "Yêu cầu phiên bản %h %h, đã cài %h"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540
+msgid ""
+"Required dependency package <em>%h</em> is not available in any repository."
+msgstr ""
+"Yêu cầu gói phụ thuộc <em>%h</em> không có sẵn trong bất kỳ repository nào."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508
+msgid "Requires update to %h %h"
+msgstr "Yêu cầu cập nhật cho %h %h"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
+msgid "Reset"
+msgstr "Khởi động lại"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+msgid "SHA256"
+msgstr "SHA256"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
+msgid "Save"
+msgstr "Lưu"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
+msgid "Saving configuration data…"
+msgstr "Đang lưu dữ liệu cấu hình…"
+
+#: 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:1235
+msgid "Size (.ipk)"
+msgstr "Kích cỡ (.ipk)"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
+#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
+msgid "Software"
+msgstr "Phần mềm"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr "Bản dịch được đề xuất"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr "Các bản dịch được đề xuất yêu cầu khoảng. %1024mB dung lượng bổ sung."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
+msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
+msgstr "Câu lệnh <em>opkg %h</em> thất bại với mã lỗi <code>%d</code>."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
+msgid ""
+"The installed version of package <em>%h</em> is not compatible, require %s "
+"while %s is installed."
+msgstr ""
+"Phiên bản được cài đặt của gói <em>%h</em> không tương thích, yêu cầu %s "
+"trong khi %s được cài đặt."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833
+msgid "The package <em>%h</em> is not available in any configured repository."
+msgstr ""
+"Gói <em>%h</em> không có sẵn trong bật kỳ repository đã được cấu hình nào."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530
+msgid ""
+"The repository version of package <em>%h</em> is not compatible, require %s "
+"but only %s is available."
+msgstr ""
+"Phiên bản trên repository của gói <em>%h</em> không có sẵn, yêu cầu %s nhưng "
+"chỉ có %s."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
+msgid "Type to filter…"
+msgstr "Gõ để lọc…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
+msgid "Unable to execute <em>opkg %s</em> command: %s"
+msgstr "Không thể thực thi câu lệnh <em>opkg %s</em>: %s"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871
+msgid "Unable to read %s: %s"
+msgstr "Không thể đọc %s: %s"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910
+msgid "Unable to save %s: %s"
+msgstr "Không thể lưu %s: %s"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1165
+msgid "Update lists…"
+msgstr "Cập nhật dan sách…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
+msgid "Updates"
+msgstr "Các cập nhật"
+
+#: 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 "Nâng cấp…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1166
+msgid "Upload Package…"
+msgstr "Tải lên gói…"
+
+#: 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:1234
+msgid "Version"
+msgstr "Phiên bản"
+
+#: 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 "Phiên bản không tương thích"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
+msgid "Waiting for the <em>opkg %h</em> command to complete…"
+msgstr "Đợi câu lệnh <em>opkg %h</em> hoàn thành…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1198
+msgctxt "Display translation packages"
+msgid "all"
+msgstr "Tất cả"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr "Đã lọc"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
+msgctxt "Display translation packages"
+msgid "none"
+msgstr "Không"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1143
+msgid "unknown"
+msgstr "Không xác định"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
+msgid "~%1024mB compressed"
+msgstr "~%1024mB được nén"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
+msgid "~%1024mB installed"
+msgstr "~%1024mB đã cài đặt"
+
+#~ msgid "Free space"
+#~ msgstr "Dung lượng trống"
--- /dev/null
+msgid ""
+msgstr ""
+"PO-Revision-Date: 2024-09-07 04:34+0000\n"
+"Last-Translator: brodrigueznu <brodrigueznu@hotmail.com>\n"
+"Language-Team: Yucateco <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationsopkg/yua/>\n"
+"Language: yua\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 5.8-dev\n"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
+msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
+msgstr "%s usados (%1024mB usados de %1024mB, %1024mB libres)"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
+msgid ""
+"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
+msgstr ""
+"<strong>¡Advertencia!</strong> Las operaciones de paquetes pueden <a "
+"%s>romper su sistema</a>."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
+msgid "Actions"
+msgstr "Acciones"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
+msgid "Allow overwriting conflicting package files"
+msgstr "Permitir sobrescribir archivos de paquetes en conflicto"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
+msgid "Automatically remove unused dependencies"
+msgstr "Eliminar automáticamente las dependencias no utilizadas"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1218
+msgid "Available"
+msgstr "Disponible"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
+msgid ""
+"Below is a listing of the various configuration files used by <em>opkg</em>. "
+"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
+"custom repository entries. The configuration in the other files may be "
+"changed but is usually not preserved by <em>sysupgrade</em>."
+msgstr ""
+"A continuación se muestra una lista de los diversos archivos de "
+"configuración utilizados por <em>opkg</em>. Use <em>opkg.conf</em> para la "
+"configuración global y <em>customfeeds.conf</em> para entradas de "
+"repositorio personalizadas. La configuración en los otros archivos puede "
+"cambiarse, pero por lo general no se conserva mediante <em>sysupgrade</em>."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js: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:1150
+msgid "Clear"
+msgstr "Limpiar"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+msgid "Configure opkg…"
+msgstr "Configurar opkg…"
+
+#: 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:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
+msgid "Description"
+msgstr "Descripción"
+
+#: 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:1142
+msgid "Disk space"
+msgstr "Espacio en disco"
+
+#: 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:1172
+msgid "Display LuCI translation packages"
+msgstr "Mostrar paquetes de traducción de LuCI"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
+msgid "Display all available translation packages"
+msgstr "Mostrar todos los paquetes de traducción disponibles"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
+msgid ""
+"Display base translation packages and translation packages for already "
+"installed languages only"
+msgstr ""
+"Mostrar paquetes de traducción base y paquetes de traducción solo para "
+"idiomas ya instalados"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:354
+msgid "Displaying %d-%d of %d"
+msgstr "Mostrando %d-%d de %d"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1155
+msgid "Download and install package"
+msgstr "Descargar e instalar paquete"
+
+#: 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:982
+msgid "Executing package manager"
+msgstr "Ejecutando el gestor de paquetes"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
+msgid "Filter"
+msgstr "Filtro"
+
+#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
+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:1202
+msgid "Hide all translation packages"
+msgstr "Ocultar todos los paquetes de traducción"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:808
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:824
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1066
+msgid "Install"
+msgstr "Instalar"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1133
+msgid "Install additional software and upgrade existing packages with opkg."
+msgstr ""
+"Instale software adicional y actualice los paquetes existentes con opkg."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:780
+msgid "Install suggested translation packages as well"
+msgstr "Instalar también los paquetes de traducción sugeridos"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:299
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:522
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1219
+msgid "Installed"
+msgstr "Instalado"
+
+#: 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 ""
+"¡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:288
+msgid "Install…"
+msgstr "Instalar…"
+
+#: 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:1084
+msgid "Loading package information…"
+msgstr "Cargando información del paquete…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+msgid "MD5"
+msgstr "MD5"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
+msgid "Manually install package"
+msgstr "Instalar manualmente el paquete"
+
+#: 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:1227
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
+msgid "Next page"
+msgstr "Página siguiente"
+
+#: 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:355
+msgid "No packages"
+msgstr "Sin paquetes"
+
+#: 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:542
+msgid "Not available"
+msgstr "No disponible"
+
+#: 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:1158
+msgid "OK"
+msgstr "Aceptar"
+
+#: 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:1233
+msgid "Package name"
+msgstr "Nombre del paquete"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
+msgid "Package name or URL…"
+msgstr "Nombre de paquete o URL…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
+msgid "Previous page"
+msgstr "Página anterior"
+
+#: 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:967
+msgid "Remove"
+msgstr "Eliminar"
+
+#: 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:276
+msgid "Remove…"
+msgstr "Desinstalar…"
+
+#: 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: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: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: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:373
+msgid "Reset"
+msgstr "Restablecer"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+msgid "SHA256"
+msgstr "SHA256"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
+msgid "Save"
+msgstr "Guardar"
+
+#: 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: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:1235
+msgid "Size (.ipk)"
+msgstr "Tamaño (.ipk)"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
+#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
+msgid "Software"
+msgstr "Software"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr "Traducciones sugeridas"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr ""
+"Las traducciones sugeridas requieren aprox. %1024mB de espacio adicional."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
+msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
+msgstr "El comando <em>opkg %h</em> falló con el código <code>%d</code>."
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
+msgid ""
+"The installed version of package <em>%h</em> is not compatible, require %s "
+"while %s is installed."
+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: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:530
+msgid ""
+"The repository version of package <em>%h</em> is not compatible, require %s "
+"but only %s is available."
+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:1149
+msgid "Type to filter…"
+msgstr "Escriba para filtrar…"
+
+#: 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: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: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:1165
+msgid "Update lists…"
+msgstr "Actualizar listas…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
+msgid "Updates"
+msgstr "Actualizaciones"
+
+#: 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:1166
+msgid "Upload Package…"
+msgstr "Subir paquete…"
+
+#: 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:1234
+msgid "Version"
+msgstr "Versión"
+
+#: 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: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:1198
+msgctxt "Display translation packages"
+msgid "all"
+msgstr "todos"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr "filtrado"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
+msgctxt "Display translation packages"
+msgid "none"
+msgstr "ninguno"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:934
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1143
+msgid "unknown"
+msgstr "desconocido"
+
+#: 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"
--- /dev/null
+#
+# Yangfl <mmyangfl@gmail.com>, 2018.
+# Zheng Qian <sotux82@gmail.com>, 2018, 2019.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"PO-Revision-Date: 2024-03-27 01:01+0000\n"
+"Last-Translator: try496 <pinghejk@gmail.com>\n"
+"Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/"
+"openwrt/luciapplicationsopkg/zh_Hans/>\n"
+"Language: zh_Hans\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Generator: Weblate 5.5-dev\n"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
+msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
+msgstr "%s 已使用 (%1024mB 已使用,总共 %1024mB,剩余 %1024mB)"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
+msgid ""
+"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
+msgstr "<strong>警告!</strong>软件包操作可能会 <a %s>损坏你的系统</a>。"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
+msgid "Actions"
+msgstr "操作"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
+msgid "Allow overwriting conflicting package files"
+msgstr "允许覆盖冲突的包文件"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
+msgid "Automatically remove unused dependencies"
+msgstr "自动移除未使用的依赖"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1218
+msgid "Available"
+msgstr "可用"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
+msgid ""
+"Below is a listing of the various configuration files used by <em>opkg</em>. "
+"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
+"custom repository entries. The configuration in the other files may be "
+"changed but is usually not preserved by <em>sysupgrade</em>."
+msgstr ""
+"以下列出了 <em>opkg</em> 所使用的各个配置文件。<em>opkg.conf</em> 用于全局配"
+"置,<em>customfeeds.conf</em> 用于自定义仓库。其他配置文件的变更在<em>系统升"
+"级</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:1150
+msgid "Clear"
+msgstr "清除"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+msgid "Configure opkg…"
+msgstr "配置 opkg…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
+msgid "Dependencies"
+msgstr "依赖"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
+msgid "Description"
+msgstr "描述"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755
+msgid "Details for package <em>%h</em>"
+msgstr "软件包 <em>%h</em> 详情"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142
+msgid "Disk space"
+msgstr "磁盘空间"
+
+#: 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:1172
+msgid "Display LuCI translation packages"
+msgstr "显示 LuCI 翻译包"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
+msgid "Display all available translation packages"
+msgstr "显示所有可用的翻译包"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
+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:1155
+msgid "Download and install package"
+msgstr "下载并安装软件包"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
+msgid "Errors"
+msgstr "错误"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
+msgid "Executing package manager"
+msgstr "正在执行软件包管理器"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
+msgid "Filter"
+msgstr "过滤器"
+
+#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
+msgid "Grant access to opkg management"
+msgstr "授予访问 opkg 管理的权限"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1202
+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:1133
+msgid "Install additional software and upgrade existing packages with opkg."
+msgstr "使用 opkg 安装额外的软件包并升级现有的软件包。"
+
+#: 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:1219
+msgid "Installed"
+msgstr "已安装"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
+msgid ""
+"Installing packages from untrusted sources is a potential security risk! "
+"Really attempt to install <em>%h</em>?"
+msgstr "从未信任的源安装软件包有潜在的安全隐患!您确定要安装 <em>%h</em> 吗?"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
+msgid "Install…"
+msgstr "安装…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
+msgid "Loading configuration data…"
+msgstr "载入配置数据…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
+msgid "Loading package information…"
+msgstr "载入软件包信息…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+msgid "MD5"
+msgstr "MD5"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
+msgid "Manually install package"
+msgstr "手动安装软件包"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
+msgid "Needs upgrade"
+msgstr "需要升级"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
+msgid "Next page"
+msgstr "下一页"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
+msgid "No information available"
+msgstr "无可用信息"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
+msgid "No packages"
+msgstr "没有软件包"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
+msgid "No packages matching \"<strong>%h</strong>\"."
+msgstr "没有匹配“<strong>%h</strong>”的软件包。"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
+msgid "Not available"
+msgstr "不可用"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
+msgid "Not installed"
+msgstr "未安装"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
+msgid "OK"
+msgstr "确认"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
+msgid "OPKG Configuration"
+msgstr "OPKG 配置"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
+msgid "Package name"
+msgstr "软件包名称"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
+msgid "Package name or URL…"
+msgstr "软件包名称或 URL…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
+msgid "Previous page"
+msgstr "上一页"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
+msgid "Really attempt to install <em>%h</em>?"
+msgstr "确定要安装 <em>%h</em> 吗?"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
+msgid "Remove"
+msgstr "移除"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
+msgid "Remove package <em>%h</em>"
+msgstr "移除软件包 <em>%h</em>"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
+msgid "Remove…"
+msgstr "移除…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
+msgid "Require approx. %1024mB size for %d package(s) to install."
+msgstr "需要大约 %1024mB 空间来安装 %d 个软件包。"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
+msgid "Require version %h %h, installed %h"
+msgstr "需要 %h %h 版本,已安装 %h"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540
+msgid ""
+"Required dependency package <em>%h</em> is not available in any repository."
+msgstr "依赖的软件包 <em>%h</em> 在所有仓库都未提供。"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508
+msgid "Requires update to %h %h"
+msgstr "需要更新到 %h %h"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
+msgid "Reset"
+msgstr "复位"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+msgid "SHA256"
+msgstr "SHA256"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
+msgid "Save"
+msgstr "保存"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
+msgid "Saving configuration data…"
+msgstr "正在保存配置数据…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
+msgid "Size"
+msgstr "大小"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
+msgid "Size (.ipk)"
+msgstr "大小(.ipk)"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
+#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
+msgid "Software"
+msgstr "软件包"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr "推荐的翻译"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr "推荐的翻译需要约 %1024mB 额外空间。"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
+msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
+msgstr "<em>opkg %h</em> 命令失败,代码 <code>%d</code>。"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
+msgid ""
+"The installed version of package <em>%h</em> is not compatible, require %s "
+"while %s is installed."
+msgstr "已安装的软件包 <em>%h</em> 版本不兼容,需要 %s 而 %s 已安装。"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833
+msgid "The package <em>%h</em> is not available in any configured repository."
+msgstr "软件包 <em>%h</em> 在所有已配置的仓库中都不存在。"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530
+msgid ""
+"The repository version of package <em>%h</em> is not compatible, require %s "
+"but only %s is available."
+msgstr "软件包 <em>%h</em> 在仓库中的版本不兼容,需要 %s 但仅可提供 %s。"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
+msgid "Type to filter…"
+msgstr "输入以筛选…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
+msgid "Unable to execute <em>opkg %s</em> command: %s"
+msgstr "无法执行 <em>opkg %s</em> 命令:%s"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871
+msgid "Unable to read %s: %s"
+msgstr "无法读取 %s:%s"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910
+msgid "Unable to save %s: %s"
+msgstr "无法保存 %s:%s"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1165
+msgid "Update lists…"
+msgstr "更新列表…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
+msgid "Updates"
+msgstr "更新"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
+msgid "Upgrade…"
+msgstr "升级…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1166
+msgid "Upload Package…"
+msgstr "上传软件包…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1234
+msgid "Version"
+msgstr "版本"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
+msgid "Version incompatible"
+msgstr "版本不兼容"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
+msgid "Waiting for the <em>opkg %h</em> command to complete…"
+msgstr "等待命令 <em>opkg %h</em> 执行完成…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1198
+msgctxt "Display translation packages"
+msgid "all"
+msgstr "全部"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr "已过滤"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
+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:1143
+msgid "unknown"
+msgstr "未知"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
+msgid "~%1024mB compressed"
+msgstr "~%1024mB 已压缩"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
+msgid "~%1024mB installed"
+msgstr "~%1024mB 已安装"
+
+#~ msgid "Free space"
+#~ msgstr "空闲空间"
+
+#~ msgid "Overwrite files from other package(s)"
+#~ msgstr "覆盖其他软件包中的文件"
+
+#~ msgid ""
+#~ "Require version %h %h,\n"
+#~ "installed %h"
+#~ msgstr ""
+#~ "要求 %h %h 版本,\n"
+#~ "已安装 %h"
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"PO-Revision-Date: 2024-05-04 07:42+0000\n"
+"Last-Translator: Yuan Lau <traverslombard@outlook.com>\n"
+"Language-Team: Chinese (Traditional) <https://hosted.weblate.org/projects/"
+"openwrt/luciapplicationsopkg/zh_Hant/>\n"
+"Language: zh_Hant\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Generator: Weblate 5.5.3\n"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1095
+msgid "%s used (%1024mB used of %1024mB, %1024mB free)"
+msgstr "%s 已使用 (%1024mB已使用,總共 %1024mB,剩餘%1024mB)"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1135
+msgid ""
+"<strong>Warning!</strong> Package operations can <a %s>break your system</a>."
+msgstr "<strong>警告! </strong>套件操作可能<a %s>破壞您的系統</a>。"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1163
+msgid "Actions"
+msgstr "動作"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:792
+msgid "Allow overwriting conflicting package files"
+msgstr "允許覆蓋衝突的包檔"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:953
+msgid "Automatically remove unused dependencies"
+msgstr "自動移除不再使用的依賴項目"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1218
+msgid "Available"
+msgstr "可用的"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:878
+msgid ""
+"Below is a listing of the various configuration files used by <em>opkg</em>. "
+"Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for "
+"custom repository entries. The configuration in the other files may be "
+"changed but is usually not preserved by <em>sysupgrade</em>."
+msgstr ""
+"下面列出了 <em>opkg</em> 使用的各種組態檔;<em>opkg.conf</em> 用於全域設定,"
+"<em>customfeeds.conf</em> 則用於自訂儲存庫項目。其他組態檔的變更可能在 <em>系"
+"統升級</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:1150
+msgid "Clear"
+msgstr "清除"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1167
+msgid "Configure opkg…"
+msgstr "設定 opkg …"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:744
+msgid "Dependencies"
+msgstr "依賴項目"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:750
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:938
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1236
+msgid "Description"
+msgstr "描述"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:755
+msgid "Details for package <em>%h</em>"
+msgstr "套件 <em>%h</em> 的詳細資訊"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1142
+msgid "Disk space"
+msgstr "磁碟空間"
+
+#: 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:1172
+msgid "Display LuCI translation packages"
+msgstr "顯示 LuCI 翻譯包"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1189
+msgid "Display all available translation packages"
+msgstr "顯示所有可用的翻譯包"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1175
+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:1155
+msgid "Download and install package"
+msgstr "下載並安裝套件包"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1008
+msgid "Errors"
+msgstr "錯誤"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:982
+msgid "Executing package manager"
+msgstr "正在執行套件包管理員"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1147
+msgid "Filter"
+msgstr "過濾"
+
+#: applications/luci-app-opkg/root/usr/share/rpcd/acl.d/luci-app-opkg.json:3
+msgid "Grant access to opkg management"
+msgstr "授予存取 opkg 管理的權限"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1202
+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:1133
+msgid "Install additional software and upgrade existing packages with opkg."
+msgstr "使用 opkg 安裝額外軟體並升級現有軟體包。"
+
+#: 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:1219
+msgid "Installed"
+msgstr "已安裝"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:830
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1043
+msgid ""
+"Installing packages from untrusted sources is a potential security risk! "
+"Really attempt to install <em>%h</em>?"
+msgstr "從不明來源安裝套件很危險! 確定要安裝 <em>%h</em> ?"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:288
+msgid "Install…"
+msgstr "安裝…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:857
+msgid "Loading configuration data…"
+msgstr "載入組態資料中…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1084
+msgid "Loading package information…"
+msgstr "載入套件資訊中…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1046
+msgid "MD5"
+msgstr "MD5"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:840
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1042
+msgid "Manually install package"
+msgstr "手動安裝套件包"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:510
+msgid "Needs upgrade"
+msgstr "需要升級"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1227
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1245
+msgid "Next page"
+msgstr "下一頁"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:368
+msgid "No information available"
+msgstr "無可用資訊"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:355
+msgid "No packages"
+msgstr "無套件包"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372
+msgid "No packages matching \"<strong>%h</strong>\"."
+msgstr "沒有與 \"<strong>%h</strong>\" 相符的軟體包。"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:542
+msgid "Not available"
+msgstr "無法使用"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:527
+msgid "Not installed"
+msgstr "未安裝"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1158
+msgid "OK"
+msgstr "確定"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:856
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:904
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:918
+msgid "OPKG Configuration"
+msgstr "OPKG 設定"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1233
+msgid "Package name"
+msgstr "套件包名稱"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1157
+msgid "Package name or URL…"
+msgstr "套件包名稱或網址…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1225
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1243
+msgid "Previous page"
+msgstr "上一頁"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:837
+msgid "Really attempt to install <em>%h</em>?"
+msgstr "確定安裝 <em>%h</em> ?"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:967
+msgid "Remove"
+msgstr "移除"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:943
+msgid "Remove package <em>%h</em>"
+msgstr "移除套件 <em>%h</em>"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:276
+msgid "Remove…"
+msgstr "移除…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:737
+msgid "Require approx. %1024mB size for %d package(s) to install."
+msgstr "約需 %1024mB 的空間來安裝 %d 個套件包。"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:517
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:535
+msgid "Require version %h %h, installed %h"
+msgstr "需要版本 %h %h,現已安裝 %h"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:540
+msgid ""
+"Required dependency package <em>%h</em> is not available in any repository."
+msgstr "依賴的套件 <em>%h</em> 不存在於任何的儲存庫。"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:508
+msgid "Requires update to %h %h"
+msgstr "需要更新至 %h %h"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:373
+msgid "Reset"
+msgstr "重置"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1047
+msgid "SHA256"
+msgstr "SHA256"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:915
+msgid "Save"
+msgstr "儲存"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:905
+msgid "Saving configuration data…"
+msgstr "正在儲存設定值…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:758
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:946
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1045
+msgid "Size"
+msgstr "大小"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1235
+msgid "Size (.ipk)"
+msgstr "大小 (.ipk)"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1130
+#: applications/luci-app-opkg/root/usr/share/luci/menu.d/luci-app-opkg.json:3
+msgid "Software"
+msgstr "軟體"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:761
+msgid "Suggested translations"
+msgstr "建議的翻譯"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:740
+msgid "Suggested translations require approx. %1024mB additional space."
+msgstr "建議的翻譯需要大約 %1024mB 的額外空間。"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1013
+msgid "The <em>opkg %h</em> command failed with code <code>%d</code>."
+msgstr "<em>opkg%h</em> 指令執行失敗,錯誤碼<code>%d</code>。"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:513
+msgid ""
+"The installed version of package <em>%h</em> is not compatible, require %s "
+"while %s is installed."
+msgstr "已安裝的套件 <em>%h</em> 版本不相容,要求 %s 而 %s 已安裝。"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:833
+msgid "The package <em>%h</em> is not available in any configured repository."
+msgstr "套件 <em>%h</em> 在所有已設定的儲存庫中不可用。"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:530
+msgid ""
+"The repository version of package <em>%h</em> is not compatible, require %s "
+"but only %s is available."
+msgstr "套件包 <em>%h</em> 在儲存庫中的版本不相容,要求 %s 但僅有 %s 可用。"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1149
+msgid "Type to filter…"
+msgstr "輸入以進行過濾…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1032
+msgid "Unable to execute <em>opkg %s</em> command: %s"
+msgstr "無法執行 <em>opkg %s</em> 指令:%s"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:871
+msgid "Unable to read %s: %s"
+msgstr "無法讀取 %s: %s"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:910
+msgid "Unable to save %s: %s"
+msgstr "無法儲存 %s: %s"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1165
+msgid "Update lists…"
+msgstr "更新清單…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1220
+msgid "Updates"
+msgstr "可升級"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:265
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:294
+msgid "Upgrade…"
+msgstr "升級…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1166
+msgid "Upload Package…"
+msgstr "上傳套件包…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:757
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:945
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1234
+msgid "Version"
+msgstr "版本"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:519
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:537
+msgid "Version incompatible"
+msgstr "版本不相容"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:984
+msgid "Waiting for the <em>opkg %h</em> command to complete…"
+msgstr "等待 <em>opkg %h</em> 指令完成…"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1198
+msgctxt "Display translation packages"
+msgid "all"
+msgstr "全部"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1185
+msgctxt "Display translation packages"
+msgid "filtered"
+msgstr "已過濾"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:1211
+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:1143
+msgid "unknown"
+msgstr "未知"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:932
+msgid "~%1024mB compressed"
+msgstr "~%1024mB 已壓縮"
+
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:669
+#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:930
+msgid "~%1024mB installed"
+msgstr "~%1024mB 已安裝"
+
+#~ msgid "Free space"
+#~ msgstr "剩餘空間"
+
+#~ msgid "Overwrite files from other package(s)"
+#~ msgstr "覆蓋其他套件包的檔案"
--- /dev/null
+#!/bin/sh
+
+. /usr/share/libubox/jshn.sh
+
+action=$1
+shift
+
+if [ -f /usr/bin/apk ]; then
+ ipkg_bin="apk"
+else
+ ipkg_bin="opkg"
+fi
+
+case "$action" in
+ list-installed)
+ if [ $ipkg_bin = "apk" ]; then
+ $ipkg_bin list -I --full 2>/dev/null
+ else
+ cat /usr/lib/opkg/status
+ fi
+ ;;
+ list-available)
+ if [ $ipkg_bin = "apk" ]; then
+ $ipkg_bin list --full 2>/dev/null
+ else
+ lists_dir=$(sed -rne 's#^lists_dir \S+ (\S+)#\1#p' /etc/opkg.conf /etc/opkg/*.conf 2>/dev/null | tail -n 1)
+ find "${lists_dir:-/usr/lib/opkg/lists}" -type f '!' -name '*.sig' | xargs -r gzip -cd
+ fi
+ ;;
+ install|update|remove)
+ (
+ cmd="$ipkg_bin"
+
+ # APK have command renamed
+ if [ $ipkg_bin = "apk" ]; then
+ case "$action" in
+ install)
+ action="add"
+ ;;
+ update)
+ action="upgrade"
+ ;;
+ remove)
+ action="del"
+ ;;
+ esac
+ fi
+
+ # APK have --autoremove enabled by default and
+ # --force-removal-of-dependent-packages as -r option
+ if [ $ipkg_bin = "apk" ]; then
+ while [ -n "$1" ]; do
+ case "$1" in
+ --force-removal-of-dependent-packages)
+ cmd="$cmd -r"
+ shift
+ ;;
+ --force-overwrite)
+ cmd="$cmd $1"
+ shift
+ ;;
+ -*)
+ shift
+ ;;
+ *)
+ break
+ ;;
+ esac
+ done
+ else
+ while [ -n "$1" ]; do
+ case "$1" in
+ --autoremove|--force-overwrite|--force-removal-of-dependent-packages)
+ ipkg_bin="$apk $1"
+ shift
+ ;;
+ -*)
+ shift
+ ;;
+ *)
+ break
+ ;;
+ esac
+ done
+ fi
+
+ if flock -x 200; then
+ $cmd $action "$@" </dev/null >/tmp/ipkg.out 2>/tmp/ipkg.err
+ code=$?
+ stdout=$(cat /tmp/ipkg.out)
+ stderr=$(cat /tmp/ipkg.err)
+ else
+ code=255
+ stderr="Failed to acquire lock"
+ fi
+
+ json_init
+ json_add_int code $code
+ [ -n "$stdout" ] && json_add_string stdout "$stdout"
+ [ -n "$stderr" ] && json_add_string stderr "$stderr"
+ json_dump
+ ) 200>/tmp/ipkg.lock
+
+ rm -f /tmp/ipkg.lock /tmp/ipkg.err /tmp/ipkg.out
+ ;;
+ *)
+ echo "Usage: $0 {list-installed|list-available}" >&2
+ echo " $0 {install|upgrade|remove} pkg[ pkg...]" >&2
+ exit 1
+ ;;
+esac
--- /dev/null
+{
+ "admin/system/package-manager": {
+ "title": "Software",
+ "order": 30,
+ "action": {
+ "type": "view",
+ "path": "package-manager"
+ },
+ "depends": {
+ "acl": [ "luci-app-package-manager" ]
+ }
+ }
+}
--- /dev/null
+{
+ "luci-app-package-manager": {
+ "description": "Grant access to package management",
+ "read": {
+ "cgi-io": [ "exec" ],
+ "file": {
+ "/usr/libexec/package-manager-call list-installed": [ "exec" ],
+ "/usr/libexec/package-manager-call list-available": [ "exec" ],
+ "/etc/opkg.conf": [ "read" ],
+ "/etc/opkg/*.conf": [ "read" ],
+ "/etc/apk/repositories": [ "read" ]
+ },
+ "ubus": {
+ "luci": [ "getMountPoints" ]
+ }
+ },
+ "write": {
+ "file": {
+ "/usr/libexec/package-manager-call install": [ "exec" ],
+ "/usr/libexec/package-manager-call install *": [ "exec" ],
+ "/usr/libexec/package-manager-call remove *": [ "exec" ],
+ "/usr/libexec/package-manager-call update": [ "exec" ],
+ "/etc/opkg.conf": [ "write" ],
+ "/etc/opkg/*.conf": [ "write" ],
+ "/etc/apk/repositories": [ "write" ],
+ "/tmp/upload.ipk": [ "write" ],
+ "/tmp/upload.apk": [ "write" ]
+ }
+ }
+ }
+}
LUCI_DESCRIPTION:=Standard OpenWrt set including package management and attended sysupgrades support
LUCI_DEPENDS:= \
+luci-light \
- +luci-app-opkg
+ +luci-app-package-manager
PKG_LICENSE:=Apache-2.0