diff options
Diffstat (limited to 'applications/luci-app-opkg')
28 files changed, 292 insertions, 78 deletions
diff --git a/applications/luci-app-opkg/luasrc/view/opkg.htm b/applications/luci-app-opkg/luasrc/view/opkg.htm index 29fe3961ae..e610ebad34 100644 --- a/applications/luci-app-opkg/luasrc/view/opkg.htm +++ b/applications/luci-app-opkg/luasrc/view/opkg.htm @@ -226,7 +226,7 @@ truncateVersion(pkg.version || '-'), truncateVersion(avail.version || '-')); - btn = E('div', { + btn = E('button', { 'class': 'btn cbi-button-positive', 'data-package': name, 'click': handleInstall @@ -234,7 +234,7 @@ } else if (currentDisplayMode === 'installed') { ver = truncateVersion(pkg.version || '-'); - btn = E('div', { + btn = E('button', { 'class': 'btn cbi-button-negative', 'data-package': name, 'click': handleRemove @@ -244,19 +244,19 @@ ver = truncateVersion(pkg.version || '-'); if (!packages.installed.pkgs[name]) - btn = E('div', { + btn = E('button', { 'class': 'btn cbi-button-action', 'data-package': name, 'click': handleInstall }, _('Install…')); else if (packages.installed.pkgs[name].version != pkg.version) - btn = E('div', { + btn = E('button', { 'class': 'btn cbi-button-positive', 'data-package': name, 'click': handleInstall }, _('Upgrade…')); else - btn = E('div', { + btn = E('button', { 'class': 'btn cbi-button-neutral', 'disabled': 'disabled' }, _('Installed')); @@ -660,12 +660,12 @@ desc || '', errs || inst || '', E('div', { 'class': 'right' }, [ - E('div', { + E('button', { 'class': 'btn', 'click': hideModal }, _('Cancel')), ' ', - E('div', { + E('button', { 'data-command': 'install', 'data-package': name, 'class': 'btn cbi-button-action', @@ -678,7 +678,7 @@ function handleManualInstall(ev) { var name_or_url = document.querySelector('input[name="install"]').value, - install = E('div', { + install = E('button', { 'class': 'btn cbi-button-action', 'data-command': 'install', 'data-package': name_or_url, @@ -705,7 +705,7 @@ showModal(_('Manually install package'), [ warning, E('div', { 'class': 'right' }, [ - E('div', { + E('button', { 'click': hideModal, 'class': 'btn cbi-button-neutral' }, _('Cancel')), @@ -734,12 +734,12 @@ }); body.push(E('div', { 'class': 'right' }, [ - E('div', { + E('button', { 'class': 'btn cbi-button-neutral', 'click': hideModal }, _('Cancel')), ' ', - E('div', { + E('button', { 'class': 'btn cbi-button-positive', 'click': function(ev) { var data = {}; @@ -795,12 +795,12 @@ _('Automatically remove unused dependencies') ]), E('div', { 'style': 'flex-grow:1', 'class': 'right' }, [ - E('div', { + E('button', { 'class': 'btn', 'click': hideModal }, _('Cancel')), ' ', - E('div', { + E('button', { 'data-command': 'remove', 'data-package': name, 'class': 'btn cbi-button-negative', @@ -842,7 +842,7 @@ 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': 'right' }, - E('div', { + E('button', { 'class': 'btn', 'click': function() { hideModal(); @@ -914,20 +914,20 @@ <div> <label><%:Filter%>:</label> <input type="text" name="filter" placeholder="<%:Type to filter…%>" /><!-- - --><div class="btn cbi-button" onclick="handleReset(event)"><%:Clear%></div> + --><button class="btn cbi-button" onclick="handleReset(event)"><%:Clear%></button> </div> <div> <label><%:Download and install package%>:</label> <input type="text" name="install" placeholder="<%:Package name or URL…%>" onkeydown="if (event.keyCode === 13) handleManualInstall(event)" /><!-- - --><div class="btn cbi-button cbi-button-action" onclick="handleManualInstall(event)"><%:OK%></div> + --><button class="btn cbi-button cbi-button-action" onclick="handleManualInstall(event)"><%:OK%></button> </div> <div> <label><%:Actions%>:</label> - <div class="btn cbi-button-positive" data-command="update" onclick="handleOpkg(event)"><%:Update lists…%></div> + <button class="btn cbi-button-positive" data-command="update" onclick="handleOpkg(event)"><%:Update lists…%></button>   - <div class="btn cbi-button-neutral" onclick="handleConfig(event)"><%:Configure opkg…%></div> + <button class="btn cbi-button-neutral" onclick="handleConfig(event)"><%:Configure opkg…%></button> </div> </div> @@ -939,9 +939,9 @@ <div class="controls" style="display:none"> <div id="pager" class="center"> - <div class="btn cbi-button-neutral prev">«</div> + <button class="btn cbi-button-neutral prev" aria-label="<%:Previous page%>">«</button> <div class="text">dummy</div> - <div class="btn cbi-button-neutral next">»</div> + <button class="btn cbi-button-neutral next" aria-label="<%:Next page%>">»</button> </div> </div> diff --git a/applications/luci-app-opkg/po/ca/opkg.po b/applications/luci-app-opkg/po/ca/opkg.po index 63bb5b5435..7343a5abf3 100644 --- a/applications/luci-app-opkg/po/ca/opkg.po +++ b/applications/luci-app-opkg/po/ca/opkg.po @@ -133,6 +133,10 @@ msgstr "Descarrega i instal·la el paquet" msgid "Needs upgrade" msgstr "" +#: applications/luci-app-opkg/luasrc/view/opkg.htm:944 +msgid "Next page" +msgstr "" + #: applications/luci-app-opkg/luasrc/view/opkg.htm:324 msgid "No information available" msgstr "No hi ha informació disponible" @@ -176,6 +180,10 @@ msgstr "Nom del paquet" msgid "Package name or URL…" msgstr "Nom del paquet" +#: applications/luci-app-opkg/luasrc/view/opkg.htm:942 +msgid "Previous page" +msgstr "" + #: applications/luci-app-opkg/luasrc/view/opkg.htm:702 msgid "Really attempt to install <em>%h</em>?" msgstr "" diff --git a/applications/luci-app-opkg/po/cs/opkg.po b/applications/luci-app-opkg/po/cs/opkg.po index 296f0f9bce..bbcec8a880 100644 --- a/applications/luci-app-opkg/po/cs/opkg.po +++ b/applications/luci-app-opkg/po/cs/opkg.po @@ -131,6 +131,10 @@ msgstr "Stáhnout a nainstalovat balíček" msgid "Needs upgrade" msgstr "" +#: applications/luci-app-opkg/luasrc/view/opkg.htm:944 +msgid "Next page" +msgstr "" + #: applications/luci-app-opkg/luasrc/view/opkg.htm:324 msgid "No information available" msgstr "Údaje nejsou k dispozici" @@ -174,6 +178,10 @@ msgstr "Název balíčku" msgid "Package name or URL…" msgstr "Název balíčku" +#: applications/luci-app-opkg/luasrc/view/opkg.htm:942 +msgid "Previous page" +msgstr "" + #: applications/luci-app-opkg/luasrc/view/opkg.htm:702 msgid "Really attempt to install <em>%h</em>?" msgstr "" diff --git a/applications/luci-app-opkg/po/de/opkg.po b/applications/luci-app-opkg/po/de/opkg.po index debab0dea3..0fe17a5564 100644 --- a/applications/luci-app-opkg/po/de/opkg.po +++ b/applications/luci-app-opkg/po/de/opkg.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-05-26 17:57+0200\n" -"PO-Revision-Date: 2018-11-14 09:45+0100\n" +"PO-Revision-Date: 2018-11-20 11:44+0100\n" "Last-Translator: Jo-Philipp Wich <jo@mein.io>\n" "Language-Team: \n" "Language: de\n" @@ -11,7 +11,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 1.8.11\n" +"X-Generator: Poedit 2.0.5\n" #: applications/luci-app-opkg/luasrc/view/opkg.htm:927 msgid "Actions" @@ -48,7 +48,7 @@ msgstr "Abbrechen" #: applications/luci-app-opkg/luasrc/view/opkg.htm:917 msgid "Clear" -msgstr "Löschen" +msgstr "Zurücksetzen" #: applications/luci-app-opkg/luasrc/view/opkg.htm:930 msgid "Configure opkg…" @@ -136,6 +136,10 @@ msgstr "Paket manuell installieren" msgid "Needs upgrade" msgstr "Aktualisierung benötigt" +#: applications/luci-app-opkg/luasrc/view/opkg.htm:944 +msgid "Next page" +msgstr "Nächste Seite" + #: applications/luci-app-opkg/luasrc/view/opkg.htm:324 msgid "No information available" msgstr "Keine Informationen verfügbar" @@ -174,6 +178,10 @@ msgstr "Paketname" msgid "Package name or URL…" msgstr "Paketname oder URL…" +#: applications/luci-app-opkg/luasrc/view/opkg.htm:942 +msgid "Previous page" +msgstr "Vorige Seite" + #: applications/luci-app-opkg/luasrc/view/opkg.htm:702 msgid "Really attempt to install <em>%h</em>?" msgstr "Soll wirklich versucht werden, <em>%h</em> zu installieren?" diff --git a/applications/luci-app-opkg/po/el/opkg.po b/applications/luci-app-opkg/po/el/opkg.po index 0a98848f4e..83eb0939b0 100644 --- a/applications/luci-app-opkg/po/el/opkg.po +++ b/applications/luci-app-opkg/po/el/opkg.po @@ -133,6 +133,10 @@ msgstr "Κατέβασμα και εγκατάσταση πακέτου" msgid "Needs upgrade" msgstr "" +#: applications/luci-app-opkg/luasrc/view/opkg.htm:944 +msgid "Next page" +msgstr "" + #: applications/luci-app-opkg/luasrc/view/opkg.htm:324 msgid "No information available" msgstr "Δεν υπάρχουν πληροφορίες διαθέσιμες" @@ -176,6 +180,10 @@ msgstr "Όνομα πακέτου" msgid "Package name or URL…" msgstr "Όνομα πακέτου" +#: applications/luci-app-opkg/luasrc/view/opkg.htm:942 +msgid "Previous page" +msgstr "" + #: applications/luci-app-opkg/luasrc/view/opkg.htm:702 msgid "Really attempt to install <em>%h</em>?" msgstr "" diff --git a/applications/luci-app-opkg/po/en/opkg.po b/applications/luci-app-opkg/po/en/opkg.po index 7234bb6ac0..90e4a98489 100644 --- a/applications/luci-app-opkg/po/en/opkg.po +++ b/applications/luci-app-opkg/po/en/opkg.po @@ -133,6 +133,10 @@ msgstr "Download and install package" msgid "Needs upgrade" msgstr "" +#: applications/luci-app-opkg/luasrc/view/opkg.htm:944 +msgid "Next page" +msgstr "" + #: applications/luci-app-opkg/luasrc/view/opkg.htm:324 msgid "No information available" msgstr "" @@ -176,6 +180,10 @@ msgstr "Package name" msgid "Package name or URL…" msgstr "Package name" +#: applications/luci-app-opkg/luasrc/view/opkg.htm:942 +msgid "Previous page" +msgstr "" + #: applications/luci-app-opkg/luasrc/view/opkg.htm:702 msgid "Really attempt to install <em>%h</em>?" msgstr "" diff --git a/applications/luci-app-opkg/po/es/opkg.po b/applications/luci-app-opkg/po/es/opkg.po index d48d030f05..5fd9f73def 100644 --- a/applications/luci-app-opkg/po/es/opkg.po +++ b/applications/luci-app-opkg/po/es/opkg.po @@ -133,6 +133,10 @@ msgstr "Descargar e instalar paquete" msgid "Needs upgrade" msgstr "" +#: applications/luci-app-opkg/luasrc/view/opkg.htm:944 +msgid "Next page" +msgstr "" + #: applications/luci-app-opkg/luasrc/view/opkg.htm:324 msgid "No information available" msgstr "No hay información disponible" @@ -176,6 +180,10 @@ msgstr "Nombre del paquete" msgid "Package name or URL…" msgstr "Nombre del paquete" +#: applications/luci-app-opkg/luasrc/view/opkg.htm:942 +msgid "Previous page" +msgstr "" + #: applications/luci-app-opkg/luasrc/view/opkg.htm:702 msgid "Really attempt to install <em>%h</em>?" msgstr "" diff --git a/applications/luci-app-opkg/po/fr/opkg.po b/applications/luci-app-opkg/po/fr/opkg.po index 7a902593e4..c175fc0544 100644 --- a/applications/luci-app-opkg/po/fr/opkg.po +++ b/applications/luci-app-opkg/po/fr/opkg.po @@ -133,6 +133,10 @@ msgstr "Télécharge et installe le paquet" msgid "Needs upgrade" msgstr "" +#: applications/luci-app-opkg/luasrc/view/opkg.htm:944 +msgid "Next page" +msgstr "" + #: applications/luci-app-opkg/luasrc/view/opkg.htm:324 msgid "No information available" msgstr "Information indisponible" @@ -176,6 +180,10 @@ msgstr "Nom du paquet" msgid "Package name or URL…" msgstr "Nom du paquet" +#: applications/luci-app-opkg/luasrc/view/opkg.htm:942 +msgid "Previous page" +msgstr "" + #: applications/luci-app-opkg/luasrc/view/opkg.htm:702 msgid "Really attempt to install <em>%h</em>?" msgstr "" diff --git a/applications/luci-app-opkg/po/he/opkg.po b/applications/luci-app-opkg/po/he/opkg.po index 4f2d1fc41c..2fc3912060 100644 --- a/applications/luci-app-opkg/po/he/opkg.po +++ b/applications/luci-app-opkg/po/he/opkg.po @@ -129,6 +129,10 @@ msgstr "הורד והתקן חבילות" msgid "Needs upgrade" msgstr "" +#: applications/luci-app-opkg/luasrc/view/opkg.htm:944 +msgid "Next page" +msgstr "" + #: applications/luci-app-opkg/luasrc/view/opkg.htm:324 msgid "No information available" msgstr "" @@ -172,6 +176,10 @@ msgstr "שם החבילה" msgid "Package name or URL…" msgstr "שם החבילה" +#: applications/luci-app-opkg/luasrc/view/opkg.htm:942 +msgid "Previous page" +msgstr "" + #: applications/luci-app-opkg/luasrc/view/opkg.htm:702 msgid "Really attempt to install <em>%h</em>?" msgstr "" diff --git a/applications/luci-app-opkg/po/hu/opkg.po b/applications/luci-app-opkg/po/hu/opkg.po index f49547e66a..da4ed6fc0d 100644 --- a/applications/luci-app-opkg/po/hu/opkg.po +++ b/applications/luci-app-opkg/po/hu/opkg.po @@ -131,6 +131,10 @@ msgstr "Csomag letöltése és telepítése" msgid "Needs upgrade" msgstr "" +#: applications/luci-app-opkg/luasrc/view/opkg.htm:944 +msgid "Next page" +msgstr "" + #: applications/luci-app-opkg/luasrc/view/opkg.htm:324 msgid "No information available" msgstr "Nincs elérhető információ" @@ -174,6 +178,10 @@ msgstr "Csomagnév" msgid "Package name or URL…" msgstr "Csomagnév" +#: applications/luci-app-opkg/luasrc/view/opkg.htm:942 +msgid "Previous page" +msgstr "" + #: applications/luci-app-opkg/luasrc/view/opkg.htm:702 msgid "Really attempt to install <em>%h</em>?" msgstr "" diff --git a/applications/luci-app-opkg/po/it/opkg.po b/applications/luci-app-opkg/po/it/opkg.po index 14595e4193..68f19b814b 100644 --- a/applications/luci-app-opkg/po/it/opkg.po +++ b/applications/luci-app-opkg/po/it/opkg.po @@ -133,6 +133,10 @@ msgstr "Scarica e installa pacchetto" msgid "Needs upgrade" msgstr "" +#: applications/luci-app-opkg/luasrc/view/opkg.htm:944 +msgid "Next page" +msgstr "" + #: applications/luci-app-opkg/luasrc/view/opkg.htm:324 msgid "No information available" msgstr "Nessuna informazione disponibile" @@ -176,6 +180,10 @@ msgstr "Nome pacchetto" msgid "Package name or URL…" msgstr "Nome pacchetto" +#: applications/luci-app-opkg/luasrc/view/opkg.htm:942 +msgid "Previous page" +msgstr "" + #: applications/luci-app-opkg/luasrc/view/opkg.htm:702 msgid "Really attempt to install <em>%h</em>?" msgstr "" diff --git a/applications/luci-app-opkg/po/ja/opkg.po b/applications/luci-app-opkg/po/ja/opkg.po index 242a10c24b..456d82e828 100644 --- a/applications/luci-app-opkg/po/ja/opkg.po +++ b/applications/luci-app-opkg/po/ja/opkg.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-06-10 03:40+0200\n" -"PO-Revision-Date: 2018-11-16 19:58+0900\n" +"PO-Revision-Date: 2018-11-21 12:29+0900\n" "Last-Translator: INAGAKI Hiroshi <musashino.open@gmail.com>\n" "Language-Team: \n" "Language: ja\n" @@ -133,6 +133,10 @@ msgstr "パッケージの手動インストール" msgid "Needs upgrade" msgstr "要アップグレード" +#: applications/luci-app-opkg/luasrc/view/opkg.htm:944 +msgid "Next page" +msgstr "次のページ" + #: applications/luci-app-opkg/luasrc/view/opkg.htm:324 msgid "No information available" msgstr "情報がありません" @@ -171,6 +175,10 @@ msgstr "パッケージ名" msgid "Package name or URL…" msgstr "パッケージ名または URL…" +#: applications/luci-app-opkg/luasrc/view/opkg.htm:942 +msgid "Previous page" +msgstr "前のページ" + #: applications/luci-app-opkg/luasrc/view/opkg.htm:702 msgid "Really attempt to install <em>%h</em>?" msgstr "<em>%h</em> のインストールを試行してもよろしいですか?" @@ -186,7 +194,7 @@ msgstr "<em>%h</em> パッケージを削除" #: applications/luci-app-opkg/luasrc/view/opkg.htm:639 msgid "Require approx. %.1024mB size for %d package(s) to install." -msgstr "上記 %d パッケージのインストールには、約 %.1024mB の領域が必要です。" +msgstr "インストールには約 %.1024mB の領域が必要です(上記 %d パッケージ)。" #: applications/luci-app-opkg/luasrc/view/opkg.htm:465 #: applications/luci-app-opkg/luasrc/view/opkg.htm:483 diff --git a/applications/luci-app-opkg/po/ko/opkg.po b/applications/luci-app-opkg/po/ko/opkg.po index 7725d095bb..afcfb75bd6 100644 --- a/applications/luci-app-opkg/po/ko/opkg.po +++ b/applications/luci-app-opkg/po/ko/opkg.po @@ -132,6 +132,10 @@ msgstr "패키지 다운로드 후 설치" msgid "Needs upgrade" msgstr "" +#: applications/luci-app-opkg/luasrc/view/opkg.htm:944 +msgid "Next page" +msgstr "" + #: applications/luci-app-opkg/luasrc/view/opkg.htm:324 msgid "No information available" msgstr "이용 가능한 정보가 없습니다" @@ -175,6 +179,10 @@ msgstr "패키지 이름" msgid "Package name or URL…" msgstr "패키지 이름" +#: applications/luci-app-opkg/luasrc/view/opkg.htm:942 +msgid "Previous page" +msgstr "" + #: applications/luci-app-opkg/luasrc/view/opkg.htm:702 msgid "Really attempt to install <em>%h</em>?" msgstr "" diff --git a/applications/luci-app-opkg/po/ms/opkg.po b/applications/luci-app-opkg/po/ms/opkg.po index 11a943d0e5..2fb31741f4 100644 --- a/applications/luci-app-opkg/po/ms/opkg.po +++ b/applications/luci-app-opkg/po/ms/opkg.po @@ -133,6 +133,10 @@ msgstr "Turun dan memasang pakej" msgid "Needs upgrade" msgstr "" +#: applications/luci-app-opkg/luasrc/view/opkg.htm:944 +msgid "Next page" +msgstr "" + #: applications/luci-app-opkg/luasrc/view/opkg.htm:324 msgid "No information available" msgstr "" @@ -176,6 +180,10 @@ msgstr "Nama pakej" msgid "Package name or URL…" msgstr "Nama pakej" +#: applications/luci-app-opkg/luasrc/view/opkg.htm:942 +msgid "Previous page" +msgstr "" + #: applications/luci-app-opkg/luasrc/view/opkg.htm:702 msgid "Really attempt to install <em>%h</em>?" msgstr "" diff --git a/applications/luci-app-opkg/po/no/opkg.po b/applications/luci-app-opkg/po/no/opkg.po index 7858a62293..8fcb10e905 100644 --- a/applications/luci-app-opkg/po/no/opkg.po +++ b/applications/luci-app-opkg/po/no/opkg.po @@ -128,6 +128,10 @@ msgstr "Last ned og installer pakken" msgid "Needs upgrade" msgstr "" +#: applications/luci-app-opkg/luasrc/view/opkg.htm:944 +msgid "Next page" +msgstr "" + #: applications/luci-app-opkg/luasrc/view/opkg.htm:324 msgid "No information available" msgstr "Ingen informasjon tilgjengelig" @@ -171,6 +175,10 @@ msgstr "Pakkenavn" msgid "Package name or URL…" msgstr "Pakkenavn" +#: applications/luci-app-opkg/luasrc/view/opkg.htm:942 +msgid "Previous page" +msgstr "" + #: applications/luci-app-opkg/luasrc/view/opkg.htm:702 msgid "Really attempt to install <em>%h</em>?" msgstr "" diff --git a/applications/luci-app-opkg/po/pl/opkg.po b/applications/luci-app-opkg/po/pl/opkg.po index 4042ad5305..5d9afbadf3 100644 --- a/applications/luci-app-opkg/po/pl/opkg.po +++ b/applications/luci-app-opkg/po/pl/opkg.po @@ -135,6 +135,10 @@ msgstr "Pobierz i zainstaluj pakiet" msgid "Needs upgrade" msgstr "Wymuś uaktualnienie" +#: applications/luci-app-opkg/luasrc/view/opkg.htm:944 +msgid "Next page" +msgstr "" + #: applications/luci-app-opkg/luasrc/view/opkg.htm:324 msgid "No information available" msgstr "Brak dostępnych informacji" @@ -178,6 +182,10 @@ msgstr "Nazwa pakietu" msgid "Package name or URL…" msgstr "Nazwa pakietu" +#: applications/luci-app-opkg/luasrc/view/opkg.htm:942 +msgid "Previous page" +msgstr "" + #: applications/luci-app-opkg/luasrc/view/opkg.htm:702 msgid "Really attempt to install <em>%h</em>?" msgstr "" diff --git a/applications/luci-app-opkg/po/pt-br/opkg.po b/applications/luci-app-opkg/po/pt-br/opkg.po index d76d216f74..5ad0381dcc 100644 --- a/applications/luci-app-opkg/po/pt-br/opkg.po +++ b/applications/luci-app-opkg/po/pt-br/opkg.po @@ -134,6 +134,10 @@ msgstr "Baixe e instale o pacote" msgid "Needs upgrade" msgstr "Forçar a atualização" +#: applications/luci-app-opkg/luasrc/view/opkg.htm:944 +msgid "Next page" +msgstr "" + #: applications/luci-app-opkg/luasrc/view/opkg.htm:324 msgid "No information available" msgstr "Nenhuma informação disponível" @@ -177,6 +181,10 @@ msgstr "Nome do Pacote" msgid "Package name or URL…" msgstr "Nome do Pacote" +#: applications/luci-app-opkg/luasrc/view/opkg.htm:942 +msgid "Previous page" +msgstr "" + #: applications/luci-app-opkg/luasrc/view/opkg.htm:702 msgid "Really attempt to install <em>%h</em>?" msgstr "" diff --git a/applications/luci-app-opkg/po/pt/opkg.po b/applications/luci-app-opkg/po/pt/opkg.po index ae09da8361..a71298ba67 100644 --- a/applications/luci-app-opkg/po/pt/opkg.po +++ b/applications/luci-app-opkg/po/pt/opkg.po @@ -133,6 +133,10 @@ msgstr "Descarregar e instalar pacote" msgid "Needs upgrade" msgstr "" +#: applications/luci-app-opkg/luasrc/view/opkg.htm:944 +msgid "Next page" +msgstr "" + #: applications/luci-app-opkg/luasrc/view/opkg.htm:324 msgid "No information available" msgstr "Sem informação disponível" @@ -176,6 +180,10 @@ msgstr "Nome do pacote" msgid "Package name or URL…" msgstr "Nome do pacote" +#: applications/luci-app-opkg/luasrc/view/opkg.htm:942 +msgid "Previous page" +msgstr "" + #: applications/luci-app-opkg/luasrc/view/opkg.htm:702 msgid "Really attempt to install <em>%h</em>?" msgstr "" diff --git a/applications/luci-app-opkg/po/ro/opkg.po b/applications/luci-app-opkg/po/ro/opkg.po index 132145b150..93ad79ed3f 100644 --- a/applications/luci-app-opkg/po/ro/opkg.po +++ b/applications/luci-app-opkg/po/ro/opkg.po @@ -132,6 +132,10 @@ msgstr "Descarca si instaleaza pachetul" msgid "Needs upgrade" msgstr "" +#: applications/luci-app-opkg/luasrc/view/opkg.htm:944 +msgid "Next page" +msgstr "" + #: applications/luci-app-opkg/luasrc/view/opkg.htm:324 msgid "No information available" msgstr "Nici o informatie disponibila" @@ -175,6 +179,10 @@ msgstr "Numele pachetului" msgid "Package name or URL…" msgstr "Numele pachetului" +#: applications/luci-app-opkg/luasrc/view/opkg.htm:942 +msgid "Previous page" +msgstr "" + #: applications/luci-app-opkg/luasrc/view/opkg.htm:702 msgid "Really attempt to install <em>%h</em>?" msgstr "" diff --git a/applications/luci-app-opkg/po/ru/opkg.po b/applications/luci-app-opkg/po/ru/opkg.po index b41d039ded..b721983a88 100644 --- a/applications/luci-app-opkg/po/ru/opkg.po +++ b/applications/luci-app-opkg/po/ru/opkg.po @@ -136,6 +136,10 @@ msgstr "Загрузить и установить пакет" msgid "Needs upgrade" msgstr "Принудительная прошивка" +#: applications/luci-app-opkg/luasrc/view/opkg.htm:944 +msgid "Next page" +msgstr "" + #: applications/luci-app-opkg/luasrc/view/opkg.htm:324 msgid "No information available" msgstr "Нет доступной информации" @@ -179,6 +183,10 @@ msgstr "Имя пакета" msgid "Package name or URL…" msgstr "Имя пакета" +#: applications/luci-app-opkg/luasrc/view/opkg.htm:942 +msgid "Previous page" +msgstr "" + #: applications/luci-app-opkg/luasrc/view/opkg.htm:702 msgid "Really attempt to install <em>%h</em>?" msgstr "" diff --git a/applications/luci-app-opkg/po/sk/opkg.po b/applications/luci-app-opkg/po/sk/opkg.po index 326d9ab2a5..910ae6d88a 100644 --- a/applications/luci-app-opkg/po/sk/opkg.po +++ b/applications/luci-app-opkg/po/sk/opkg.po @@ -123,6 +123,10 @@ msgstr "" msgid "Needs upgrade" msgstr "" +#: applications/luci-app-opkg/luasrc/view/opkg.htm:944 +msgid "Next page" +msgstr "" + #: applications/luci-app-opkg/luasrc/view/opkg.htm:324 msgid "No information available" msgstr "" @@ -161,6 +165,10 @@ msgstr "" msgid "Package name or URL…" msgstr "" +#: applications/luci-app-opkg/luasrc/view/opkg.htm:942 +msgid "Previous page" +msgstr "" + #: applications/luci-app-opkg/luasrc/view/opkg.htm:702 msgid "Really attempt to install <em>%h</em>?" msgstr "" diff --git a/applications/luci-app-opkg/po/sv/opkg.po b/applications/luci-app-opkg/po/sv/opkg.po index 652f4f6db6..8e29a7b0fd 100644 --- a/applications/luci-app-opkg/po/sv/opkg.po +++ b/applications/luci-app-opkg/po/sv/opkg.po @@ -131,6 +131,10 @@ msgstr "Ladda ner och installera paket" msgid "Needs upgrade" msgstr "" +#: applications/luci-app-opkg/luasrc/view/opkg.htm:944 +msgid "Next page" +msgstr "" + #: applications/luci-app-opkg/luasrc/view/opkg.htm:324 msgid "No information available" msgstr "Ingen information tillgänglig" @@ -174,6 +178,10 @@ msgstr "Paketnamn" msgid "Package name or URL…" msgstr "Paketnamn" +#: applications/luci-app-opkg/luasrc/view/opkg.htm:942 +msgid "Previous page" +msgstr "" + #: applications/luci-app-opkg/luasrc/view/opkg.htm:702 msgid "Really attempt to install <em>%h</em>?" msgstr "" diff --git a/applications/luci-app-opkg/po/templates/opkg.pot b/applications/luci-app-opkg/po/templates/opkg.pot index 2f1218af89..9e7aaffdfc 100644 --- a/applications/luci-app-opkg/po/templates/opkg.pot +++ b/applications/luci-app-opkg/po/templates/opkg.pot @@ -115,6 +115,10 @@ msgstr "" msgid "Needs upgrade" msgstr "" +#: applications/luci-app-opkg/luasrc/view/opkg.htm:944 +msgid "Next page" +msgstr "" + #: applications/luci-app-opkg/luasrc/view/opkg.htm:324 msgid "No information available" msgstr "" @@ -153,6 +157,10 @@ msgstr "" msgid "Package name or URL…" msgstr "" +#: applications/luci-app-opkg/luasrc/view/opkg.htm:942 +msgid "Previous page" +msgstr "" + #: applications/luci-app-opkg/luasrc/view/opkg.htm:702 msgid "Really attempt to install <em>%h</em>?" msgstr "" diff --git a/applications/luci-app-opkg/po/tr/opkg.po b/applications/luci-app-opkg/po/tr/opkg.po index 2a3826f9b3..fe5e381fe0 100644 --- a/applications/luci-app-opkg/po/tr/opkg.po +++ b/applications/luci-app-opkg/po/tr/opkg.po @@ -127,6 +127,10 @@ msgstr "" msgid "Needs upgrade" msgstr "" +#: applications/luci-app-opkg/luasrc/view/opkg.htm:944 +msgid "Next page" +msgstr "" + #: applications/luci-app-opkg/luasrc/view/opkg.htm:324 msgid "No information available" msgstr "" @@ -168,6 +172,10 @@ msgstr "" msgid "Package name or URL…" msgstr "" +#: applications/luci-app-opkg/luasrc/view/opkg.htm:942 +msgid "Previous page" +msgstr "" + #: applications/luci-app-opkg/luasrc/view/opkg.htm:702 msgid "Really attempt to install <em>%h</em>?" msgstr "" diff --git a/applications/luci-app-opkg/po/uk/opkg.po b/applications/luci-app-opkg/po/uk/opkg.po index f1ba3f4da5..853c568da1 100644 --- a/applications/luci-app-opkg/po/uk/opkg.po +++ b/applications/luci-app-opkg/po/uk/opkg.po @@ -1,15 +1,13 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"PO-Revision-Date: 2018-10-14 18:10+0300\n" +"PO-Revision-Date: 2018-11-20 14:00+0200\n" "Last-Translator: Yurii <yuripet@gmail.com>\n" "Language-Team: none\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: applications/luci-app-opkg/luasrc/view/opkg.htm:927 msgid "Actions" @@ -17,7 +15,7 @@ msgstr "Дії" #: applications/luci-app-opkg/luasrc/view/opkg.htm:795 msgid "Automatically remove unused dependencies" -msgstr "" +msgstr "Автоматичне видалення невикористовуваних залежностей" #: applications/luci-app-opkg/luasrc/view/opkg.htm:935 msgid "Available" @@ -30,6 +28,11 @@ msgid "" "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/luasrc/view/opkg.htm:666 #: applications/luci-app-opkg/luasrc/view/opkg.htm:711 @@ -40,16 +43,15 @@ msgstr "Скасувати" #: applications/luci-app-opkg/luasrc/view/opkg.htm:917 msgid "Clear" -msgstr "" +msgstr "Очистити" #: applications/luci-app-opkg/luasrc/view/opkg.htm:930 -#, fuzzy msgid "Configure opkg…" -msgstr "Конфігурація" +msgstr "Налаштування opkg…" #: applications/luci-app-opkg/luasrc/view/opkg.htm:643 msgid "Dependencies" -msgstr "" +msgstr "Залежності" #: applications/luci-app-opkg/luasrc/view/opkg.htm:649 #: applications/luci-app-opkg/luasrc/view/opkg.htm:781 @@ -59,28 +61,27 @@ msgstr "Опис" #: applications/luci-app-opkg/luasrc/view/opkg.htm:654 msgid "Details for package <em>%h</em>" -msgstr "" +msgstr "Подробиці про пакет <em>%h</em>" #: applications/luci-app-opkg/luasrc/view/opkg.htm:851 msgid "Dismiss" -msgstr "Відхилити" +msgstr "Закрити" #: applications/luci-app-opkg/luasrc/view/opkg.htm:311 msgid "Displaying %d-%d of %d" -msgstr "" +msgstr "Відображається %d-%d із %d" #: applications/luci-app-opkg/luasrc/view/opkg.htm:921 msgid "Download and install package" msgstr "Завантажити та інсталювати пакети" #: applications/luci-app-opkg/luasrc/view/opkg.htm:837 -#, fuzzy msgid "Errors" -msgstr "Помилка" +msgstr "Помилки" #: applications/luci-app-opkg/luasrc/view/opkg.htm:821 msgid "Executing package manager" -msgstr "" +msgstr "Виконання менеджера пакетів" #: applications/luci-app-opkg/luasrc/view/opkg.htm:915 msgid "Filter" @@ -98,62 +99,60 @@ msgstr "Інсталювати" #: applications/luci-app-opkg/luasrc/view/opkg.htm:262 #: applications/luci-app-opkg/luasrc/view/opkg.htm:470 #: applications/luci-app-opkg/luasrc/view/opkg.htm:936 -#, fuzzy msgid "Installed" -msgstr "Інсталювати" +msgstr "Інстальовано" #: applications/luci-app-opkg/luasrc/view/opkg.htm:695 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/luasrc/view/opkg.htm:251 -#, fuzzy msgid "Install…" -msgstr "Інсталювати" +msgstr "Інсталювати…" #: applications/luci-app-opkg/luasrc/view/opkg.htm:720 -#, fuzzy msgid "Loading configuration data…" -msgstr "Розпочато застосування конфігурації…" +msgstr "Завантаження даних конфігурації…" #: applications/luci-app-opkg/luasrc/view/opkg.htm:858 msgid "Loading package information…" -msgstr "" +msgstr "Завантаження інформації про пакет…" #: applications/luci-app-opkg/luasrc/view/opkg.htm:705 -#, fuzzy msgid "Manually install package" -msgstr "Завантажити та інсталювати пакети" +msgstr "Інсталяція пакета вручну" #: applications/luci-app-opkg/luasrc/view/opkg.htm:458 -#, fuzzy msgid "Needs upgrade" -msgstr "Примусове оновлення" +msgstr "Потребує оновлення" + +#: applications/luci-app-opkg/luasrc/view/opkg.htm:944 +msgid "Next page" +msgstr "" #: applications/luci-app-opkg/luasrc/view/opkg.htm:324 msgid "No information available" msgstr "Інформація відсутня" #: applications/luci-app-opkg/luasrc/view/opkg.htm:312 -#, fuzzy msgid "No packages" -msgstr "Знайти пакет" +msgstr "Немає пакетів" #: applications/luci-app-opkg/luasrc/view/opkg.htm:328 msgid "No packages matching \"<strong>%h</strong>\"." -msgstr "" +msgstr "Немає пакетів, що відповідають \"<strong>%h</strong>\"." #: applications/luci-app-opkg/luasrc/view/opkg.htm:490 -#, fuzzy msgid "Not available" -msgstr "Усього доступно" +msgstr "Недоступно" #: applications/luci-app-opkg/luasrc/view/opkg.htm:475 -#, fuzzy msgid "Not installed" -msgstr "Не підключено" +msgstr "Не інстальовано" #: applications/luci-app-opkg/luasrc/view/opkg.htm:923 msgid "OK" @@ -162,7 +161,6 @@ msgstr "OK" #: applications/luci-app-opkg/luasrc/view/opkg.htm:719 #: applications/luci-app-opkg/luasrc/view/opkg.htm:751 #: applications/luci-app-opkg/luasrc/view/opkg.htm:761 -#, fuzzy msgid "OPKG Configuration" msgstr "Конфігурація OPKG" @@ -171,13 +169,16 @@ msgid "Package name" msgstr "Назва пакета" #: applications/luci-app-opkg/luasrc/view/opkg.htm:922 -#, fuzzy msgid "Package name or URL…" -msgstr "Назва пакета" +msgstr "Назва пакета чи URL-адреса…" + +#: applications/luci-app-opkg/luasrc/view/opkg.htm:942 +msgid "Previous page" +msgstr "" #: applications/luci-app-opkg/luasrc/view/opkg.htm:702 msgid "Really attempt to install <em>%h</em>?" -msgstr "" +msgstr "Дійсно спробувати інсталювати <em>%h</em>?" #: applications/luci-app-opkg/luasrc/view/opkg.htm:241 #: applications/luci-app-opkg/luasrc/view/opkg.htm:808 @@ -186,11 +187,11 @@ msgstr "Видалити" #: applications/luci-app-opkg/luasrc/view/opkg.htm:786 msgid "Remove package <em>%h</em>" -msgstr "" +msgstr "Видалити пакет <em>%h</em>" #: applications/luci-app-opkg/luasrc/view/opkg.htm:639 msgid "Require approx. %.1024mB size for %d package(s) to install." -msgstr "" +msgstr "Потрібно приблизно %.1024mB для інсталяції %d пакетів." #: applications/luci-app-opkg/luasrc/view/opkg.htm:465 #: applications/luci-app-opkg/luasrc/view/opkg.htm:483 @@ -198,15 +199,19 @@ msgid "" "Require version %h %h,\n" "installed %h" msgstr "" +"Потрібна версія %h %h,\n" +"інстальовано %h" #: applications/luci-app-opkg/luasrc/view/opkg.htm:488 msgid "" "Required dependency package <em>%h</em> is not available in any repository." msgstr "" +"Необхідний за залежністю пакет <em>%h</em> не доступний ні в одному " +"репозиторії." #: applications/luci-app-opkg/luasrc/view/opkg.htm:456 msgid "Requires update to %h %h" -msgstr "" +msgstr "Потрібно оновити до %h %h" #: applications/luci-app-opkg/luasrc/view/opkg.htm:329 msgid "Reset" @@ -217,9 +222,8 @@ msgid "Save" msgstr "Зберегти" #: applications/luci-app-opkg/luasrc/view/opkg.htm:752 -#, fuzzy msgid "Saving configuration data…" -msgstr "Розпочато застосування конфігурації…" +msgstr "Збереження даних конфігурації…" #: applications/luci-app-opkg/luasrc/view/opkg.htm:657 #: applications/luci-app-opkg/luasrc/view/opkg.htm:789 @@ -237,42 +241,45 @@ msgstr "Програмне забезпечення" #: applications/luci-app-opkg/luasrc/view/opkg.htm:842 msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." -msgstr "" +msgstr "Помилка виконання команди <em>opkg %h</em> з кодом <code>%d</code>." #: applications/luci-app-opkg/luasrc/view/opkg.htm:461 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/luasrc/view/opkg.htm:698 msgid "The package <em>%h</em> is not available in any configured repository." msgstr "" +"Пакет <em>%h</em> не доступний ні в одному сконфігурованому репозиторії." #: applications/luci-app-opkg/luasrc/view/opkg.htm:478 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/luasrc/view/opkg.htm:916 msgid "Type to filter…" -msgstr "" +msgstr "Введіть текст для фільтра…" #: applications/luci-app-opkg/luasrc/view/opkg.htm:928 -#, fuzzy msgid "Update lists…" -msgstr "Оновити списки" +msgstr "Оновити списки…" #: applications/luci-app-opkg/luasrc/view/opkg.htm:937 -#, fuzzy msgid "Updates" -msgstr "Оновити списки" +msgstr "Оновлення" #: applications/luci-app-opkg/luasrc/view/opkg.htm:233 #: applications/luci-app-opkg/luasrc/view/opkg.htm:257 msgid "Upgrade…" -msgstr "" +msgstr "Оновлення…" #: applications/luci-app-opkg/luasrc/view/opkg.htm:656 #: applications/luci-app-opkg/luasrc/view/opkg.htm:788 @@ -283,12 +290,11 @@ msgstr "Версія" #: applications/luci-app-opkg/luasrc/view/opkg.htm:467 #: applications/luci-app-opkg/luasrc/view/opkg.htm:485 msgid "Version incompatible" -msgstr "" +msgstr "Несумісна версія" #: applications/luci-app-opkg/luasrc/view/opkg.htm:823 -#, fuzzy msgid "Waiting for the <em>opkg %h</em> command to complete…" -msgstr "Очікуємо завершення виконання команди..." +msgstr "Очікуємо завершення виконання команди <em>opkg %h</em> …" #: applications/luci-app-opkg/luasrc/view/opkg.htm:617 #: applications/luci-app-opkg/luasrc/view/opkg.htm:777 @@ -299,9 +305,9 @@ msgstr "невідомий" #: applications/luci-app-opkg/luasrc/view/opkg.htm:615 #: applications/luci-app-opkg/luasrc/view/opkg.htm:775 msgid "~%.1024mB compressed" -msgstr "" +msgstr "~%.1024mB стиснуто" #: applications/luci-app-opkg/luasrc/view/opkg.htm:613 #: applications/luci-app-opkg/luasrc/view/opkg.htm:773 msgid "~%.1024mB installed" -msgstr "" +msgstr "~%.1024mB інстальовано" diff --git a/applications/luci-app-opkg/po/vi/opkg.po b/applications/luci-app-opkg/po/vi/opkg.po index 5f434273a1..c67f56fb7b 100644 --- a/applications/luci-app-opkg/po/vi/opkg.po +++ b/applications/luci-app-opkg/po/vi/opkg.po @@ -132,6 +132,10 @@ msgstr "Tải và cài đặt gói" msgid "Needs upgrade" msgstr "" +#: applications/luci-app-opkg/luasrc/view/opkg.htm:944 +msgid "Next page" +msgstr "" + #: applications/luci-app-opkg/luasrc/view/opkg.htm:324 msgid "No information available" msgstr "" @@ -175,6 +179,10 @@ msgstr "Tên gói" msgid "Package name or URL…" msgstr "Tên gói" +#: applications/luci-app-opkg/luasrc/view/opkg.htm:942 +msgid "Previous page" +msgstr "" + #: applications/luci-app-opkg/luasrc/view/opkg.htm:702 msgid "Really attempt to install <em>%h</em>?" msgstr "" diff --git a/applications/luci-app-opkg/po/zh-cn/opkg.po b/applications/luci-app-opkg/po/zh-cn/opkg.po index cb4b5d43aa..bb30fa00be 100644 --- a/applications/luci-app-opkg/po/zh-cn/opkg.po +++ b/applications/luci-app-opkg/po/zh-cn/opkg.po @@ -132,6 +132,10 @@ msgstr "下载并安装软件包" msgid "Needs upgrade" msgstr "" +#: applications/luci-app-opkg/luasrc/view/opkg.htm:944 +msgid "Next page" +msgstr "" + #: applications/luci-app-opkg/luasrc/view/opkg.htm:324 msgid "No information available" msgstr "无可用信息" @@ -175,6 +179,10 @@ msgstr "软件包名称" msgid "Package name or URL…" msgstr "软件包名称" +#: applications/luci-app-opkg/luasrc/view/opkg.htm:942 +msgid "Previous page" +msgstr "" + #: applications/luci-app-opkg/luasrc/view/opkg.htm:702 msgid "Really attempt to install <em>%h</em>?" msgstr "" diff --git a/applications/luci-app-opkg/po/zh-tw/opkg.po b/applications/luci-app-opkg/po/zh-tw/opkg.po index 0bef4e0683..c2ea0348f4 100644 --- a/applications/luci-app-opkg/po/zh-tw/opkg.po +++ b/applications/luci-app-opkg/po/zh-tw/opkg.po @@ -131,6 +131,10 @@ msgstr "下載並安裝軟體包" msgid "Needs upgrade" msgstr "" +#: applications/luci-app-opkg/luasrc/view/opkg.htm:944 +msgid "Next page" +msgstr "" + #: applications/luci-app-opkg/luasrc/view/opkg.htm:324 msgid "No information available" msgstr "尚無可運用資訊" @@ -174,6 +178,10 @@ msgstr "軟體包名稱" msgid "Package name or URL…" msgstr "軟體包名稱" +#: applications/luci-app-opkg/luasrc/view/opkg.htm:942 +msgid "Previous page" +msgstr "" + #: applications/luci-app-opkg/luasrc/view/opkg.htm:702 msgid "Really attempt to install <em>%h</em>?" msgstr "" |