From: Tianling Shen Date: Sun, 29 Jun 2025 09:57:02 +0000 (+0800) Subject: luci-app-openlist: rename from luci-app-alist X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=79caae717027ab9011eba48c6a3acf49cdcd3559;p=project%2Fluci.git luci-app-openlist: rename from luci-app-alist See https://github.com/openwrt/packages/pull/26855 for more information. Signed-off-by: Tianling Shen (cherry picked from commit 682a2b9525a1152916de874a2731d4b64972c5f7) --- diff --git a/applications/luci-app-alist/Makefile b/applications/luci-app-alist/Makefile deleted file mode 100644 index a0a922e7ac..0000000000 --- a/applications/luci-app-alist/Makefile +++ /dev/null @@ -1,16 +0,0 @@ -# SPDX-License-Identifier: Apache-2.0 -# -# Copyright (C) 2023 ImmortalWrt.org - -include $(TOPDIR)/rules.mk - -PKG_LICENSE:=Apache-2.0 - -LUCI_TITLE:=LuCI app for AList -LUCI_DEPENDS:=+alist - -PKG_MAINTAINER:=Tianling Shen - -include ../../luci.mk - -# call BuildPackage - OpenWrt buildroot signature diff --git a/applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js b/applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js deleted file mode 100644 index 7cda53d3ff..0000000000 --- a/applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js +++ /dev/null @@ -1,144 +0,0 @@ -// SPDX-License-Identifier: Apache-2.0 - -'use strict'; -'require form'; -'require poll'; -'require rpc'; -'require uci'; -'require validation'; -'require view'; - -const callServiceList = rpc.declare({ - object: 'service', - method: 'list', - params: ['name'], - expect: { '': {} } -}); - -function getServiceStatus() { - return L.resolveDefault(callServiceList('alist'), {}).then(function (res) { - var isRunning = false; - try { - isRunning = res['alist']['instances']['instance1']['running']; - } catch (e) { } - return isRunning; - }); -} - -function renderStatus(isRunning, port) { - var spanTemp = '%s %s'; - var renderHTML; - if (isRunning) { - var button = String.format(' %s', - window.location.hostname, port, _('Open Web Interface')); - renderHTML = spanTemp.format('green', _('AList'), _('RUNNING')) + button; - } else { - renderHTML = spanTemp.format('red', _('AList'), _('NOT RUNNING')); - } - - return renderHTML; -} - -var stubValidator = { - factory: validation, - apply: function(type, value, args) { - if (value != null) - this.value = value; - - return validation.types[type].apply(this, args); - }, - assert: function(condition) { - return !!condition; - } -}; - -return view.extend({ - load: function() { - return Promise.all([ - uci.load('alist') - ]); - }, - - render: function(data) { - let m, s, o; - var webport = uci.get(data[0], 'config', 'listen_http_port') || '5244'; - - m = new form.Map('alist', _('AList'), - _('A file list/WebDAV program that supports multiple storages, powered by Gin and Solidjs.') + '
' + - _('Default webUI/WebDAV login username is %s and password is %s.').format('admin', 'password')); - - s = m.section(form.TypedSection); - s.anonymous = true; - s.render = function () { - poll.add(function () { - return L.resolveDefault(getServiceStatus()).then(function (res) { - var view = document.getElementById('service_status'); - view.innerHTML = renderStatus(res, webport); - }); - }); - - return E('div', { class: 'cbi-section', id: 'status_bar' }, [ - E('p', { id: 'service_status' }, _('Collecting data...')) - ]); - } - - s = m.section(form.NamedSection, 'config', 'alist'); - - o = s.option(form.Flag, 'enabled', _('Enable')); - o.default = o.disabled; - o.rmempty = false; - - o = s.option(form.Value, 'listen_addr', _('Listen address')); - o.placeholder = '0.0.0.0'; - o.validate = function(section_id, value) { - if (section_id && value) { - var m4 = value.match(/^([^\[\]:]+)$/), - m6 = value.match(/^\[(.+)\]$/ ); - - if ((!m4 && !m6) || !stubValidator.apply('ipaddr', m4 ? m4[1] : m6[1])) - return _('Expecting: %s').format(_('valid IP address')); - } - return true; - } - - o = s.option(form.Value, 'listen_http_port', _('Listen port')); - o.datatype = 'port'; - o.placeholder = '5244'; - - o = s.option(form.Value, 'site_login_expire', _('Login expiration time'), - _('User login expiration time (in hours).')); - o.datatype = 'uinteger'; - o.placeholder = '48'; - - o = s.option(form.Value, 'site_max_connections', _('Max connections'), - _('The maximum number of concurrent connections at the same time (0 = unlimited).')); - o.datatype = 'uinteger'; - o.placeholder = '0'; - - o = s.option(form.Flag, 'site_tls_insecure', _('Allow insecure connection'), - _('Allow connection even if the remote TLS certificate is invalid (not recommended).')); - - o = s.option(form.Flag, 'log_enable', _('Enable logging')); - o.default = o.enabled; - - o = s.option(form.Value, 'log_max_size', _('Max log size'), - _('The maximum size in megabytes of the log file before it gets rotated.')); - o.datatype = 'uinteger'; - o.placeholder = '5'; - o.depends('log_enable', '1'); - - o = s.option(form.Value, 'log_max_backups', _('Max log backups'), - _('The maximum number of old log files to retain.')); - o.datatype = 'uinteger'; - o.placeholder = '1'; - o.depends('log_enable', '1'); - - o = s.option(form.Value, 'log_max_age', _('Max log age'), - _('The maximum days of the log file to retain.')); - o.datatype = 'uinteger'; - o.placeholder = '15'; - o.depends('log_enable', '1'); - - return m.render(); - } -}); diff --git a/applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js b/applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js deleted file mode 100644 index da646baaf7..0000000000 --- a/applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js +++ /dev/null @@ -1,75 +0,0 @@ -// SPDX-License-Identifier: Apache-2.0 - -'use strict'; -'require dom'; -'require fs'; -'require poll'; -'require uci'; -'require view'; - -return view.extend({ - render: function() { - /* Thanks to luci-app-aria2 */ - var css = ' \ - #log_textarea { \ - padding: 10px; \ - text-align: left; \ - } \ - #log_textarea pre { \ - padding: .5rem; \ - word-break: break-all; \ - margin: 0; \ - } \ - .description { \ - background-color: #33ccff; \ - }'; - - var log_textarea = E('div', { 'id': 'log_textarea' }, - E('img', { - 'src': L.resource('icons/loading.svg'), - 'alt': _('Loading...'), - 'style': 'vertical-align:middle' - }, _('Collecting data...')) - ); - - poll.add(L.bind(function() { - return fs.read_direct('/var/run/alist/log/alist.log', 'text') - .then(function(res) { - var log = E('pre', { 'wrap': 'pre' }, [ - res.trim() || _('Log is empty.') - ]); - - dom.content(log_textarea, log); - }).catch(function(err) { - var log; - - if (err.toString().includes('NotFoundError')) - log = E('pre', { 'wrap': 'pre' }, [ - _('Log file does not exist.') - ]); - else - log = E('pre', { 'wrap': 'pre' }, [ - _('Unknown error: %s').format(err) - ]); - - dom.content(log_textarea, log); - }); - })); - - return E([ - E('style', [ css ]), - E('div', {'class': 'cbi-map'}, [ - E('div', {'class': 'cbi-section'}, [ - log_textarea, - E('div', {'style': 'text-align:right'}, - E('small', {}, _('Refresh every %s seconds.').format(L.env.pollinterval)) - ) - ]) - ]) - ]); - }, - - handleSaveApply: null, - handleSave: null, - handleReset: null -}); diff --git a/applications/luci-app-alist/po/ar/alist.po b/applications/luci-app-alist/po/ar/alist.po deleted file mode 100644 index bf26d98c3b..0000000000 --- a/applications/luci-app-alist/po/ar/alist.po +++ /dev/null @@ -1,156 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2024-07-15 20:49+0000\n" -"Last-Translator: Rex_sa \n" -"Language-Team: Arabic \n" -"Language: ar\n" -"MIME-Version: 1.0\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-alist/htdocs/luci-static/resources/view/alist/config.js:67 -msgid "" -"A file list/WebDAV program that supports multiple storages, powered by Gin " -"and Solidjs." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 -msgid "AList" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 -msgid "" -"Allow connection even if the remote TLS certificate is invalid (not " -"recommended)." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 -msgid "Allow insecure connection" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 -msgid "Collecting data..." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 -msgid "Default webUI/WebDAV login username is %s and password is %s." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 -msgid "Enable" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 -msgid "Enable logging" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "Expecting: %s" -msgstr "" - -#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 -msgid "Grant UCI access for luci-app-alist" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 -msgid "Listen address" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 -msgid "Listen port" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 -msgid "Loading..." -msgstr "" - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 -msgid "Log" -msgstr "السجل" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 -msgid "Log file does not exist." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 -msgid "Log is empty." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 -msgid "Login expiration time" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 -msgid "Max connections" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 -msgid "Max log age" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 -msgid "Max log backups" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 -msgid "Max log size" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -msgid "NOT RUNNING" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 -msgid "Open Web Interface" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -msgid "RUNNING" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 -msgid "Refresh every %s seconds." -msgstr "" - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 -msgid "Settings" -msgstr "الاعدادات" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 -msgid "The maximum days of the log file to retain." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 -msgid "" -"The maximum number of concurrent connections at the same time (0 = " -"unlimited)." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 -msgid "The maximum number of old log files to retain." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 -msgid "The maximum size in megabytes of the log file before it gets rotated." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 -msgid "Unknown error: %s" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 -msgid "User login expiration time (in hours)." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "valid IP address" -msgstr "" diff --git a/applications/luci-app-alist/po/bg/alist.po b/applications/luci-app-alist/po/bg/alist.po deleted file mode 100644 index 58dd2429a0..0000000000 --- a/applications/luci-app-alist/po/bg/alist.po +++ /dev/null @@ -1,160 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2024-10-18 20:25+0000\n" -"Last-Translator: Boyan Alexiev \n" -"Language-Team: Bulgarian \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 5.8-rc\n" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 -msgid "" -"A file list/WebDAV program that supports multiple storages, powered by Gin " -"and Solidjs." -msgstr "" -"Програма за списъци с файлове/WebDAV, която поддържа множество хранилища, " -"задвижвана от Gin и Solidjs." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 -msgid "AList" -msgstr "AList" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 -msgid "" -"Allow connection even if the remote TLS certificate is invalid (not " -"recommended)." -msgstr "" -"Позволи връзка дори ако отдалечения TLS сертификат е невалиден (не " -"се препоръчва)." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 -msgid "Allow insecure connection" -msgstr "Позволяване на несигурни връзки" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 -msgid "Collecting data..." -msgstr "Събиране на данни..." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 -msgid "Default webUI/WebDAV login username is %s and password is %s." -msgstr "Потребителят по подразбиране за webUI/WebDAV е %s и паролата е %s." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 -msgid "Enable" -msgstr "Включване" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 -msgid "Enable logging" -msgstr "Включване на логване" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "Expecting: %s" -msgstr "Очакване: %s" - -#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 -msgid "Grant UCI access for luci-app-alist" -msgstr "Позволи UCI достъп на luci-app-alist" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 -msgid "Listen address" -msgstr "Адрес на слушане" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 -msgid "Listen port" -msgstr "Порт на слушане" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 -msgid "Loading..." -msgstr "Зареждане…" - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 -msgid "Log" -msgstr "Лог" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 -msgid "Log file does not exist." -msgstr "Лог файла не съществува." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 -msgid "Log is empty." -msgstr "Логът е празен." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 -msgid "Login expiration time" -msgstr "Период за логване" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 -msgid "Max connections" -msgstr "Максимален брой връзки" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 -msgid "Max log age" -msgstr "Максимална възраст на лога" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 -msgid "Max log backups" -msgstr "Максимален брой архиви на лога" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 -msgid "Max log size" -msgstr "Максимален размер на лога" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -msgid "NOT RUNNING" -msgstr "НЕ СЕ ИЗПЪЛНЯВА" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 -msgid "Open Web Interface" -msgstr "Отвори уеб интерфейс" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -msgid "RUNNING" -msgstr "ИЗПЪЛНЕНИЕ" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 -msgid "Refresh every %s seconds." -msgstr "Освежаване на всеки %s секунди." - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 -msgid "Settings" -msgstr "Настройки" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 -msgid "The maximum days of the log file to retain." -msgstr "Максимален брой дни за съхранение на лога." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 -msgid "" -"The maximum number of concurrent connections at the same time (0 = " -"unlimited)." -msgstr "Максимален брой паралелни връзки (0 = неограничени)." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 -msgid "The maximum number of old log files to retain." -msgstr "Максимален брой стари лог файлове за съхранение." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 -msgid "The maximum size in megabytes of the log file before it gets rotated." -msgstr "" -"Максимален размер в мегабайти на лог файла преди да се направи ротация." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 -msgid "Unknown error: %s" -msgstr "Неизвестна грешка: %s" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 -msgid "User login expiration time (in hours)." -msgstr "Време за вход на потребителя (в часове)." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "valid IP address" -msgstr "валиден IP адрес" diff --git a/applications/luci-app-alist/po/bn_BD/alist.po b/applications/luci-app-alist/po/bn_BD/alist.po deleted file mode 100644 index b31417e3c7..0000000000 --- a/applications/luci-app-alist/po/bn_BD/alist.po +++ /dev/null @@ -1,155 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2025-04-15 20:45+0000\n" -"Last-Translator: Random Github User \n" -"Language-Team: Bengali (Bangladesh) \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 5.11-dev\n" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 -msgid "" -"A file list/WebDAV program that supports multiple storages, powered by Gin " -"and Solidjs." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 -msgid "AList" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 -msgid "" -"Allow connection even if the remote TLS certificate is invalid (not " -"recommended)." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 -msgid "Allow insecure connection" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 -msgid "Collecting data..." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 -msgid "Default webUI/WebDAV login username is %s and password is %s." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 -msgid "Enable" -msgstr "সক্রিয় করুন" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 -msgid "Enable logging" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "Expecting: %s" -msgstr "" - -#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 -msgid "Grant UCI access for luci-app-alist" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 -msgid "Listen address" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 -msgid "Listen port" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 -msgid "Loading..." -msgstr "" - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 -msgid "Log" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 -msgid "Log file does not exist." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 -msgid "Log is empty." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 -msgid "Login expiration time" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 -msgid "Max connections" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 -msgid "Max log age" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 -msgid "Max log backups" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 -msgid "Max log size" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -msgid "NOT RUNNING" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 -msgid "Open Web Interface" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -msgid "RUNNING" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 -msgid "Refresh every %s seconds." -msgstr "" - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 -msgid "Settings" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 -msgid "The maximum days of the log file to retain." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 -msgid "" -"The maximum number of concurrent connections at the same time (0 = " -"unlimited)." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 -msgid "The maximum number of old log files to retain." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 -msgid "The maximum size in megabytes of the log file before it gets rotated." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 -msgid "Unknown error: %s" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 -msgid "User login expiration time (in hours)." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "valid IP address" -msgstr "" diff --git a/applications/luci-app-alist/po/ca/alist.po b/applications/luci-app-alist/po/ca/alist.po deleted file mode 100644 index 53e8e7b936..0000000000 --- a/applications/luci-app-alist/po/ca/alist.po +++ /dev/null @@ -1,155 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2025-03-10 02:48+0000\n" -"Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: Catalan \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 5.10.3-dev\n" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 -msgid "" -"A file list/WebDAV program that supports multiple storages, powered by Gin " -"and Solidjs." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 -msgid "AList" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 -msgid "" -"Allow connection even if the remote TLS certificate is invalid (not " -"recommended)." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 -msgid "Allow insecure connection" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 -msgid "Collecting data..." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 -msgid "Default webUI/WebDAV login username is %s and password is %s." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 -msgid "Enable" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 -msgid "Enable logging" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "Expecting: %s" -msgstr "" - -#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 -msgid "Grant UCI access for luci-app-alist" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 -msgid "Listen address" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 -msgid "Listen port" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 -msgid "Loading..." -msgstr "" - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 -msgid "Log" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 -msgid "Log file does not exist." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 -msgid "Log is empty." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 -msgid "Login expiration time" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 -msgid "Max connections" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 -msgid "Max log age" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 -msgid "Max log backups" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 -msgid "Max log size" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -msgid "NOT RUNNING" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 -msgid "Open Web Interface" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -msgid "RUNNING" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 -msgid "Refresh every %s seconds." -msgstr "" - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 -msgid "Settings" -msgstr "Paràmetres" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 -msgid "The maximum days of the log file to retain." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 -msgid "" -"The maximum number of concurrent connections at the same time (0 = " -"unlimited)." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 -msgid "The maximum number of old log files to retain." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 -msgid "The maximum size in megabytes of the log file before it gets rotated." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 -msgid "Unknown error: %s" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 -msgid "User login expiration time (in hours)." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "valid IP address" -msgstr "" diff --git a/applications/luci-app-alist/po/cs/alist.po b/applications/luci-app-alist/po/cs/alist.po deleted file mode 100644 index c9d17c90e4..0000000000 --- a/applications/luci-app-alist/po/cs/alist.po +++ /dev/null @@ -1,165 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2025-05-11 19:01+0000\n" -"Last-Translator: Pavel Borecki \n" -"Language-Team: Czech \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 5.12-dev\n" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 -msgid "" -"A file list/WebDAV program that supports multiple storages, powered by Gin " -"and Solidjs." -msgstr "" -"Seznam souborů/program WebDAV, který podporuje více úložišť a využívá Gin a " -"Solidjs." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 -msgid "AList" -msgstr "AList" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 -msgid "" -"Allow connection even if the remote TLS certificate is invalid (not " -"recommended)." -msgstr "" -"Umožnit spojení i když vzdálený TLS certifikát není platný " -"(nedoporučeno)." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 -msgid "Allow insecure connection" -msgstr "Umožnit nezabezpečené spojení" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 -msgid "Collecting data..." -msgstr "Shromažďování dat…" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 -msgid "Default webUI/WebDAV login username is %s and password is %s." -msgstr "" -"Výchozí uživatelské jméno pro přihlaÅ¡ování k webUI/WebDAV je %s a heslo je " -"%s." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 -msgid "Enable" -msgstr "Povolit" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 -msgid "Enable logging" -msgstr "Zaznamenávat události" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "Expecting: %s" -msgstr "Očekáváno: %s" - -#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 -msgid "Grant UCI access for luci-app-alist" -msgstr "Udělit luci-app-alist přístup do UCI nastavování" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 -msgid "Listen address" -msgstr "Adresa na které očekávat spojení" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 -msgid "Listen port" -msgstr "Port, který očekává spojení" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 -msgid "Loading..." -msgstr "Načítání…" - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 -msgid "Log" -msgstr "Záznam událostí" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 -msgid "Log file does not exist." -msgstr "Soubor se záznamem událostí neexistuje." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 -msgid "Log is empty." -msgstr "Záznam událostí je prázdný." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 -msgid "Login expiration time" -msgstr "Čas skončení platnosti přihlášení" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 -msgid "Max connections" -msgstr "Nejvýše spojení" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 -msgid "Max log age" -msgstr "Nejvyšší umožněné stáří záznamu událostí" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 -msgid "Max log backups" -msgstr "Nejvýše záloh záznamu událostí" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 -msgid "Max log size" -msgstr "Nejvyšší umožněná velikost záznamu událostí" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -msgid "NOT RUNNING" -msgstr "NESPUÅ TĚNÉ" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 -msgid "Open Web Interface" -msgstr "Otevřít webové rozhraní" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -msgid "RUNNING" -msgstr "SPUÅ TĚNÉ" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 -msgid "Refresh every %s seconds." -msgstr "Znovu načíst každých %s sekund." - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 -msgid "Settings" -msgstr "Nastavení" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 -msgid "The maximum days of the log file to retain." -msgstr "Nejvýše dnů uchovávání souboru se záznamem událostí." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 -msgid "" -"The maximum number of concurrent connections at the same time (0 = " -"unlimited)." -msgstr "Nejvyšší umožněný počet souběžných spojení naráz (0 = neomezeno)." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 -msgid "The maximum number of old log files to retain." -msgstr "" -"Nejvyšší umožněný počet starých souborů se záznamem událostí, které " -"uchovávat." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 -msgid "The maximum size in megabytes of the log file before it gets rotated." -msgstr "" -"Nejvyšší umožněná velikost (v megabajtech) souboru se záznamem událostí než " -"bude rotován." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 -msgid "Unknown error: %s" -msgstr "Neznámá chyba: %s" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 -msgid "User login expiration time (in hours)." -msgstr "Doba skončení platnosti přihlášení uživatele (v hodinách)." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "valid IP address" -msgstr "platná IP adresa" diff --git a/applications/luci-app-alist/po/da/alist.po b/applications/luci-app-alist/po/da/alist.po deleted file mode 100644 index 3dc06861e7..0000000000 --- a/applications/luci-app-alist/po/da/alist.po +++ /dev/null @@ -1,160 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2024-01-25 02:53+0000\n" -"Last-Translator: drax red \n" -"Language-Team: Danish \n" -"Language: da\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.4-dev\n" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 -msgid "" -"A file list/WebDAV program that supports multiple storages, powered by Gin " -"and Solidjs." -msgstr "" -"En filliste/WebDAV program, der understøtter flere opbevaringer, drevet af " -"Gin og Solidjs." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 -msgid "AList" -msgstr "AList" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 -msgid "" -"Allow connection even if the remote TLS certificate is invalid (not " -"recommended)." -msgstr "" -"Tillad tilslutning, selvom fjern TLS-certifikatet er ugyldig ( ikke " -"anbefales)." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 -msgid "Allow insecure connection" -msgstr "Tillad usikker forbindelse" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 -msgid "Collecting data..." -msgstr "Indsamler data..." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 -msgid "Default webUI/WebDAV login username is %s and password is %s." -msgstr "Standard WebUI/WebDAV login brugernavn er %s og adgangskode er %s." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 -msgid "Enable" -msgstr "Aktiver" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 -msgid "Enable logging" -msgstr "Aktiver logning" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "Expecting: %s" -msgstr "Forventer: %s" - -#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 -msgid "Grant UCI access for luci-app-alist" -msgstr "Grant UCI adgang til luci-app-alist" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 -msgid "Listen address" -msgstr "Lytteadresse" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 -msgid "Listen port" -msgstr "Lytteport" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 -msgid "Loading..." -msgstr "Indlæser..." - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 -msgid "Log" -msgstr "Log" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 -msgid "Log file does not exist." -msgstr "Log-filen findes ikke." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 -msgid "Log is empty." -msgstr "Log er tomt." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 -msgid "Login expiration time" -msgstr "Log ind udløbsdato" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 -msgid "Max connections" -msgstr "Maks. forbindelser" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 -msgid "Max log age" -msgstr "Maks. log alder" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 -msgid "Max log backups" -msgstr "Maks. log backups" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 -msgid "Max log size" -msgstr "Maks. logstørrelse" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -msgid "NOT RUNNING" -msgstr "KØRE IKKE" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 -msgid "Open Web Interface" -msgstr "Åbn webinterface" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -msgid "RUNNING" -msgstr "KØRE" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 -msgid "Refresh every %s seconds." -msgstr "Opdater hver %s sekundt." - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 -msgid "Settings" -msgstr "Indstillinger" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 -msgid "The maximum days of the log file to retain." -msgstr "De maksimale dage af logfilen til at bevare." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 -msgid "" -"The maximum number of concurrent connections at the same time (0 = " -"unlimited)." -msgstr "Det maksimale antal samtidige forbindelser (0 = ubegrænset)." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 -msgid "The maximum number of old log files to retain." -msgstr "Det maksimale antal gamle logfiler til at bevare." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 -msgid "The maximum size in megabytes of the log file before it gets rotated." -msgstr "" -"Den maksimale størrelse i megabytes af logfilen, før den bliver roteret." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 -msgid "Unknown error: %s" -msgstr "Ukendt fejl: %s" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 -msgid "User login expiration time (in hours)." -msgstr "Brugerlogin udløbsdato (i timevis)." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "valid IP address" -msgstr "gyldig IP-adresse" diff --git a/applications/luci-app-alist/po/de/alist.po b/applications/luci-app-alist/po/de/alist.po deleted file mode 100644 index 6279b89854..0000000000 --- a/applications/luci-app-alist/po/de/alist.po +++ /dev/null @@ -1,162 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2025-02-07 23:08+0000\n" -"Last-Translator: Ettore Atalan \n" -"Language-Team: German \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.10-dev\n" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 -msgid "" -"A file list/WebDAV program that supports multiple storages, powered by Gin " -"and Solidjs." -msgstr "" -"Ein Datei-Listen-/WebDAV-Programm, das mehrere Speicher unterstützt, " -"vorangebracht von Gin und Solidjs." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 -msgid "AList" -msgstr "AList" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 -msgid "" -"Allow connection even if the remote TLS certificate is invalid (not " -"recommended)." -msgstr "" -"Erlauben der Verbindung, auch wenn das entfernte TLS-Zertifikat ungültig ist " -"(nicht empfohlen)." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 -msgid "Allow insecure connection" -msgstr "Unsichere Verbindung zulassen" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 -msgid "Collecting data..." -msgstr "Daten werden gesammelt..." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 -msgid "Default webUI/WebDAV login username is %s and password is %s." -msgstr "" -"Der voreingestellte webUI/WebDAV-Login-Benutzername ist %s und das Passwort " -"lautet %s." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 -msgid "Enable" -msgstr "Aktivieren" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 -msgid "Enable logging" -msgstr "Protokollierung aktivieren" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "Expecting: %s" -msgstr "Erwarte: %s" - -#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 -msgid "Grant UCI access for luci-app-alist" -msgstr "Gewähre UCI Zugriff auf luci-app-alist" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 -msgid "Listen address" -msgstr "Listen-Adresse" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 -msgid "Listen port" -msgstr "Listen-Port" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 -msgid "Loading..." -msgstr "Lade ..." - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 -msgid "Log" -msgstr "Log" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 -msgid "Log file does not exist." -msgstr "Die Protokolldatei existiert nicht." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 -msgid "Log is empty." -msgstr "Das Protokoll ist leer." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 -msgid "Login expiration time" -msgstr "Login-Ablaufzeit" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 -msgid "Max connections" -msgstr "Max. Verbindungen" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 -msgid "Max log age" -msgstr "Max. Protokollalter" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 -msgid "Max log backups" -msgstr "Max. Protokollsicherungen" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 -msgid "Max log size" -msgstr "Max. Protokollgröße" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -msgid "NOT RUNNING" -msgstr "LÄUFT NICHT" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 -msgid "Open Web Interface" -msgstr "Weboberfläche öffnen" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -msgid "RUNNING" -msgstr "LÄUFT" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 -msgid "Refresh every %s seconds." -msgstr "Alle %s Sekunden aktualisieren." - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 -msgid "Settings" -msgstr "Einstellungen" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 -msgid "The maximum days of the log file to retain." -msgstr "Maximale Anzahl Tage die Protokolldatei zu behalten." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 -msgid "" -"The maximum number of concurrent connections at the same time (0 = " -"unlimited)." -msgstr "Die maximale Anzahl der gleichzeitigen Verbindungen (0 = unbegrenzt)." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 -msgid "The maximum number of old log files to retain." -msgstr "Die maximale Anzahl alter Protokolldateien zu behalten." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 -msgid "The maximum size in megabytes of the log file before it gets rotated." -msgstr "" -"Die maximale Größe in Megabytes der Protokolldatei, bevor sie rotiert wird." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 -msgid "Unknown error: %s" -msgstr "Unbekannter Fehler: %s" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 -msgid "User login expiration time (in hours)." -msgstr "Benutzer-Login-Ablaufzeit (in Stunden)." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "valid IP address" -msgstr "Gültige IP-Adresse" diff --git a/applications/luci-app-alist/po/el/alist.po b/applications/luci-app-alist/po/el/alist.po deleted file mode 100644 index 4c683c3ad1..0000000000 --- a/applications/luci-app-alist/po/el/alist.po +++ /dev/null @@ -1,155 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2024-11-09 08:59+0000\n" -"Last-Translator: Mac Mac \n" -"Language-Team: Greek \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 5.8.2\n" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 -msgid "" -"A file list/WebDAV program that supports multiple storages, powered by Gin " -"and Solidjs." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 -msgid "AList" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 -msgid "" -"Allow connection even if the remote TLS certificate is invalid (not " -"recommended)." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 -msgid "Allow insecure connection" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 -msgid "Collecting data..." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 -msgid "Default webUI/WebDAV login username is %s and password is %s." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 -msgid "Enable" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 -msgid "Enable logging" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "Expecting: %s" -msgstr "" - -#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 -msgid "Grant UCI access for luci-app-alist" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 -msgid "Listen address" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 -msgid "Listen port" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 -msgid "Loading..." -msgstr "" - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 -msgid "Log" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 -msgid "Log file does not exist." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 -msgid "Log is empty." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 -msgid "Login expiration time" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 -msgid "Max connections" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 -msgid "Max log age" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 -msgid "Max log backups" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 -msgid "Max log size" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -msgid "NOT RUNNING" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 -msgid "Open Web Interface" -msgstr "Άνοιγμα Ιστοσελίδας" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -msgid "RUNNING" -msgstr "ΕΚΤΕΛΕΙΤΕ" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 -msgid "Refresh every %s seconds." -msgstr "" - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 -msgid "Settings" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 -msgid "The maximum days of the log file to retain." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 -msgid "" -"The maximum number of concurrent connections at the same time (0 = " -"unlimited)." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 -msgid "The maximum number of old log files to retain." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 -msgid "The maximum size in megabytes of the log file before it gets rotated." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 -msgid "Unknown error: %s" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 -msgid "User login expiration time (in hours)." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "valid IP address" -msgstr "" diff --git a/applications/luci-app-alist/po/es/alist.po b/applications/luci-app-alist/po/es/alist.po deleted file mode 100644 index 836acf4d75..0000000000 --- a/applications/luci-app-alist/po/es/alist.po +++ /dev/null @@ -1,162 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2025-06-02 13:01+0000\n" -"Last-Translator: Salvador Peña \n" -"Language-Team: Spanish \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.12-dev\n" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 -msgid "" -"A file list/WebDAV program that supports multiple storages, powered by Gin " -"and Solidjs." -msgstr "" -"Una lista de archivos / programa WebDAV que soporta múltiples " -"almacenamientos, impulsado por Gin y Solidjs." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 -msgid "AList" -msgstr "AList" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 -msgid "" -"Allow connection even if the remote TLS certificate is invalid (not " -"recommended)." -msgstr "" -"Permitir la conexión aunque el certificado TLS remoto no sea válido " -"(no recomendado)." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 -msgid "Allow insecure connection" -msgstr "Permitir una conexión insegura" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 -msgid "Collecting data..." -msgstr "Recopilando datos..." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 -msgid "Default webUI/WebDAV login username is %s and password is %s." -msgstr "" -"El nombre de usuario por defecto de webUI/WebDAV es %s y la contraseña es %s." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 -msgid "Enable" -msgstr "Activar" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 -msgid "Enable logging" -msgstr "Activar el registro" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "Expecting: %s" -msgstr "Esperando: %s" - -#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 -msgid "Grant UCI access for luci-app-alist" -msgstr "Conceder acceso a la UCI para luci-app-alist" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 -msgid "Listen address" -msgstr "Escuchar la dirección" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 -msgid "Listen port" -msgstr "Puerto de escucha" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 -msgid "Loading..." -msgstr "Cargando..." - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 -msgid "Log" -msgstr "Registro" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 -msgid "Log file does not exist." -msgstr "El archivo de registro no existe." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 -msgid "Log is empty." -msgstr "El registro está vacío." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 -msgid "Login expiration time" -msgstr "Hora de caducidad de la sesión" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 -msgid "Max connections" -msgstr "Conexiones máximas" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 -msgid "Max log age" -msgstr "Edad máxima del registro" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 -msgid "Max log backups" -msgstr "Máximo de copias de seguridad" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 -msgid "Max log size" -msgstr "Tamaño máximo del registro" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -msgid "NOT RUNNING" -msgstr "NO EN EJECUCIÓN" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 -msgid "Open Web Interface" -msgstr "Interfaz Open Web" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -msgid "RUNNING" -msgstr "EN EJECUCIÓN" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 -msgid "Refresh every %s seconds." -msgstr "Actualizar cada %s segundos." - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 -msgid "Settings" -msgstr "Ajustes" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 -msgid "The maximum days of the log file to retain." -msgstr "Los días máximos del archivo de registro a conservar." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 -msgid "" -"The maximum number of concurrent connections at the same time (0 = " -"unlimited)." -msgstr "" -"El número máximo de conexiones simultáneas al mismo tiempo (0 = ilimitado)." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 -msgid "The maximum number of old log files to retain." -msgstr "El número máximo de archivos de registro antiguos a conservar." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 -msgid "The maximum size in megabytes of the log file before it gets rotated." -msgstr "" -"El tamaño máximo en megabytes del archivo de registro antes de que se rote." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 -msgid "Unknown error: %s" -msgstr "Error desconocido: %s" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 -msgid "User login expiration time (in hours)." -msgstr "Tiempo de expiración del inicio de sesión del usuario (en horas)." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "valid IP address" -msgstr "dirección IP válida" diff --git a/applications/luci-app-alist/po/fi/alist.po b/applications/luci-app-alist/po/fi/alist.po deleted file mode 100644 index b92554df8e..0000000000 --- a/applications/luci-app-alist/po/fi/alist.po +++ /dev/null @@ -1,159 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2025-05-04 15:04+0000\n" -"Last-Translator: Ricky Tigg \n" -"Language-Team: Finnish \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.12-dev\n" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 -msgid "" -"A file list/WebDAV program that supports multiple storages, powered by Gin " -"and Solidjs." -msgstr "" -"Ginin ja Solidjsin lähteenvoimainen tiedostolista-/WebDAV-ohjelma, joka " -"tukee useita tallennustiloja." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 -msgid "AList" -msgstr "AList" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 -msgid "" -"Allow connection even if the remote TLS certificate is invalid (not " -"recommended)." -msgstr "" -"Salli yhteys, vaikka etä-TLS-varmenne ei kelpaisi (ei suositella)." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 -msgid "Allow insecure connection" -msgstr "Salli suojaamaton yhteys" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 -msgid "Collecting data..." -msgstr "Kerätään tietoja..." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 -msgid "Default webUI/WebDAV login username is %s and password is %s." -msgstr "Oletuksena käytettävä webUI-/WebDAV-käyttäjänimi on %s ja salasana %s." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 -msgid "Enable" -msgstr "Ota käyttöön" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 -msgid "Enable logging" -msgstr "Ota lokiinkirjaus käyttöön" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "Expecting: %s" -msgstr "Odotettu: %s" - -#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 -msgid "Grant UCI access for luci-app-alist" -msgstr "Myönnä UCI-pääsy luci-app-alistille" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 -msgid "Listen address" -msgstr "Kuuntele osoite" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 -msgid "Listen port" -msgstr "Kuuntele portti" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 -msgid "Loading..." -msgstr "Ladataan..." - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 -msgid "Log" -msgstr "Loki" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 -msgid "Log file does not exist." -msgstr "Lokitiedostoa ei ole." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 -msgid "Log is empty." -msgstr "Loki on tyhjä." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 -msgid "Login expiration time" -msgstr "Kirjautumisen voimassaoloaika" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 -msgid "Max connections" -msgstr "Yhteyksien enimmäismäärä" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 -msgid "Max log age" -msgstr "Lokin enimmäisikä" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 -msgid "Max log backups" -msgstr "Lokin varmuuskopioiden enimmäismäärä" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 -msgid "Max log size" -msgstr "Lokin enimmäiskoko" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -msgid "NOT RUNNING" -msgstr "EI KÄYNNISSÄ" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 -msgid "Open Web Interface" -msgstr "Avoin verkkokäyttöliittymä" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -msgid "RUNNING" -msgstr "KÄYNNISSÄ" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 -msgid "Refresh every %s seconds." -msgstr "Virkistä %s sekunnin välein." - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 -msgid "Settings" -msgstr "Asetukset" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 -msgid "The maximum days of the log file to retain." -msgstr "Lokitiedoston säilytysajan päivien enimmäismäärä." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 -msgid "" -"The maximum number of concurrent connections at the same time (0 = " -"unlimited)." -msgstr "Samanaikaisten yhteyksien enimmäismäärä (0 = rajoittamaton)." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 -msgid "The maximum number of old log files to retain." -msgstr "Säilytettävien vanhojen lokitiedostojen enimmäismäärä." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 -msgid "The maximum size in megabytes of the log file before it gets rotated." -msgstr "Lokitiedoston enimmäiskoko megatavuina ennen sen kiertämistä." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 -msgid "Unknown error: %s" -msgstr "Tuntematon virhe: %s" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 -msgid "User login expiration time (in hours)." -msgstr "Käyttäjän kirjautumisen voimassaoloaika (tunteina)." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "valid IP address" -msgstr "kelvollinen IP-osoite" diff --git a/applications/luci-app-alist/po/fr/alist.po b/applications/luci-app-alist/po/fr/alist.po deleted file mode 100644 index 27c9cbcf43..0000000000 --- a/applications/luci-app-alist/po/fr/alist.po +++ /dev/null @@ -1,159 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2025-01-20 23:30+0000\n" -"Last-Translator: Didier Martin \n" -"Language-Team: French \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 5.10-dev\n" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 -msgid "" -"A file list/WebDAV program that supports multiple storages, powered by Gin " -"and Solidjs." -msgstr "" -"Un fichier list/WebDAV program supporte le stockage multiple, exécuté par " -"Gin and Solidjs." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 -msgid "AList" -msgstr "AList" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 -msgid "" -"Allow connection even if the remote TLS certificate is invalid (not " -"recommended)." -msgstr "" -"Permet la connexion même si le certificat TLS distant est invalide " -"(non recommandé)." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 -msgid "Allow insecure connection" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 -msgid "Collecting data..." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 -msgid "Default webUI/WebDAV login username is %s and password is %s." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 -msgid "Enable" -msgstr "Activer" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 -msgid "Enable logging" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "Expecting: %s" -msgstr "" - -#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 -msgid "Grant UCI access for luci-app-alist" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 -msgid "Listen address" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 -msgid "Listen port" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 -msgid "Loading..." -msgstr "" - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 -msgid "Log" -msgstr "Journal" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 -msgid "Log file does not exist." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 -msgid "Log is empty." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 -msgid "Login expiration time" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 -msgid "Max connections" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 -msgid "Max log age" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 -msgid "Max log backups" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 -msgid "Max log size" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -msgid "NOT RUNNING" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 -msgid "Open Web Interface" -msgstr "Ouvrir l'interface web" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -msgid "RUNNING" -msgstr "EXÉCUTANT" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 -msgid "Refresh every %s seconds." -msgstr "" - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 -msgid "Settings" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 -msgid "The maximum days of the log file to retain." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 -msgid "" -"The maximum number of concurrent connections at the same time (0 = " -"unlimited)." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 -msgid "The maximum number of old log files to retain." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 -msgid "The maximum size in megabytes of the log file before it gets rotated." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 -msgid "Unknown error: %s" -msgstr "Erreur inconnue : %s" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 -msgid "User login expiration time (in hours)." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "valid IP address" -msgstr "" diff --git a/applications/luci-app-alist/po/ga/alist.po b/applications/luci-app-alist/po/ga/alist.po deleted file mode 100644 index 539e988b23..0000000000 --- a/applications/luci-app-alist/po/ga/alist.po +++ /dev/null @@ -1,161 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2025-05-06 05:38+0000\n" -"Last-Translator: Aindriú Mac Giolla Eoin \n" -"Language-Team: Irish \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.12-dev\n" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 -msgid "" -"A file list/WebDAV program that supports multiple storages, powered by Gin " -"and Solidjs." -msgstr "" -"Liosta comhad / clár WebDAV a thacaíonn le stóráil iolrach, faoi thiomáint " -"ag Gin agus Solidjs." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 -msgid "AList" -msgstr "AList" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 -msgid "" -"Allow connection even if the remote TLS certificate is invalid (not " -"recommended)." -msgstr "" -"Ceadaigh ceangal fiú má tá an teastas iargúlta TLS neamhbhailí (ní " -"mholtar)." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 -msgid "Allow insecure connection" -msgstr "Ceadaigh nasc neamhchinnte" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 -msgid "Collecting data..." -msgstr "Sonraí a bhailiú..." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 -msgid "Default webUI/WebDAV login username is %s and password is %s." -msgstr "" -"Is é %s ainm úsáideora logála isteach réamhshocraithe webUI/WebDAV agus is é " -"%s an pasfhocal." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 -msgid "Enable" -msgstr "Cumasaigh" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 -msgid "Enable logging" -msgstr "Cumasaigh logáil" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "Expecting: %s" -msgstr "Ag súil le: %s" - -#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 -msgid "Grant UCI access for luci-app-alist" -msgstr "Rochtain UCI a dheonú do luci-app-alist" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 -msgid "Listen address" -msgstr "Éist leis an seoladh" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 -msgid "Listen port" -msgstr "Éist port" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 -msgid "Loading..." -msgstr "Á lódáil..." - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 -msgid "Log" -msgstr "Loga" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 -msgid "Log file does not exist." -msgstr "Níl logchomhad ann." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 -msgid "Log is empty." -msgstr "Tá an logchomhad folamh." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 -msgid "Login expiration time" -msgstr "Am éaga logála isteach" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 -msgid "Max connections" -msgstr "Naisc uasta" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 -msgid "Max log age" -msgstr "Aois uasta logála" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 -msgid "Max log backups" -msgstr "Cúltacaí uasta logála" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 -msgid "Max log size" -msgstr "Uasmhéid logála" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -msgid "NOT RUNNING" -msgstr "NÍ RÚCHÁN" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 -msgid "Open Web Interface" -msgstr "Comhéadan Gréasáin Oscailte" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -msgid "RUNNING" -msgstr "REATHA" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 -msgid "Refresh every %s seconds." -msgstr "Athnuaigh gach %s soicindí." - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 -msgid "Settings" -msgstr "Socruithe" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 -msgid "The maximum days of the log file to retain." -msgstr "Na laethanta uasta den chomhad logála a choinneáil." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 -msgid "" -"The maximum number of concurrent connections at the same time (0 = " -"unlimited)." -msgstr "Líon uasta na nasc comhthráthach ag an am céanna (0 = gan teorainn)." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 -msgid "The maximum number of old log files to retain." -msgstr "Líon uasta na seanchomhaid logála le coinneáil." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 -msgid "The maximum size in megabytes of the log file before it gets rotated." -msgstr "" -"An t-uasmhéid i meigibheart an chomhaid logála sula ndéantar é a rothlú." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 -msgid "Unknown error: %s" -msgstr "Earráid anaithnid: %s" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 -msgid "User login expiration time (in hours)." -msgstr "Am éaga logála isteach úsáideora (in uaireanta)." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "valid IP address" -msgstr "seoladh IP bailí" diff --git a/applications/luci-app-alist/po/he/alist.po b/applications/luci-app-alist/po/he/alist.po deleted file mode 100644 index 9a69f77d81..0000000000 --- a/applications/luci-app-alist/po/he/alist.po +++ /dev/null @@ -1,152 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\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" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 -msgid "" -"A file list/WebDAV program that supports multiple storages, powered by Gin " -"and Solidjs." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 -msgid "AList" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 -msgid "" -"Allow connection even if the remote TLS certificate is invalid (not " -"recommended)." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 -msgid "Allow insecure connection" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 -msgid "Collecting data..." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 -msgid "Default webUI/WebDAV login username is %s and password is %s." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 -msgid "Enable" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 -msgid "Enable logging" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "Expecting: %s" -msgstr "" - -#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 -msgid "Grant UCI access for luci-app-alist" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 -msgid "Listen address" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 -msgid "Listen port" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 -msgid "Loading..." -msgstr "" - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 -msgid "Log" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 -msgid "Log file does not exist." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 -msgid "Log is empty." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 -msgid "Login expiration time" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 -msgid "Max connections" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 -msgid "Max log age" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 -msgid "Max log backups" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 -msgid "Max log size" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -msgid "NOT RUNNING" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 -msgid "Open Web Interface" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -msgid "RUNNING" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 -msgid "Refresh every %s seconds." -msgstr "" - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 -msgid "Settings" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 -msgid "The maximum days of the log file to retain." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 -msgid "" -"The maximum number of concurrent connections at the same time (0 = " -"unlimited)." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 -msgid "The maximum number of old log files to retain." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 -msgid "The maximum size in megabytes of the log file before it gets rotated." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 -msgid "Unknown error: %s" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 -msgid "User login expiration time (in hours)." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "valid IP address" -msgstr "" diff --git a/applications/luci-app-alist/po/hi/alist.po b/applications/luci-app-alist/po/hi/alist.po deleted file mode 100644 index 6099901017..0000000000 --- a/applications/luci-app-alist/po/hi/alist.po +++ /dev/null @@ -1,151 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" -"Language: hi\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 -msgid "" -"A file list/WebDAV program that supports multiple storages, powered by Gin " -"and Solidjs." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 -msgid "AList" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 -msgid "" -"Allow connection even if the remote TLS certificate is invalid (not " -"recommended)." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 -msgid "Allow insecure connection" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 -msgid "Collecting data..." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 -msgid "Default webUI/WebDAV login username is %s and password is %s." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 -msgid "Enable" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 -msgid "Enable logging" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "Expecting: %s" -msgstr "" - -#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 -msgid "Grant UCI access for luci-app-alist" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 -msgid "Listen address" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 -msgid "Listen port" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 -msgid "Loading..." -msgstr "" - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 -msgid "Log" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 -msgid "Log file does not exist." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 -msgid "Log is empty." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 -msgid "Login expiration time" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 -msgid "Max connections" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 -msgid "Max log age" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 -msgid "Max log backups" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 -msgid "Max log size" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -msgid "NOT RUNNING" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 -msgid "Open Web Interface" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -msgid "RUNNING" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 -msgid "Refresh every %s seconds." -msgstr "" - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 -msgid "Settings" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 -msgid "The maximum days of the log file to retain." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 -msgid "" -"The maximum number of concurrent connections at the same time (0 = " -"unlimited)." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 -msgid "The maximum number of old log files to retain." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 -msgid "The maximum size in megabytes of the log file before it gets rotated." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 -msgid "Unknown error: %s" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 -msgid "User login expiration time (in hours)." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "valid IP address" -msgstr "" diff --git a/applications/luci-app-alist/po/hu/alist.po b/applications/luci-app-alist/po/hu/alist.po deleted file mode 100644 index e856f91f89..0000000000 --- a/applications/luci-app-alist/po/hu/alist.po +++ /dev/null @@ -1,155 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2025-05-31 20:15+0000\n" -"Last-Translator: hmzs \n" -"Language-Team: Hungarian \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.12-dev\n" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 -msgid "" -"A file list/WebDAV program that supports multiple storages, powered by Gin " -"and Solidjs." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 -msgid "AList" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 -msgid "" -"Allow connection even if the remote TLS certificate is invalid (not " -"recommended)." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 -msgid "Allow insecure connection" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 -msgid "Collecting data..." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 -msgid "Default webUI/WebDAV login username is %s and password is %s." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 -msgid "Enable" -msgstr "Engedélyezés" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 -msgid "Enable logging" -msgstr "Naplózás engedélyezése" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "Expecting: %s" -msgstr "" - -#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 -msgid "Grant UCI access for luci-app-alist" -msgstr "UCI hozzáférés engedélyezése a luci-app-alist alkalmazásnak" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 -msgid "Listen address" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 -msgid "Listen port" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 -msgid "Loading..." -msgstr "" - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 -msgid "Log" -msgstr "Napló" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 -msgid "Log file does not exist." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 -msgid "Log is empty." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 -msgid "Login expiration time" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 -msgid "Max connections" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 -msgid "Max log age" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 -msgid "Max log backups" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 -msgid "Max log size" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -msgid "NOT RUNNING" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 -msgid "Open Web Interface" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -msgid "RUNNING" -msgstr "FUT" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 -msgid "Refresh every %s seconds." -msgstr "" - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 -msgid "Settings" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 -msgid "The maximum days of the log file to retain." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 -msgid "" -"The maximum number of concurrent connections at the same time (0 = " -"unlimited)." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 -msgid "The maximum number of old log files to retain." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 -msgid "The maximum size in megabytes of the log file before it gets rotated." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 -msgid "Unknown error: %s" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 -msgid "User login expiration time (in hours)." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "valid IP address" -msgstr "" diff --git a/applications/luci-app-alist/po/it/alist.po b/applications/luci-app-alist/po/it/alist.po deleted file mode 100644 index 5473686cc1..0000000000 --- a/applications/luci-app-alist/po/it/alist.po +++ /dev/null @@ -1,164 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2025-06-11 15:04+0000\n" -"Last-Translator: Random \n" -"Language-Team: Italian \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.12-dev\n" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 -msgid "" -"A file list/WebDAV program that supports multiple storages, powered by Gin " -"and Solidjs." -msgstr "" -"Un elenco di file/programma WebDAV che supporta più archivi, basato su Gin e " -"Solidjs." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 -msgid "AList" -msgstr "Un elenco" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 -msgid "" -"Allow connection even if the remote TLS certificate is invalid (not " -"recommended)." -msgstr "" -"Consenti la connessione anche se il certificato TLS remoto non è valido " -"(non consigliato)." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 -msgid "Allow insecure connection" -msgstr "Consenti connessione non sicura" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 -msgid "Collecting data..." -msgstr "Raccolta dati..." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 -msgid "Default webUI/WebDAV login username is %s and password is %s." -msgstr "" -"Il nome utente di accesso webUI/WebDAV predefinito è %s e la password è %s." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 -msgid "Enable" -msgstr "Abilitare" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 -msgid "Enable logging" -msgstr "Attiva i log" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "Expecting: %s" -msgstr "Previsto: %s" - -#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 -msgid "Grant UCI access for luci-app-alist" -msgstr "Consenti l'accesso UCI per luci-app-alist" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 -msgid "Listen address" -msgstr "Indirizzo in ascolto" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 -msgid "Listen port" -msgstr "Porta in ascolto" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 -msgid "Loading..." -msgstr "Caricamento..." - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 -msgid "Log" -msgstr "Registro" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 -msgid "Log file does not exist." -msgstr "Il file di registro non esiste." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 -msgid "Log is empty." -msgstr "Il registro è vuoto." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 -msgid "Login expiration time" -msgstr "Scadenza dell'accesso" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 -msgid "Max connections" -msgstr "Connessioni massime" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 -msgid "Max log age" -msgstr "Durata massima del registro" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 -msgid "Max log backups" -msgstr "Numero massimo di backup del registro" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 -msgid "Max log size" -msgstr "Dimensione massima del registro" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -msgid "NOT RUNNING" -msgstr "NON IN ESECUZIONE" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 -msgid "Open Web Interface" -msgstr "Apri interfaccia web" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -msgid "RUNNING" -msgstr "IN ESECUZIONE" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 -msgid "Refresh every %s seconds." -msgstr "Aggiorna ogni %s secondi." - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 -msgid "Settings" -msgstr "Impostazioni" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 -msgid "The maximum days of the log file to retain." -msgstr "Il numero massimo di giorni del file di registro da conservare." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 -msgid "" -"The maximum number of concurrent connections at the same time (0 = " -"unlimited)." -msgstr "" -"Il numero massimo di connessioni simultanee contemporaneamente (0 = " -"illimitato)." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 -msgid "The maximum number of old log files to retain." -msgstr "Il numero massimo di vecchi file di registro da conservare." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 -msgid "The maximum size in megabytes of the log file before it gets rotated." -msgstr "" -"La dimensione massima in megabyte del file di registro prima che venga " -"ruotato." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 -msgid "Unknown error: %s" -msgstr "Errore sconosciuto: %s" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 -msgid "User login expiration time (in hours)." -msgstr "Scadenza dell'accesso utente (in ore)." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "valid IP address" -msgstr "indirizzo IP valido" diff --git a/applications/luci-app-alist/po/ja/alist.po b/applications/luci-app-alist/po/ja/alist.po deleted file mode 100644 index 2d309aa8fa..0000000000 --- a/applications/luci-app-alist/po/ja/alist.po +++ /dev/null @@ -1,157 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2025-03-28 01:57+0000\n" -"Last-Translator: Monarch \n" -"Language-Team: Japanese \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.11-dev\n" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 -msgid "" -"A file list/WebDAV program that supports multiple storages, powered by Gin " -"and Solidjs." -msgstr "" -"GinとSolidjsを使用した複数のストレージをサポートする ファイルリスト/WebDAV プ" -"ログラム。" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 -msgid "AList" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 -msgid "" -"Allow connection even if the remote TLS certificate is invalid (not " -"recommended)." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 -msgid "Allow insecure connection" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 -msgid "Collecting data..." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 -msgid "Default webUI/WebDAV login username is %s and password is %s." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 -msgid "Enable" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 -msgid "Enable logging" -msgstr "ログを有効にする" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "Expecting: %s" -msgstr "" - -#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 -msgid "Grant UCI access for luci-app-alist" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 -msgid "Listen address" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 -msgid "Listen port" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 -msgid "Loading..." -msgstr "" - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 -msgid "Log" -msgstr "ログ" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 -msgid "Log file does not exist." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 -msgid "Log is empty." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 -msgid "Login expiration time" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 -msgid "Max connections" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 -msgid "Max log age" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 -msgid "Max log backups" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 -msgid "Max log size" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -msgid "NOT RUNNING" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 -msgid "Open Web Interface" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -msgid "RUNNING" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 -msgid "Refresh every %s seconds." -msgstr "" - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 -msgid "Settings" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 -msgid "The maximum days of the log file to retain." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 -msgid "" -"The maximum number of concurrent connections at the same time (0 = " -"unlimited)." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 -msgid "The maximum number of old log files to retain." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 -msgid "The maximum size in megabytes of the log file before it gets rotated." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 -msgid "Unknown error: %s" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 -msgid "User login expiration time (in hours)." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "valid IP address" -msgstr "" diff --git a/applications/luci-app-alist/po/ko/alist.po b/applications/luci-app-alist/po/ko/alist.po deleted file mode 100644 index 34e0903cf6..0000000000 --- a/applications/luci-app-alist/po/ko/alist.po +++ /dev/null @@ -1,155 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2025-05-06 11:54+0000\n" -"Last-Translator: Beomjun \n" -"Language-Team: Korean \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=1; plural=0;\n" -"X-Generator: Weblate 5.12-dev\n" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 -msgid "" -"A file list/WebDAV program that supports multiple storages, powered by Gin " -"and Solidjs." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 -msgid "AList" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 -msgid "" -"Allow connection even if the remote TLS certificate is invalid (not " -"recommended)." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 -msgid "Allow insecure connection" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 -msgid "Collecting data..." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 -msgid "Default webUI/WebDAV login username is %s and password is %s." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 -msgid "Enable" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 -msgid "Enable logging" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "Expecting: %s" -msgstr "" - -#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 -msgid "Grant UCI access for luci-app-alist" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 -msgid "Listen address" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 -msgid "Listen port" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 -msgid "Loading..." -msgstr "" - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 -msgid "Log" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 -msgid "Log file does not exist." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 -msgid "Log is empty." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 -msgid "Login expiration time" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 -msgid "Max connections" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 -msgid "Max log age" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 -msgid "Max log backups" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 -msgid "Max log size" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -msgid "NOT RUNNING" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 -msgid "Open Web Interface" -msgstr "웹 인터페이스 열기" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -msgid "RUNNING" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 -msgid "Refresh every %s seconds." -msgstr "" - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 -msgid "Settings" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 -msgid "The maximum days of the log file to retain." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 -msgid "" -"The maximum number of concurrent connections at the same time (0 = " -"unlimited)." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 -msgid "The maximum number of old log files to retain." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 -msgid "The maximum size in megabytes of the log file before it gets rotated." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 -msgid "Unknown error: %s" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 -msgid "User login expiration time (in hours)." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "valid IP address" -msgstr "" diff --git a/applications/luci-app-alist/po/lt/alist.po b/applications/luci-app-alist/po/lt/alist.po deleted file mode 100644 index 2252212967..0000000000 --- a/applications/luci-app-alist/po/lt/alist.po +++ /dev/null @@ -1,165 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2024-07-23 20:37+0000\n" -"Last-Translator: Džiugas JanuÅ¡evičius \n" -"Language-Team: Lithuanian \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.7-dev\n" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 -msgid "" -"A file list/WebDAV program that supports multiple storages, powered by Gin " -"and Solidjs." -msgstr "" -"Failų sąraÅ¡as/„WebDAV“ programa, kuris palaiko kelias saugyklas; veikia " -"naudojant „Gin“ ir „Solidjs“." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 -msgid "AList" -msgstr "„AList“" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 -msgid "" -"Allow connection even if the remote TLS certificate is invalid (not " -"recommended)." -msgstr "" -"Leisti prisijungimą, net jei nuotolinis „TLS“ sertifikatas yra netinkamas " -"(nerekomenduojama)." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 -msgid "Allow insecure connection" -msgstr "Leisti nesaugų prisijungimą" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 -msgid "Collecting data..." -msgstr "Renkama/-i informacija (duomenys)..." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 -msgid "Default webUI/WebDAV login username is %s and password is %s." -msgstr "" -"Numatytas „webUI/WebDAV“ prisijungimo slapyvardis/naudotojo/vartotojo vardas " -"yra – %s ir slaptažodis – %s." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 -msgid "Enable" -msgstr "Ä®jungti/Ä®galinti" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 -msgid "Enable logging" -msgstr "Ä®jungti/Ä®galinti žurnalinimą" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "Expecting: %s" -msgstr "Tikimasi: „%s“" - -#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 -msgid "Grant UCI access for luci-app-alist" -msgstr "Duoti „UCI“ prieigą „luci-app-alist“" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 -msgid "Listen address" -msgstr "Laukti (-iama/-s) prisijungimo/jungties ryÅ¡io adresas/-o" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 -msgid "Listen port" -msgstr "Laukti (-iama/-s) prisijungimo/jungties ryÅ¡io prievadui" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 -msgid "Loading..." -msgstr "Kraunama..." - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 -msgid "Log" -msgstr "Žurnalas" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 -msgid "Log file does not exist." -msgstr "Žurnalo failas neegzistuoja." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 -msgid "Log is empty." -msgstr "Žurnalas yra tuščias." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 -msgid "Login expiration time" -msgstr "Vartotojo/Naudotojo prisijungimo galiojimo laikas" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 -msgid "Max connections" -msgstr "MaksimalÅ«s prisijungimai" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 -msgid "Max log age" -msgstr "Maksimalus žurnalo amžius" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 -msgid "Max log backups" -msgstr "Maksimali žurnalo atsarginių kopijų riba" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 -msgid "Max log size" -msgstr "Maksimalus žurnalo dydis" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -msgid "NOT RUNNING" -msgstr "NEVEIKIA" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 -msgid "Open Web Interface" -msgstr "Atidaryti tinklo naudotojo/vartotojo sąsają" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -msgid "RUNNING" -msgstr "VEIKIA" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 -msgid "Refresh every %s seconds." -msgstr "Atnaujinti/Ä®kelti iÅ¡ naujo kas %s sekundę/-es/-žių." - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 -msgid "Settings" -msgstr "Nustatymai" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 -msgid "The maximum days of the log file to retain." -msgstr "Maksimalus žurnalo failo iÅ¡saugojimo/iÅ¡laikymo dienų skaičius." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 -msgid "" -"The maximum number of concurrent connections at the same time (0 = " -"unlimited)." -msgstr "" -"Maksimalus vienu metu vykstančių prisijungimų skaičius (0-is = neribotas)." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 -msgid "The maximum number of old log files to retain." -msgstr "Maksimalus seno žurnalo failų skaičius iÅ¡saugojimui/iÅ¡laikymui." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 -msgid "The maximum size in megabytes of the log file before it gets rotated." -msgstr "" -"Didžiausias žurnalo failo dydis megabaitais prieÅ¡ jam atsinaujinant/" -"pakeičiant." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 -msgid "Unknown error: %s" -msgstr "Nežinoma klaida: %s" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 -msgid "User login expiration time (in hours)." -msgstr "Naudotojo/Vartotojo prisijungimo galiojimo laikas (valandomis)." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "valid IP address" -msgstr "tinkamas IP adresas" diff --git a/applications/luci-app-alist/po/mr/alist.po b/applications/luci-app-alist/po/mr/alist.po deleted file mode 100644 index ccee1292ef..0000000000 --- a/applications/luci-app-alist/po/mr/alist.po +++ /dev/null @@ -1,151 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" -"Language: mr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 -msgid "" -"A file list/WebDAV program that supports multiple storages, powered by Gin " -"and Solidjs." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 -msgid "AList" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 -msgid "" -"Allow connection even if the remote TLS certificate is invalid (not " -"recommended)." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 -msgid "Allow insecure connection" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 -msgid "Collecting data..." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 -msgid "Default webUI/WebDAV login username is %s and password is %s." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 -msgid "Enable" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 -msgid "Enable logging" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "Expecting: %s" -msgstr "" - -#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 -msgid "Grant UCI access for luci-app-alist" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 -msgid "Listen address" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 -msgid "Listen port" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 -msgid "Loading..." -msgstr "" - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 -msgid "Log" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 -msgid "Log file does not exist." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 -msgid "Log is empty." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 -msgid "Login expiration time" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 -msgid "Max connections" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 -msgid "Max log age" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 -msgid "Max log backups" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 -msgid "Max log size" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -msgid "NOT RUNNING" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 -msgid "Open Web Interface" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -msgid "RUNNING" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 -msgid "Refresh every %s seconds." -msgstr "" - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 -msgid "Settings" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 -msgid "The maximum days of the log file to retain." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 -msgid "" -"The maximum number of concurrent connections at the same time (0 = " -"unlimited)." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 -msgid "The maximum number of old log files to retain." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 -msgid "The maximum size in megabytes of the log file before it gets rotated." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 -msgid "Unknown error: %s" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 -msgid "User login expiration time (in hours)." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "valid IP address" -msgstr "" diff --git a/applications/luci-app-alist/po/ms/alist.po b/applications/luci-app-alist/po/ms/alist.po deleted file mode 100644 index 42c1fd2bf4..0000000000 --- a/applications/luci-app-alist/po/ms/alist.po +++ /dev/null @@ -1,155 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2025-04-25 17:47+0000\n" -"Last-Translator: Abdul Muizz Bin Abdul Jalil \n" -"Language-Team: Malay \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.12-dev\n" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 -msgid "" -"A file list/WebDAV program that supports multiple storages, powered by Gin " -"and Solidjs." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 -msgid "AList" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 -msgid "" -"Allow connection even if the remote TLS certificate is invalid (not " -"recommended)." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 -msgid "Allow insecure connection" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 -msgid "Collecting data..." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 -msgid "Default webUI/WebDAV login username is %s and password is %s." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 -msgid "Enable" -msgstr "Pemboleh" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 -msgid "Enable logging" -msgstr "Bolehkan pengelogan" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "Expecting: %s" -msgstr "" - -#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 -msgid "Grant UCI access for luci-app-alist" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 -msgid "Listen address" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 -msgid "Listen port" -msgstr "Port pendengar" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 -msgid "Loading..." -msgstr "" - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 -msgid "Log" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 -msgid "Log file does not exist." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 -msgid "Log is empty." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 -msgid "Login expiration time" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 -msgid "Max connections" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 -msgid "Max log age" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 -msgid "Max log backups" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 -msgid "Max log size" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -msgid "NOT RUNNING" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 -msgid "Open Web Interface" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -msgid "RUNNING" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 -msgid "Refresh every %s seconds." -msgstr "" - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 -msgid "Settings" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 -msgid "The maximum days of the log file to retain." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 -msgid "" -"The maximum number of concurrent connections at the same time (0 = " -"unlimited)." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 -msgid "The maximum number of old log files to retain." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 -msgid "The maximum size in megabytes of the log file before it gets rotated." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 -msgid "Unknown error: %s" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 -msgid "User login expiration time (in hours)." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "valid IP address" -msgstr "" diff --git a/applications/luci-app-alist/po/nb_NO/alist.po b/applications/luci-app-alist/po/nb_NO/alist.po deleted file mode 100644 index 39498a2435..0000000000 --- a/applications/luci-app-alist/po/nb_NO/alist.po +++ /dev/null @@ -1,155 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2025-03-14 08:43+0000\n" -"Last-Translator: Lasse Skogland \n" -"Language-Team: Norwegian BokmÃ¥l \n" -"Language: nb_NO\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.11-dev\n" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 -msgid "" -"A file list/WebDAV program that supports multiple storages, powered by Gin " -"and Solidjs." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 -msgid "AList" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 -msgid "" -"Allow connection even if the remote TLS certificate is invalid (not " -"recommended)." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 -msgid "Allow insecure connection" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 -msgid "Collecting data..." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 -msgid "Default webUI/WebDAV login username is %s and password is %s." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 -msgid "Enable" -msgstr "Skru pÃ¥" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 -msgid "Enable logging" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "Expecting: %s" -msgstr "" - -#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 -msgid "Grant UCI access for luci-app-alist" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 -msgid "Listen address" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 -msgid "Listen port" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 -msgid "Loading..." -msgstr "" - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 -msgid "Log" -msgstr "Logg" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 -msgid "Log file does not exist." -msgstr "Loggfilen finnes ikke." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 -msgid "Log is empty." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 -msgid "Login expiration time" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 -msgid "Max connections" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 -msgid "Max log age" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 -msgid "Max log backups" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 -msgid "Max log size" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -msgid "NOT RUNNING" -msgstr "Kjører ikke" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 -msgid "Open Web Interface" -msgstr "Åpne vev-grensesnitt" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -msgid "RUNNING" -msgstr "KJØRER" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 -msgid "Refresh every %s seconds." -msgstr "" - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 -msgid "Settings" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 -msgid "The maximum days of the log file to retain." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 -msgid "" -"The maximum number of concurrent connections at the same time (0 = " -"unlimited)." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 -msgid "The maximum number of old log files to retain." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 -msgid "The maximum size in megabytes of the log file before it gets rotated." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 -msgid "Unknown error: %s" -msgstr "Ukjent feil: %s" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 -msgid "User login expiration time (in hours)." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "valid IP address" -msgstr "" diff --git a/applications/luci-app-alist/po/nl/alist.po b/applications/luci-app-alist/po/nl/alist.po deleted file mode 100644 index 9d465d7c50..0000000000 --- a/applications/luci-app-alist/po/nl/alist.po +++ /dev/null @@ -1,160 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2025-01-22 05:53+0000\n" -"Last-Translator: Robin \n" -"Language-Team: Dutch \n" -"Language: nl\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.10-dev\n" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 -msgid "" -"A file list/WebDAV program that supports multiple storages, powered by Gin " -"and Solidjs." -msgstr "" -"Een bestandenlijst/WebDAV programma dat meerdere opslag locaties toestaat, " -"door Gin en Solidjs." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 -msgid "AList" -msgstr "ALijst" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 -msgid "" -"Allow connection even if the remote TLS certificate is invalid (not " -"recommended)." -msgstr "" -"Sta de verbinding toe, zelfs als het externe TLS certificaat niet meer " -"geldig is\n" -"(niet aan te raden !)" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 -msgid "Allow insecure connection" -msgstr "Sta onbeveiligde verbindingen toe" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 -msgid "Collecting data..." -msgstr "Data aan het verzamelen..." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 -msgid "Default webUI/WebDAV login username is %s and password is %s." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 -msgid "Enable" -msgstr "Inschakelen" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 -msgid "Enable logging" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "Expecting: %s" -msgstr "" - -#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 -msgid "Grant UCI access for luci-app-alist" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 -msgid "Listen address" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 -msgid "Listen port" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 -msgid "Loading..." -msgstr "" - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 -msgid "Log" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 -msgid "Log file does not exist." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 -msgid "Log is empty." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 -msgid "Login expiration time" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 -msgid "Max connections" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 -msgid "Max log age" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 -msgid "Max log backups" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 -msgid "Max log size" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -msgid "NOT RUNNING" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 -msgid "Open Web Interface" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -msgid "RUNNING" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 -msgid "Refresh every %s seconds." -msgstr "" - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 -msgid "Settings" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 -msgid "The maximum days of the log file to retain." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 -msgid "" -"The maximum number of concurrent connections at the same time (0 = " -"unlimited)." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 -msgid "The maximum number of old log files to retain." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 -msgid "The maximum size in megabytes of the log file before it gets rotated." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 -msgid "Unknown error: %s" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 -msgid "User login expiration time (in hours)." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "valid IP address" -msgstr "" diff --git a/applications/luci-app-alist/po/pl/alist.po b/applications/luci-app-alist/po/pl/alist.po deleted file mode 100644 index c78f9f8be6..0000000000 --- a/applications/luci-app-alist/po/pl/alist.po +++ /dev/null @@ -1,162 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2024-04-22 22:21+0000\n" -"Last-Translator: Matthaiks \n" -"Language-Team: Polish \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.5-dev\n" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 -msgid "" -"A file list/WebDAV program that supports multiple storages, powered by Gin " -"and Solidjs." -msgstr "" -"Program listy plików/WebDAV obsługujący wiele magazynów, napędzany przez Gin " -"i Solidjs." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 -msgid "AList" -msgstr "AList" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 -msgid "" -"Allow connection even if the remote TLS certificate is invalid (not " -"recommended)." -msgstr "" -"Zezwalaj na połączenie, nawet jeśli zdalny certyfikat TLS jest nieprawidłowy " -"(niezalecane)." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 -msgid "Allow insecure connection" -msgstr "Zezwalaj na niezabezpieczone połączenie" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 -msgid "Collecting data..." -msgstr "Trwa zbieranie danych..." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 -msgid "Default webUI/WebDAV login username is %s and password is %s." -msgstr "Domyślna nazwa użytkownika webUI/WebDAV to %s, a hasło to %s." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 -msgid "Enable" -msgstr "Włącz" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 -msgid "Enable logging" -msgstr "Włącz rejestrowanie" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "Expecting: %s" -msgstr "Zaleca się użyć: %s" - -#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 -msgid "Grant UCI access for luci-app-alist" -msgstr "Przyznaj luci-app-alist dostęp do UCI" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 -msgid "Listen address" -msgstr "Adres nasłuchiwania" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 -msgid "Listen port" -msgstr "Port nasłuchiwania" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 -msgid "Loading..." -msgstr "Ładowanie..." - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 -msgid "Log" -msgstr "Dziennik" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 -msgid "Log file does not exist." -msgstr "Plik dziennika nie istnieje." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 -msgid "Log is empty." -msgstr "Dziennik jest pusty." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 -msgid "Login expiration time" -msgstr "Czas ważności logowania" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 -msgid "Max connections" -msgstr "Maksymalna liczba połączeń" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 -msgid "Max log age" -msgstr "Maksymalny wiek dziennika" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 -msgid "Max log backups" -msgstr "Maksymalna liczba kopii zapasowych dziennika" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 -msgid "Max log size" -msgstr "Maksymalny rozmiar dziennika" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -msgid "NOT RUNNING" -msgstr "NIEURUCHOMIONE" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 -msgid "Open Web Interface" -msgstr "Otwórz interfejs WWW" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -msgid "RUNNING" -msgstr "URUCHOMIONE" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 -msgid "Refresh every %s seconds." -msgstr "Odświeżaj co %s sekund(y)." - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 -msgid "Settings" -msgstr "Ustawienia" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 -msgid "The maximum days of the log file to retain." -msgstr "Maksymalna liczba dni przechowywania pliku dziennika." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 -msgid "" -"The maximum number of concurrent connections at the same time (0 = " -"unlimited)." -msgstr "" -"Maksymalna liczba jednoczesnych połączeń w tym samym czasie (0 = " -"nieograniczona)." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 -msgid "The maximum number of old log files to retain." -msgstr "Maksymalna liczba starych plików dziennika do zachowania." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 -msgid "The maximum size in megabytes of the log file before it gets rotated." -msgstr "Maksymalny rozmiar pliku dziennika w megabajtach przed jego rotacją." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 -msgid "Unknown error: %s" -msgstr "Nieznany błąd: %s" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 -msgid "User login expiration time (in hours)." -msgstr "Czas ważności loginu użytkownika (w godzinach)." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "valid IP address" -msgstr "prawidłowy adres IP" diff --git a/applications/luci-app-alist/po/pt/alist.po b/applications/luci-app-alist/po/pt/alist.po deleted file mode 100644 index 733e8a0238..0000000000 --- a/applications/luci-app-alist/po/pt/alist.po +++ /dev/null @@ -1,161 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2025-04-16 15:56+0000\n" -"Last-Translator: ssantos \n" -"Language-Team: Portuguese \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.11.1-dev\n" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 -msgid "" -"A file list/WebDAV program that supports multiple storages, powered by Gin " -"and Solidjs." -msgstr "" -"Uma lista de ficheiros / programa WebDAV que suporta armazenamento múltiplo, " -"utilizando Gin e Solidjs." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 -msgid "AList" -msgstr "AList" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 -msgid "" -"Allow connection even if the remote TLS certificate is invalid (not " -"recommended)." -msgstr "" -"Permitir a ligação mesmo se o certificado TLS remoto for inválido " -"(não recomendado)." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 -msgid "Allow insecure connection" -msgstr "Permitir ligação insegura" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 -msgid "Collecting data..." -msgstr "Recolhendo dados..." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 -msgid "Default webUI/WebDAV login username is %s and password is %s." -msgstr "O nome de utilizador padrão da web/WebDAV é %s, e a senha é %s." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 -msgid "Enable" -msgstr "Ativar" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 -msgid "Enable logging" -msgstr "Ativar registos" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "Expecting: %s" -msgstr "Esperando: %s" - -#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 -msgid "Grant UCI access for luci-app-alist" -msgstr "Conceder UCI acesso ao luci-app-alist" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 -msgid "Listen address" -msgstr "Endereço de escuta" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 -msgid "Listen port" -msgstr "Porto de escuta" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 -msgid "Loading..." -msgstr "A carregar..." - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 -msgid "Log" -msgstr "Registo" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 -msgid "Log file does not exist." -msgstr "Ficheiro de registo não existente." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 -msgid "Log is empty." -msgstr "O registo está vazio." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 -msgid "Login expiration time" -msgstr "Tempo de expiração do login" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 -msgid "Max connections" -msgstr "Conexões máximas" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 -msgid "Max log age" -msgstr "Idade máxima do registo" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 -msgid "Max log backups" -msgstr "Backup máximo do registo" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 -msgid "Max log size" -msgstr "Tamanho máximo do registo" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -msgid "NOT RUNNING" -msgstr "NÃO ESTÁ EM EXECUÇÃO" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 -msgid "Open Web Interface" -msgstr "Abrir Interface Web" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -msgid "RUNNING" -msgstr "EM EXECUÇÃO" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 -msgid "Refresh every %s seconds." -msgstr "Atualizar a cada %s segundos." - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 -msgid "Settings" -msgstr "Configurações" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 -msgid "The maximum days of the log file to retain." -msgstr "Dias máximos do ficheiro de registo a reter." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 -msgid "" -"The maximum number of concurrent connections at the same time (0 = " -"unlimited)." -msgstr "" -"A quantidade máxima de conexões simultâneas ao mesmo tempo (0 = ilimitado)." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 -msgid "The maximum number of old log files to retain." -msgstr "A quantidade máxima de ficheiros de registo antigos a reter." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 -msgid "The maximum size in megabytes of the log file before it gets rotated." -msgstr "" -"O tamanho máximo em megabytes do ficheiro de registo antes de ser girado." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 -msgid "Unknown error: %s" -msgstr "Erro desconhecido: %s" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 -msgid "User login expiration time (in hours)." -msgstr "Tempo de expiração do login do utilizador (em horas)." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "valid IP address" -msgstr "endereço IP válido" diff --git a/applications/luci-app-alist/po/pt_BR/alist.po b/applications/luci-app-alist/po/pt_BR/alist.po deleted file mode 100644 index 948e388768..0000000000 --- a/applications/luci-app-alist/po/pt_BR/alist.po +++ /dev/null @@ -1,162 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2025-04-30 07:12+0000\n" -"Last-Translator: Janderson Vieira Santos \n" -"Language-Team: Portuguese (Brazil) \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.12-dev\n" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 -msgid "" -"A file list/WebDAV program that supports multiple storages, powered by Gin " -"and Solidjs." -msgstr "" -"Um programa de lista de arquivos/WebDAV que suporta múltiplos " -"armazenamentos, alimentado por Gin e Solidjs." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 -msgid "AList" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 -msgid "" -"Allow connection even if the remote TLS certificate is invalid (not " -"recommended)." -msgstr "" -"Permitir conexão mesmo que o certificado TLS remoto seja inválido " -"(não recomendado)." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 -msgid "Allow insecure connection" -msgstr "Permitir conexão insegura" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 -msgid "Collecting data..." -msgstr "Coletando dados..." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 -msgid "Default webUI/WebDAV login username is %s and password is %s." -msgstr "O nome de usuário padrão de login da webUI/WebDAV é %s e a senha é %s." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 -msgid "Enable" -msgstr "Habilitar" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 -msgid "Enable logging" -msgstr "Ativar registro de logs" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "Expecting: %s" -msgstr "Esperando: %s" - -#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 -msgid "Grant UCI access for luci-app-alist" -msgstr "Conceder acesso UCI para luci-app-alist" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 -msgid "Listen address" -msgstr "Endereço de escuta" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 -msgid "Listen port" -msgstr "Porta de escuta" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 -msgid "Loading..." -msgstr "Carregando..." - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 -msgid "Log" -msgstr "Registro" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 -msgid "Log file does not exist." -msgstr "Arquivo de log não existe." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 -msgid "Log is empty." -msgstr "O registro está vazio" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 -msgid "Login expiration time" -msgstr "Tempo de expiração do login" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 -msgid "Max connections" -msgstr "Conexões Máximas" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 -msgid "Max log age" -msgstr "Idade máxima do registro" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 -msgid "Max log backups" -msgstr "Backup máximo de registro" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 -msgid "Max log size" -msgstr "Tamanho máximo do registro" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -msgid "NOT RUNNING" -msgstr "NÃO ESTÁ EM EXECUÇÃO" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 -msgid "Open Web Interface" -msgstr "Abrir interface Web" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -msgid "RUNNING" -msgstr "EM EXECUÇÃO" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 -msgid "Refresh every %s seconds." -msgstr "Atualize a cada %s segundos." - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 -msgid "Settings" -msgstr "Configurações" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 -msgid "The maximum days of the log file to retain." -msgstr "O número máximo de dias para manter o arquivo de registro." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 -msgid "" -"The maximum number of concurrent connections at the same time (0 = " -"unlimited)." -msgstr "" -"O número máximo de conexões simultâneas ao mesmo tempo (0 = ilimitado)." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 -msgid "The maximum number of old log files to retain." -msgstr "O número máximo de arquivos de registro antigos a serem retidos." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 -msgid "The maximum size in megabytes of the log file before it gets rotated." -msgstr "" -"O tamanho máximo em megabytes do arquivo de registro antes de ser " -"substituído." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 -msgid "Unknown error: %s" -msgstr "Erro desconhecido: %s" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 -msgid "User login expiration time (in hours)." -msgstr "Tempo até a expiração do login de usuário (em horas)." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "valid IP address" -msgstr "endereço IP válido" diff --git a/applications/luci-app-alist/po/ro/alist.po b/applications/luci-app-alist/po/ro/alist.po deleted file mode 100644 index 0f53d69d31..0000000000 --- a/applications/luci-app-alist/po/ro/alist.po +++ /dev/null @@ -1,158 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2025-06-20 21:40+0000\n" -"Last-Translator: CRISTIAN ANDREI \n" -"Language-Team: Romanian \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 5.13-dev\n" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 -msgid "" -"A file list/WebDAV program that supports multiple storages, powered by Gin " -"and Solidjs." -msgstr "" -"Un program de listă de fișiere/WebDAV care suportă mai multe tipuri de " -"stocare, bazat pe Gin și Solidjs." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 -msgid "AList" -msgstr "ListaA" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 -msgid "" -"Allow connection even if the remote TLS certificate is invalid (not " -"recommended)." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 -msgid "Allow insecure connection" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 -msgid "Collecting data..." -msgstr "Colectare date..." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 -msgid "Default webUI/WebDAV login username is %s and password is %s." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 -msgid "Enable" -msgstr "Permite" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 -msgid "Enable logging" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "Expecting: %s" -msgstr "" - -#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 -msgid "Grant UCI access for luci-app-alist" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 -msgid "Listen address" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 -msgid "Listen port" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 -msgid "Loading..." -msgstr "" - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 -msgid "Log" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 -msgid "Log file does not exist." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 -msgid "Log is empty." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 -msgid "Login expiration time" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 -msgid "Max connections" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 -msgid "Max log age" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 -msgid "Max log backups" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 -msgid "Max log size" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -msgid "NOT RUNNING" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 -msgid "Open Web Interface" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -msgid "RUNNING" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 -msgid "Refresh every %s seconds." -msgstr "" - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 -msgid "Settings" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 -msgid "The maximum days of the log file to retain." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 -msgid "" -"The maximum number of concurrent connections at the same time (0 = " -"unlimited)." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 -msgid "The maximum number of old log files to retain." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 -msgid "The maximum size in megabytes of the log file before it gets rotated." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 -msgid "Unknown error: %s" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 -msgid "User login expiration time (in hours)." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "valid IP address" -msgstr "" diff --git a/applications/luci-app-alist/po/ru/alist.po b/applications/luci-app-alist/po/ru/alist.po deleted file mode 100644 index 4e82adf9fc..0000000000 --- a/applications/luci-app-alist/po/ru/alist.po +++ /dev/null @@ -1,160 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2025-05-17 10:22+0000\n" -"Last-Translator: SnIPeRSnIPeR \n" -"Language-Team: Russian \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.12-dev\n" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 -msgid "" -"A file list/WebDAV program that supports multiple storages, powered by Gin " -"and Solidjs." -msgstr "" -"Программа для работы со списками файлов/WebDAV, поддерживающая несколько " -"хранилищ, работающая на базе Gin и Solidjs." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 -msgid "AList" -msgstr "AList" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 -msgid "" -"Allow connection even if the remote TLS certificate is invalid (not " -"recommended)." -msgstr "" -"Разрешить соединение даже если TLS-сертификат удалённого хоста неверный " -"(Не рекомендуется)." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 -msgid "Allow insecure connection" -msgstr "Разрешить небезопасное соединение" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 -msgid "Collecting data..." -msgstr "Сбор данных..." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 -msgid "Default webUI/WebDAV login username is %s and password is %s." -msgstr "По умолчанию webUI/WebDAV имя пользователя %s и пароль %s." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 -msgid "Enable" -msgstr "Включить" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 -msgid "Enable logging" -msgstr "Включить ведение журнала" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "Expecting: %s" -msgstr "Ожидание: %s" - -#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 -msgid "Grant UCI access for luci-app-alist" -msgstr "Предоставьте доступ UCI для luci-app-alist" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 -msgid "Listen address" -msgstr "IP-адрес для прослушивания" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 -msgid "Listen port" -msgstr "Порт для прослушивания" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 -msgid "Loading..." -msgstr "Загружается…" - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 -msgid "Log" -msgstr "Журнал" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 -msgid "Log file does not exist." -msgstr "Файл журнала не существует." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 -msgid "Log is empty." -msgstr "Журнал пустой." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 -msgid "Login expiration time" -msgstr "Воемя истечения сессии входа" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 -msgid "Max connections" -msgstr "Максимум соединений" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 -msgid "Max log age" -msgstr "Максимальный возраст журнала" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 -msgid "Max log backups" -msgstr "Максимальное резервное копирование журнала" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 -msgid "Max log size" -msgstr "Максимальный размер журнала" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -msgid "NOT RUNNING" -msgstr "НЕ ЗАПУЩЕНО" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 -msgid "Open Web Interface" -msgstr "Открытый веб-интерфейс" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -msgid "RUNNING" -msgstr "ЗАПУЩЕНО" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 -msgid "Refresh every %s seconds." -msgstr "Обновлять каждые %s секунд." - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 -msgid "Settings" -msgstr "Настройки" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 -msgid "The maximum days of the log file to retain." -msgstr "Дней до ротации журнала." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 -msgid "" -"The maximum number of concurrent connections at the same time (0 = " -"unlimited)." -msgstr "Максимальное количество одновременных соединений (0 = неограниченно)." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 -msgid "The maximum number of old log files to retain." -msgstr "Максимальное число старых файлов журнала которые оставить." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 -msgid "The maximum size in megabytes of the log file before it gets rotated." -msgstr "Максимальный размер в мегабайтах файла журнала до его ротации." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 -msgid "Unknown error: %s" -msgstr "Неизвестная ошибка: %s" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 -msgid "User login expiration time (in hours)." -msgstr "Время истечения пользовательской сессии (часов)." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "valid IP address" -msgstr "верный IP-адрес" diff --git a/applications/luci-app-alist/po/sk/alist.po b/applications/luci-app-alist/po/sk/alist.po deleted file mode 100644 index 341403763a..0000000000 --- a/applications/luci-app-alist/po/sk/alist.po +++ /dev/null @@ -1,152 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\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" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 -msgid "" -"A file list/WebDAV program that supports multiple storages, powered by Gin " -"and Solidjs." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 -msgid "AList" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 -msgid "" -"Allow connection even if the remote TLS certificate is invalid (not " -"recommended)." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 -msgid "Allow insecure connection" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 -msgid "Collecting data..." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 -msgid "Default webUI/WebDAV login username is %s and password is %s." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 -msgid "Enable" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 -msgid "Enable logging" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "Expecting: %s" -msgstr "" - -#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 -msgid "Grant UCI access for luci-app-alist" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 -msgid "Listen address" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 -msgid "Listen port" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 -msgid "Loading..." -msgstr "" - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 -msgid "Log" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 -msgid "Log file does not exist." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 -msgid "Log is empty." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 -msgid "Login expiration time" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 -msgid "Max connections" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 -msgid "Max log age" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 -msgid "Max log backups" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 -msgid "Max log size" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -msgid "NOT RUNNING" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 -msgid "Open Web Interface" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -msgid "RUNNING" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 -msgid "Refresh every %s seconds." -msgstr "" - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 -msgid "Settings" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 -msgid "The maximum days of the log file to retain." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 -msgid "" -"The maximum number of concurrent connections at the same time (0 = " -"unlimited)." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 -msgid "The maximum number of old log files to retain." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 -msgid "The maximum size in megabytes of the log file before it gets rotated." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 -msgid "Unknown error: %s" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 -msgid "User login expiration time (in hours)." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "valid IP address" -msgstr "" diff --git a/applications/luci-app-alist/po/sv/alist.po b/applications/luci-app-alist/po/sv/alist.po deleted file mode 100644 index da5d47dbdf..0000000000 --- a/applications/luci-app-alist/po/sv/alist.po +++ /dev/null @@ -1,157 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2025-03-03 22:06+0000\n" -"Last-Translator: Kristoffer Grundström \n" -"Language-Team: Swedish \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.10.3-dev\n" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 -msgid "" -"A file list/WebDAV program that supports multiple storages, powered by Gin " -"and Solidjs." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 -msgid "AList" -msgstr "AList" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 -msgid "" -"Allow connection even if the remote TLS certificate is invalid (not " -"recommended)." -msgstr "" -"TillÃ¥t anslutning även om det externa TLS-certifikatet är ogiltigt " -"(rekommenderas inte)." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 -msgid "Allow insecure connection" -msgstr "TillÃ¥t osäker anslutning" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 -msgid "Collecting data..." -msgstr "Samlar in data..." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 -msgid "Default webUI/WebDAV login username is %s and password is %s." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 -msgid "Enable" -msgstr "Aktivera" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 -msgid "Enable logging" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "Expecting: %s" -msgstr "" - -#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 -msgid "Grant UCI access for luci-app-alist" -msgstr "Godkänn UCI-Ã¥tkomst för luci-app-alist" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 -msgid "Listen address" -msgstr "Lyssningsadress" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 -msgid "Listen port" -msgstr "Lyssningsport" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 -msgid "Loading..." -msgstr "Laddar..." - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 -msgid "Log" -msgstr "Logg" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 -msgid "Log file does not exist." -msgstr "Logg-filen existerar inte." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 -msgid "Log is empty." -msgstr "Loggen är tom." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 -msgid "Login expiration time" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 -msgid "Max connections" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 -msgid "Max log age" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 -msgid "Max log backups" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 -msgid "Max log size" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -msgid "NOT RUNNING" -msgstr "KÖRS INTE" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 -msgid "Open Web Interface" -msgstr "Öppna webbgränssnittet" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -msgid "RUNNING" -msgstr "KÖRS" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 -msgid "Refresh every %s seconds." -msgstr "" - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 -msgid "Settings" -msgstr "Inställningar" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 -msgid "The maximum days of the log file to retain." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 -msgid "" -"The maximum number of concurrent connections at the same time (0 = " -"unlimited)." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 -msgid "The maximum number of old log files to retain." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 -msgid "The maximum size in megabytes of the log file before it gets rotated." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 -msgid "Unknown error: %s" -msgstr "Okänt fel: %s" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 -msgid "User login expiration time (in hours)." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "valid IP address" -msgstr "" diff --git a/applications/luci-app-alist/po/templates/alist.pot b/applications/luci-app-alist/po/templates/alist.pot deleted file mode 100644 index 5e04e666bd..0000000000 --- a/applications/luci-app-alist/po/templates/alist.pot +++ /dev/null @@ -1,144 +0,0 @@ -msgid "" -msgstr "Content-Type: text/plain; charset=UTF-8" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 -msgid "" -"A file list/WebDAV program that supports multiple storages, powered by Gin " -"and Solidjs." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 -msgid "AList" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 -msgid "" -"Allow connection even if the remote TLS certificate is invalid (not " -"recommended)." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 -msgid "Allow insecure connection" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 -msgid "Collecting data..." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 -msgid "Default webUI/WebDAV login username is %s and password is %s." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 -msgid "Enable" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 -msgid "Enable logging" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "Expecting: %s" -msgstr "" - -#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 -msgid "Grant UCI access for luci-app-alist" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 -msgid "Listen address" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 -msgid "Listen port" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 -msgid "Loading..." -msgstr "" - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 -msgid "Log" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 -msgid "Log file does not exist." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 -msgid "Log is empty." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 -msgid "Login expiration time" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 -msgid "Max connections" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 -msgid "Max log age" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 -msgid "Max log backups" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 -msgid "Max log size" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -msgid "NOT RUNNING" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 -msgid "Open Web Interface" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -msgid "RUNNING" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 -msgid "Refresh every %s seconds." -msgstr "" - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 -msgid "Settings" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 -msgid "The maximum days of the log file to retain." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 -msgid "" -"The maximum number of concurrent connections at the same time (0 = " -"unlimited)." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 -msgid "The maximum number of old log files to retain." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 -msgid "The maximum size in megabytes of the log file before it gets rotated." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 -msgid "Unknown error: %s" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 -msgid "User login expiration time (in hours)." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "valid IP address" -msgstr "" diff --git a/applications/luci-app-alist/po/tr/alist.po b/applications/luci-app-alist/po/tr/alist.po deleted file mode 100644 index 7e344be908..0000000000 --- a/applications/luci-app-alist/po/tr/alist.po +++ /dev/null @@ -1,160 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2024-08-17 13:21+0000\n" -"Last-Translator: Oğuz Ersen \n" -"Language-Team: Turkish \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=2; plural=n != 1;\n" -"X-Generator: Weblate 5.7\n" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 -msgid "" -"A file list/WebDAV program that supports multiple storages, powered by Gin " -"and Solidjs." -msgstr "" -"Gin ve Solidjs tarafından desteklenen, birden fazla depolamayı destekleyen " -"bir dosya listesi/WebDAV programı." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 -msgid "AList" -msgstr "Liste" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 -msgid "" -"Allow connection even if the remote TLS certificate is invalid (not " -"recommended)." -msgstr "" -"Uzak TLS sertifikası geçersiz olsa bile bağlantıya izin ver " -"(önerilmez)." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 -msgid "Allow insecure connection" -msgstr "Güvensiz bağlantıya izin ver" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 -msgid "Collecting data..." -msgstr "Veriler toplanıyor..." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 -msgid "Default webUI/WebDAV login username is %s and password is %s." -msgstr "Varsayılan webUI/WebDAV oturum açma kullanıcı adı %s ve parola %s'dir." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 -msgid "Enable" -msgstr "Etkinleştir" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 -msgid "Enable logging" -msgstr "Günlük kaydını etkinleştir" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "Expecting: %s" -msgstr "Beklenen: %s" - -#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 -msgid "Grant UCI access for luci-app-alist" -msgstr "luci-app-alist için UCI erişim izni verin" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 -msgid "Listen address" -msgstr "Adres dinle" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 -msgid "Listen port" -msgstr "Dinleme bağlantı noktası" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 -msgid "Loading..." -msgstr "Yükleniyor..." - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 -msgid "Log" -msgstr "Günlük" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 -msgid "Log file does not exist." -msgstr "Günlük dosyası mevcut değil." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 -msgid "Log is empty." -msgstr "Günlük boş." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 -msgid "Login expiration time" -msgstr "Oturum açma sona erme süresi" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 -msgid "Max connections" -msgstr "Maksimum bağlantılar" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 -msgid "Max log age" -msgstr "Maksimum günlük yaşı" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 -msgid "Max log backups" -msgstr "Maksimum günlük yedeklemeleri" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 -msgid "Max log size" -msgstr "Maksimum günlük boyutu" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -msgid "NOT RUNNING" -msgstr "ÇALIŞMIYOR" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 -msgid "Open Web Interface" -msgstr "Web Arayüzünü Aç" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -msgid "RUNNING" -msgstr "ÇALIŞIYOR" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 -msgid "Refresh every %s seconds." -msgstr "Her %s saniyede bir yenileyin." - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 -msgid "Settings" -msgstr "Ayarlar" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 -msgid "The maximum days of the log file to retain." -msgstr "Günlük dosyasının saklanacağı maksimum gün sayısı." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 -msgid "" -"The maximum number of concurrent connections at the same time (0 = " -"unlimited)." -msgstr "Aynı anda eşzamanlı bağlantıların maksimum sayısı (0 = sınırsız)." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 -msgid "The maximum number of old log files to retain." -msgstr "Saklanacak maksimum eski günlük dosyası sayısı." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 -msgid "The maximum size in megabytes of the log file before it gets rotated." -msgstr "" -"Döndürülmeden önce günlük dosyasının megabayt cinsinden maksimum boyutu." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 -msgid "Unknown error: %s" -msgstr "Bilinmeyen hata: %s" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 -msgid "User login expiration time (in hours)." -msgstr "Kullanıcı oturum açma sona erme süresi (saat olarak)." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "valid IP address" -msgstr "geçerli IP adresi" diff --git a/applications/luci-app-alist/po/uk/alist.po b/applications/luci-app-alist/po/uk/alist.po deleted file mode 100644 index 3f4cb590f5..0000000000 --- a/applications/luci-app-alist/po/uk/alist.po +++ /dev/null @@ -1,164 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2025-03-09 18:16+0000\n" -"Last-Translator: Максим Горпиніч \n" -"Language-Team: Ukrainian \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.10.3-dev\n" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 -msgid "" -"A file list/WebDAV program that supports multiple storages, powered by Gin " -"and Solidjs." -msgstr "" -"Список файлів/програма WebDAV, яка підтримує кілька сховищ на базі Gin і " -"Solidjs." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 -msgid "AList" -msgstr "AList" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 -msgid "" -"Allow connection even if the remote TLS certificate is invalid (not " -"recommended)." -msgstr "" -"Дозволяти підключення, навіть якщо віддалений сертифікат TLS є недійсним " -"(не рекомендується)." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 -msgid "Allow insecure connection" -msgstr "Дозволити незахищене з'єднання" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 -msgid "Collecting data..." -msgstr "Збір даних..." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 -msgid "Default webUI/WebDAV login username is %s and password is %s." -msgstr "" -"За замовчуванням ім'я користувача для входу в webUI/WebDAV - %s, пароль - %s." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 -msgid "Enable" -msgstr "Увімкнути" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 -msgid "Enable logging" -msgstr "Увімкнути журналювання" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "Expecting: %s" -msgstr "Очікується: %s" - -#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 -msgid "Grant UCI access for luci-app-alist" -msgstr "Надати доступ до UCI для luci-app-alist" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 -msgid "Listen address" -msgstr "Адреса для прослуховування" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 -msgid "Listen port" -msgstr "Порт прослуховування" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 -msgid "Loading..." -msgstr "Завантаження..." - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 -msgid "Log" -msgstr "Журнал" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 -msgid "Log file does not exist." -msgstr "Файл журналу не існує." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 -msgid "Log is empty." -msgstr "Журнал порожній." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 -msgid "Login expiration time" -msgstr "Термін дії логіну" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 -msgid "Max connections" -msgstr "Максимум з'єднань" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 -msgid "Max log age" -msgstr "Максимальний вік журналу" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 -msgid "Max log backups" -msgstr "Максимальна кількість резервних копій журналу" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 -msgid "Max log size" -msgstr "Максимальний розмір журналу" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -msgid "NOT RUNNING" -msgstr "НЕ ПРАЦЮЄ" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 -msgid "Open Web Interface" -msgstr "Відкритий веб-інтерфейс" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -msgid "RUNNING" -msgstr "ЗАПУЩЕНО" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 -msgid "Refresh every %s seconds." -msgstr "Оновлювати кожні %s секунд." - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 -msgid "Settings" -msgstr "Налаштування" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 -msgid "The maximum days of the log file to retain." -msgstr "" -"Максимальна кількість днів, протягом яких можна зберігати файл журналу." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 -msgid "" -"The maximum number of concurrent connections at the same time (0 = " -"unlimited)." -msgstr "Максимальна кількість одночасних з'єднань (0 = необмежена)." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 -msgid "The maximum number of old log files to retain." -msgstr "Максимальна кількість старих файлів журналів для збереження." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 -msgid "The maximum size in megabytes of the log file before it gets rotated." -msgstr "" -"Максимальний розмір у мегабайтах файлу журналу до того, як він буде " -"обертатися." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 -msgid "Unknown error: %s" -msgstr "Невідома помилка: %s" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 -msgid "User login expiration time (in hours)." -msgstr "Час закінчення терміну дії логіну користувача (у годинах)." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "valid IP address" -msgstr "дійсна IP-адреса" diff --git a/applications/luci-app-alist/po/vi/alist.po b/applications/luci-app-alist/po/vi/alist.po deleted file mode 100644 index cee5c6f57a..0000000000 --- a/applications/luci-app-alist/po/vi/alist.po +++ /dev/null @@ -1,157 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2025-05-14 10:34+0000\n" -"Last-Translator: Lộc SuperVipPro \n" -"Language-Team: Vietnamese \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 5.12-dev\n" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 -msgid "" -"A file list/WebDAV program that supports multiple storages, powered by Gin " -"and Solidjs." -msgstr "" -"Danh sách tệp/chương trình WebDAV hỗ trợ nhiều kho lưu trữ, được cung cấp " -"bởi Gin và Solidjs." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 -msgid "AList" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 -msgid "" -"Allow connection even if the remote TLS certificate is invalid (not " -"recommended)." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 -msgid "Allow insecure connection" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 -msgid "Collecting data..." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 -msgid "Default webUI/WebDAV login username is %s and password is %s." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 -msgid "Enable" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 -msgid "Enable logging" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "Expecting: %s" -msgstr "" - -#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 -msgid "Grant UCI access for luci-app-alist" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 -msgid "Listen address" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 -msgid "Listen port" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 -msgid "Loading..." -msgstr "" - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 -msgid "Log" -msgstr "Nhật ký" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 -msgid "Log file does not exist." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 -msgid "Log is empty." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 -msgid "Login expiration time" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 -msgid "Max connections" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 -msgid "Max log age" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 -msgid "Max log backups" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 -msgid "Max log size" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -msgid "NOT RUNNING" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 -msgid "Open Web Interface" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -msgid "RUNNING" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 -msgid "Refresh every %s seconds." -msgstr "" - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 -msgid "Settings" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 -msgid "The maximum days of the log file to retain." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 -msgid "" -"The maximum number of concurrent connections at the same time (0 = " -"unlimited)." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 -msgid "The maximum number of old log files to retain." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 -msgid "The maximum size in megabytes of the log file before it gets rotated." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 -msgid "Unknown error: %s" -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 -msgid "User login expiration time (in hours)." -msgstr "" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "valid IP address" -msgstr "" diff --git a/applications/luci-app-alist/po/zh_Hans/alist.po b/applications/luci-app-alist/po/zh_Hans/alist.po deleted file mode 100644 index 1f4f522445..0000000000 --- a/applications/luci-app-alist/po/zh_Hans/alist.po +++ /dev/null @@ -1,155 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2025-03-10 03:34+0000\n" -"Last-Translator: DragonBluep \n" -"Language-Team: Chinese (Simplified Han script) \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.10.3-dev\n" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 -msgid "" -"A file list/WebDAV program that supports multiple storages, powered by Gin " -"and Solidjs." -msgstr "一个支持多存储的 文件列表/WebDAV 程序,使用 Gin 和 Solidjs。" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 -msgid "AList" -msgstr "AList" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 -msgid "" -"Allow connection even if the remote TLS certificate is invalid (not " -"recommended)." -msgstr "即使远程 TLS 证书无效,也允许连接(不推荐)。" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 -msgid "Allow insecure connection" -msgstr "允许不安全连接" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 -msgid "Collecting data..." -msgstr "正在收集数据中..." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 -msgid "Default webUI/WebDAV login username is %s and password is %s." -msgstr "默认 webUI/WebDAV 登录用户名 %s 密码 %s。" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 -msgid "Enable" -msgstr "启用" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 -msgid "Enable logging" -msgstr "启用日志" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "Expecting: %s" -msgstr "请输入:%s" - -#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 -msgid "Grant UCI access for luci-app-alist" -msgstr "授予 luci-app-alist 访问 UCI 配置的权限" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 -msgid "Listen address" -msgstr "监听地址" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 -msgid "Listen port" -msgstr "监听端口" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 -msgid "Loading..." -msgstr "加载中..." - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 -msgid "Log" -msgstr "日志" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 -msgid "Log file does not exist." -msgstr "日志文件不存在。" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 -msgid "Log is empty." -msgstr "日志为空。" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 -msgid "Login expiration time" -msgstr "登录过期时间" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 -msgid "Max connections" -msgstr "最大连接数" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 -msgid "Max log age" -msgstr "日志最长保留时间" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 -msgid "Max log backups" -msgstr "日志最大备份数" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 -msgid "Max log size" -msgstr "日志最大大小" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -msgid "NOT RUNNING" -msgstr "未在运行" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 -msgid "Open Web Interface" -msgstr "打开 Web 界面" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -msgid "RUNNING" -msgstr "运行中" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 -msgid "Refresh every %s seconds." -msgstr "每 %s 秒刷新。" - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 -msgid "Settings" -msgstr "设置" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 -msgid "The maximum days of the log file to retain." -msgstr "日志文件的最长保存天数。" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 -msgid "" -"The maximum number of concurrent connections at the same time (0 = " -"unlimited)." -msgstr "允许的最大并发连接数(0 = 不限制)。" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 -msgid "The maximum number of old log files to retain." -msgstr "要保留的最大旧日志文件数量。" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 -msgid "The maximum size in megabytes of the log file before it gets rotated." -msgstr "轮换前的最大日志大小(单位:MB)。" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 -msgid "Unknown error: %s" -msgstr "未知错误:%s" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 -msgid "User login expiration time (in hours)." -msgstr "用户登录过期时间(单位:小时)。" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "valid IP address" -msgstr "有效 IP 地址" diff --git a/applications/luci-app-alist/po/zh_Hant/alist.po b/applications/luci-app-alist/po/zh_Hant/alist.po deleted file mode 100644 index cc3c44ddb9..0000000000 --- a/applications/luci-app-alist/po/zh_Hant/alist.po +++ /dev/null @@ -1,155 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2025-03-13 16:08+0000\n" -"Last-Translator: x86_64-pc-linux-gnu \n" -"Language-Team: Chinese (Traditional Han script) \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.11-dev\n" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 -msgid "" -"A file list/WebDAV program that supports multiple storages, powered by Gin " -"and Solidjs." -msgstr "一個支援多種儲存方式的檔案列表/WebDAV程式,使用Gin和Solidjs。" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 -msgid "AList" -msgstr "AList" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 -msgid "" -"Allow connection even if the remote TLS certificate is invalid (not " -"recommended)." -msgstr "即使遠端TLS憑證無效,也允許連線 (不推薦)。" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 -msgid "Allow insecure connection" -msgstr "允許不安全連線" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 -msgid "Collecting data..." -msgstr "收集資料中..." - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 -msgid "Default webUI/WebDAV login username is %s and password is %s." -msgstr "預設webUI/WebDAV登入使用者名稱是%s及密碼是%s。" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 -msgid "Enable" -msgstr "啟用" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 -msgid "Enable logging" -msgstr "啟用記錄" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "Expecting: %s" -msgstr "需要:%s" - -#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 -msgid "Grant UCI access for luci-app-alist" -msgstr "授予luci-app-alist存取UCI的權限" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 -msgid "Listen address" -msgstr "監聽位址" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 -msgid "Listen port" -msgstr "監聽連接埠" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 -msgid "Loading..." -msgstr "載入中..." - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 -msgid "Log" -msgstr "日誌" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 -msgid "Log file does not exist." -msgstr "日誌檔案不存在。" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 -msgid "Log is empty." -msgstr "日誌為空。" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 -msgid "Login expiration time" -msgstr "登入過期時間" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 -msgid "Max connections" -msgstr "最大連線數" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 -msgid "Max log age" -msgstr "日誌最長保留時間" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 -msgid "Max log backups" -msgstr "日誌最大備份數" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 -msgid "Max log size" -msgstr "日誌最大大小" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 -msgid "NOT RUNNING" -msgstr "未執行" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 -msgid "Open Web Interface" -msgstr "開啟Web介面" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 -msgid "RUNNING" -msgstr "執行中" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 -msgid "Refresh every %s seconds." -msgstr "每%s秒重新整理。" - -#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 -msgid "Settings" -msgstr "設定" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 -msgid "The maximum days of the log file to retain." -msgstr "日誌檔案的最長儲存天數。" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 -msgid "" -"The maximum number of concurrent connections at the same time (0 = " -"unlimited)." -msgstr "允許的最大並行連線數 (0 = 不限制)。" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 -msgid "The maximum number of old log files to retain." -msgstr "要保留的最大舊日誌檔案數量。" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 -msgid "The maximum size in megabytes of the log file before it gets rotated." -msgstr "輪換前的最大日誌大小 (單位:MB)。" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 -msgid "Unknown error: %s" -msgstr "未知錯誤:%s" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 -msgid "User login expiration time (in hours)." -msgstr "使用者登入過期時間 (單位:小時)。" - -#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 -msgid "valid IP address" -msgstr "有效的IP位址" diff --git a/applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json b/applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json deleted file mode 100644 index 084085a132..0000000000 --- a/applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "admin/services/alist": { - "title": "AList", - "action": { - "type": "firstchild" - }, - "depends": { - "acl": [ "luci-app-alist" ], - "uci": { "alist": true } - } - }, - "admin/services/alist/config": { - "title": "Settings", - "order": 10, - "action": { - "type": "view", - "path": "alist/config" - } - }, - "admin/services/alist/log": { - "title": "Log", - "order": 20, - "action": { - "type": "view", - "path": "alist/log" - } - } -} diff --git a/applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json b/applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json deleted file mode 100644 index 991dfa0291..0000000000 --- a/applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "luci-app-alist": { - "description": "Grant UCI access for luci-app-alist", - "read": { - "file": { - "/var/run/alist/log/alist.log": [ "read" ] - }, - "ubus": { - "service": [ "list" ] - }, - "uci": [ "alist" ] - }, - "write": { - "uci": [ "alist" ] - } - } -} diff --git a/applications/luci-app-openlist/Makefile b/applications/luci-app-openlist/Makefile new file mode 100644 index 0000000000..88db5098af --- /dev/null +++ b/applications/luci-app-openlist/Makefile @@ -0,0 +1,17 @@ +# SPDX-License-Identifier: Apache-2.0 +# +# Copyright (C) 2023 ImmortalWrt.org + +include $(TOPDIR)/rules.mk + +PKG_LICENSE:=Apache-2.0 + +LUCI_TITLE:=LuCI app for OpenList +LUCI_DEPENDS:=+openlist + +PKG_MAINTAINER:=Tianling Shen +PKG_PROVIDES:=luci-app-alist + +include ../../luci.mk + +# call BuildPackage - OpenWrt buildroot signature diff --git a/applications/luci-app-openlist/htdocs/luci-static/resources/view/openlist/config.js b/applications/luci-app-openlist/htdocs/luci-static/resources/view/openlist/config.js new file mode 100644 index 0000000000..319c659e12 --- /dev/null +++ b/applications/luci-app-openlist/htdocs/luci-static/resources/view/openlist/config.js @@ -0,0 +1,144 @@ +// SPDX-License-Identifier: Apache-2.0 + +'use strict'; +'require form'; +'require poll'; +'require rpc'; +'require uci'; +'require validation'; +'require view'; + +const callServiceList = rpc.declare({ + object: 'service', + method: 'list', + params: ['name'], + expect: { '': {} } +}); + +function getServiceStatus() { + return L.resolveDefault(callServiceList('openlist'), {}).then(function (res) { + var isRunning = false; + try { + isRunning = res['openlist']['instances']['instance1']['running']; + } catch (e) { } + return isRunning; + }); +} + +function renderStatus(isRunning, port) { + var spanTemp = '%s %s'; + var renderHTML; + if (isRunning) { + var button = String.format(' %s', + window.location.hostname, port, _('Open Web Interface')); + renderHTML = spanTemp.format('green', _('OpenList'), _('RUNNING')) + button; + } else { + renderHTML = spanTemp.format('red', _('OpenList'), _('NOT RUNNING')); + } + + return renderHTML; +} + +var stubValidator = { + factory: validation, + apply: function(type, value, args) { + if (value != null) + this.value = value; + + return validation.types[type].apply(this, args); + }, + assert: function(condition) { + return !!condition; + } +}; + +return view.extend({ + load: function() { + return Promise.all([ + uci.load('openlist') + ]); + }, + + render: function(data) { + let m, s, o; + var webport = uci.get(data[0], 'config', 'listen_http_port') || '5244'; + + m = new form.Map('openlist', _('OpenList'), + _('A file list/WebDAV program that supports multiple storages, powered by Gin and Solidjs.') + '
' + + _('Default webUI/WebDAV login username is %s and password is %s.').format('admin', 'password')); + + s = m.section(form.TypedSection); + s.anonymous = true; + s.render = function () { + poll.add(function () { + return L.resolveDefault(getServiceStatus()).then(function (res) { + var view = document.getElementById('service_status'); + view.innerHTML = renderStatus(res, webport); + }); + }); + + return E('div', { class: 'cbi-section', id: 'status_bar' }, [ + E('p', { id: 'service_status' }, _('Collecting data...')) + ]); + } + + s = m.section(form.NamedSection, 'config', 'openlist'); + + o = s.option(form.Flag, 'enabled', _('Enable')); + o.default = o.disabled; + o.rmempty = false; + + o = s.option(form.Value, 'listen_addr', _('Listen address')); + o.placeholder = '0.0.0.0'; + o.validate = function(section_id, value) { + if (section_id && value) { + var m4 = value.match(/^([^\[\]:]+)$/), + m6 = value.match(/^\[(.+)\]$/ ); + + if ((!m4 && !m6) || !stubValidator.apply('ipaddr', m4 ? m4[1] : m6[1])) + return _('Expecting: %s').format(_('valid IP address')); + } + return true; + } + + o = s.option(form.Value, 'listen_http_port', _('Listen port')); + o.datatype = 'port'; + o.placeholder = '5244'; + + o = s.option(form.Value, 'site_login_expire', _('Login expiration time'), + _('User login expiration time (in hours).')); + o.datatype = 'uinteger'; + o.placeholder = '48'; + + o = s.option(form.Value, 'site_max_connections', _('Max connections'), + _('The maximum number of concurrent connections at the same time (0 = unlimited).')); + o.datatype = 'uinteger'; + o.placeholder = '0'; + + o = s.option(form.Flag, 'site_tls_insecure', _('Allow insecure connection'), + _('Allow connection even if the remote TLS certificate is invalid (not recommended).')); + + o = s.option(form.Flag, 'log_enable', _('Enable logging')); + o.default = o.enabled; + + o = s.option(form.Value, 'log_max_size', _('Max log size'), + _('The maximum size in megabytes of the log file before it gets rotated.')); + o.datatype = 'uinteger'; + o.placeholder = '5'; + o.depends('log_enable', '1'); + + o = s.option(form.Value, 'log_max_backups', _('Max log backups'), + _('The maximum number of old log files to retain.')); + o.datatype = 'uinteger'; + o.placeholder = '1'; + o.depends('log_enable', '1'); + + o = s.option(form.Value, 'log_max_age', _('Max log age'), + _('The maximum days of the log file to retain.')); + o.datatype = 'uinteger'; + o.placeholder = '15'; + o.depends('log_enable', '1'); + + return m.render(); + } +}); diff --git a/applications/luci-app-openlist/htdocs/luci-static/resources/view/openlist/log.js b/applications/luci-app-openlist/htdocs/luci-static/resources/view/openlist/log.js new file mode 100644 index 0000000000..b98f6f7980 --- /dev/null +++ b/applications/luci-app-openlist/htdocs/luci-static/resources/view/openlist/log.js @@ -0,0 +1,75 @@ +// SPDX-License-Identifier: Apache-2.0 + +'use strict'; +'require dom'; +'require fs'; +'require poll'; +'require uci'; +'require view'; + +return view.extend({ + render: function() { + /* Thanks to luci-app-aria2 */ + var css = ' \ + #log_textarea { \ + padding: 10px; \ + text-align: left; \ + } \ + #log_textarea pre { \ + padding: .5rem; \ + word-break: break-all; \ + margin: 0; \ + } \ + .description { \ + background-color: #33ccff; \ + }'; + + var log_textarea = E('div', { 'id': 'log_textarea' }, + E('img', { + 'src': L.resource('icons/loading.svg'), + 'alt': _('Loading...'), + 'style': 'vertical-align:middle' + }, _('Collecting data...')) + ); + + poll.add(L.bind(function() { + return fs.read_direct('/var/run/openlist/log/openlist.log', 'text') + .then(function(res) { + var log = E('pre', { 'wrap': 'pre' }, [ + res.trim() || _('Log is empty.') + ]); + + dom.content(log_textarea, log); + }).catch(function(err) { + var log; + + if (err.toString().includes('NotFoundError')) + log = E('pre', { 'wrap': 'pre' }, [ + _('Log file does not exist.') + ]); + else + log = E('pre', { 'wrap': 'pre' }, [ + _('Unknown error: %s').format(err) + ]); + + dom.content(log_textarea, log); + }); + })); + + return E([ + E('style', [ css ]), + E('div', {'class': 'cbi-map'}, [ + E('div', {'class': 'cbi-section'}, [ + log_textarea, + E('div', {'style': 'text-align:right'}, + E('small', {}, _('Refresh every %s seconds.').format(L.env.pollinterval)) + ) + ]) + ]) + ]); + }, + + handleSaveApply: null, + handleSave: null, + handleReset: null +}); diff --git a/applications/luci-app-openlist/po/ar/openlist.po b/applications/luci-app-openlist/po/ar/openlist.po new file mode 100644 index 0000000000..bf26d98c3b --- /dev/null +++ b/applications/luci-app-openlist/po/ar/openlist.po @@ -0,0 +1,156 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2024-07-15 20:49+0000\n" +"Last-Translator: Rex_sa \n" +"Language-Team: Arabic \n" +"Language: ar\n" +"MIME-Version: 1.0\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-alist/htdocs/luci-static/resources/view/alist/config.js:67 +msgid "" +"A file list/WebDAV program that supports multiple storages, powered by Gin " +"and Solidjs." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 +msgid "AList" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 +msgid "" +"Allow connection even if the remote TLS certificate is invalid (not " +"recommended)." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 +msgid "Allow insecure connection" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 +msgid "Collecting data..." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 +msgid "Default webUI/WebDAV login username is %s and password is %s." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 +msgid "Enable" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 +msgid "Enable logging" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "Expecting: %s" +msgstr "" + +#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 +msgid "Grant UCI access for luci-app-alist" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 +msgid "Listen address" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 +msgid "Listen port" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 +msgid "Loading..." +msgstr "" + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 +msgid "Log" +msgstr "السجل" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 +msgid "Log file does not exist." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 +msgid "Log is empty." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 +msgid "Login expiration time" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 +msgid "Max connections" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 +msgid "Max log age" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 +msgid "Max log backups" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 +msgid "Max log size" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 +msgid "Open Web Interface" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 +msgid "Refresh every %s seconds." +msgstr "" + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 +msgid "Settings" +msgstr "الاعدادات" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 +msgid "The maximum days of the log file to retain." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 +msgid "" +"The maximum number of concurrent connections at the same time (0 = " +"unlimited)." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 +msgid "The maximum number of old log files to retain." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 +msgid "The maximum size in megabytes of the log file before it gets rotated." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 +msgid "Unknown error: %s" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 +msgid "User login expiration time (in hours)." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "valid IP address" +msgstr "" diff --git a/applications/luci-app-openlist/po/bg/openlist.po b/applications/luci-app-openlist/po/bg/openlist.po new file mode 100644 index 0000000000..58dd2429a0 --- /dev/null +++ b/applications/luci-app-openlist/po/bg/openlist.po @@ -0,0 +1,160 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2024-10-18 20:25+0000\n" +"Last-Translator: Boyan Alexiev \n" +"Language-Team: Bulgarian \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 5.8-rc\n" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 +msgid "" +"A file list/WebDAV program that supports multiple storages, powered by Gin " +"and Solidjs." +msgstr "" +"Програма за списъци с файлове/WebDAV, която поддържа множество хранилища, " +"задвижвана от Gin и Solidjs." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 +msgid "AList" +msgstr "AList" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 +msgid "" +"Allow connection even if the remote TLS certificate is invalid (not " +"recommended)." +msgstr "" +"Позволи връзка дори ако отдалечения TLS сертификат е невалиден (не " +"се препоръчва)." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 +msgid "Allow insecure connection" +msgstr "Позволяване на несигурни връзки" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 +msgid "Collecting data..." +msgstr "Събиране на данни..." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 +msgid "Default webUI/WebDAV login username is %s and password is %s." +msgstr "Потребителят по подразбиране за webUI/WebDAV е %s и паролата е %s." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 +msgid "Enable" +msgstr "Включване" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 +msgid "Enable logging" +msgstr "Включване на логване" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "Expecting: %s" +msgstr "Очакване: %s" + +#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 +msgid "Grant UCI access for luci-app-alist" +msgstr "Позволи UCI достъп на luci-app-alist" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 +msgid "Listen address" +msgstr "Адрес на слушане" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 +msgid "Listen port" +msgstr "Порт на слушане" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 +msgid "Loading..." +msgstr "Зареждане…" + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 +msgid "Log" +msgstr "Лог" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 +msgid "Log file does not exist." +msgstr "Лог файла не съществува." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 +msgid "Log is empty." +msgstr "Логът е празен." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 +msgid "Login expiration time" +msgstr "Период за логване" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 +msgid "Max connections" +msgstr "Максимален брой връзки" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 +msgid "Max log age" +msgstr "Максимална възраст на лога" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 +msgid "Max log backups" +msgstr "Максимален брой архиви на лога" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 +msgid "Max log size" +msgstr "Максимален размер на лога" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +msgid "NOT RUNNING" +msgstr "НЕ СЕ ИЗПЪЛНЯВА" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 +msgid "Open Web Interface" +msgstr "Отвори уеб интерфейс" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +msgid "RUNNING" +msgstr "ИЗПЪЛНЕНИЕ" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 +msgid "Refresh every %s seconds." +msgstr "Освежаване на всеки %s секунди." + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 +msgid "Settings" +msgstr "Настройки" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 +msgid "The maximum days of the log file to retain." +msgstr "Максимален брой дни за съхранение на лога." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 +msgid "" +"The maximum number of concurrent connections at the same time (0 = " +"unlimited)." +msgstr "Максимален брой паралелни връзки (0 = неограничени)." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 +msgid "The maximum number of old log files to retain." +msgstr "Максимален брой стари лог файлове за съхранение." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 +msgid "The maximum size in megabytes of the log file before it gets rotated." +msgstr "" +"Максимален размер в мегабайти на лог файла преди да се направи ротация." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 +msgid "Unknown error: %s" +msgstr "Неизвестна грешка: %s" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 +msgid "User login expiration time (in hours)." +msgstr "Време за вход на потребителя (в часове)." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "valid IP address" +msgstr "валиден IP адрес" diff --git a/applications/luci-app-openlist/po/bn_BD/openlist.po b/applications/luci-app-openlist/po/bn_BD/openlist.po new file mode 100644 index 0000000000..b31417e3c7 --- /dev/null +++ b/applications/luci-app-openlist/po/bn_BD/openlist.po @@ -0,0 +1,155 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2025-04-15 20:45+0000\n" +"Last-Translator: Random Github User \n" +"Language-Team: Bengali (Bangladesh) \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 5.11-dev\n" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 +msgid "" +"A file list/WebDAV program that supports multiple storages, powered by Gin " +"and Solidjs." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 +msgid "AList" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 +msgid "" +"Allow connection even if the remote TLS certificate is invalid (not " +"recommended)." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 +msgid "Allow insecure connection" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 +msgid "Collecting data..." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 +msgid "Default webUI/WebDAV login username is %s and password is %s." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 +msgid "Enable" +msgstr "সক্রিয় করুন" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 +msgid "Enable logging" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "Expecting: %s" +msgstr "" + +#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 +msgid "Grant UCI access for luci-app-alist" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 +msgid "Listen address" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 +msgid "Listen port" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 +msgid "Loading..." +msgstr "" + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 +msgid "Log" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 +msgid "Log file does not exist." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 +msgid "Log is empty." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 +msgid "Login expiration time" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 +msgid "Max connections" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 +msgid "Max log age" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 +msgid "Max log backups" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 +msgid "Max log size" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 +msgid "Open Web Interface" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 +msgid "Refresh every %s seconds." +msgstr "" + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 +msgid "Settings" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 +msgid "The maximum days of the log file to retain." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 +msgid "" +"The maximum number of concurrent connections at the same time (0 = " +"unlimited)." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 +msgid "The maximum number of old log files to retain." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 +msgid "The maximum size in megabytes of the log file before it gets rotated." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 +msgid "Unknown error: %s" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 +msgid "User login expiration time (in hours)." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "valid IP address" +msgstr "" diff --git a/applications/luci-app-openlist/po/ca/openlist.po b/applications/luci-app-openlist/po/ca/openlist.po new file mode 100644 index 0000000000..53e8e7b936 --- /dev/null +++ b/applications/luci-app-openlist/po/ca/openlist.po @@ -0,0 +1,155 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2025-03-10 02:48+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" +"Language-Team: Catalan \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 5.10.3-dev\n" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 +msgid "" +"A file list/WebDAV program that supports multiple storages, powered by Gin " +"and Solidjs." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 +msgid "AList" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 +msgid "" +"Allow connection even if the remote TLS certificate is invalid (not " +"recommended)." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 +msgid "Allow insecure connection" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 +msgid "Collecting data..." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 +msgid "Default webUI/WebDAV login username is %s and password is %s." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 +msgid "Enable" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 +msgid "Enable logging" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "Expecting: %s" +msgstr "" + +#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 +msgid "Grant UCI access for luci-app-alist" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 +msgid "Listen address" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 +msgid "Listen port" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 +msgid "Loading..." +msgstr "" + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 +msgid "Log" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 +msgid "Log file does not exist." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 +msgid "Log is empty." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 +msgid "Login expiration time" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 +msgid "Max connections" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 +msgid "Max log age" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 +msgid "Max log backups" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 +msgid "Max log size" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 +msgid "Open Web Interface" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 +msgid "Refresh every %s seconds." +msgstr "" + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 +msgid "Settings" +msgstr "Paràmetres" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 +msgid "The maximum days of the log file to retain." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 +msgid "" +"The maximum number of concurrent connections at the same time (0 = " +"unlimited)." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 +msgid "The maximum number of old log files to retain." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 +msgid "The maximum size in megabytes of the log file before it gets rotated." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 +msgid "Unknown error: %s" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 +msgid "User login expiration time (in hours)." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "valid IP address" +msgstr "" diff --git a/applications/luci-app-openlist/po/cs/openlist.po b/applications/luci-app-openlist/po/cs/openlist.po new file mode 100644 index 0000000000..c9d17c90e4 --- /dev/null +++ b/applications/luci-app-openlist/po/cs/openlist.po @@ -0,0 +1,165 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2025-05-11 19:01+0000\n" +"Last-Translator: Pavel Borecki \n" +"Language-Team: Czech \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 5.12-dev\n" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 +msgid "" +"A file list/WebDAV program that supports multiple storages, powered by Gin " +"and Solidjs." +msgstr "" +"Seznam souborů/program WebDAV, který podporuje více úložišť a využívá Gin a " +"Solidjs." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 +msgid "AList" +msgstr "AList" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 +msgid "" +"Allow connection even if the remote TLS certificate is invalid (not " +"recommended)." +msgstr "" +"Umožnit spojení i když vzdálený TLS certifikát není platný " +"(nedoporučeno)." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 +msgid "Allow insecure connection" +msgstr "Umožnit nezabezpečené spojení" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 +msgid "Collecting data..." +msgstr "Shromažďování dat…" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 +msgid "Default webUI/WebDAV login username is %s and password is %s." +msgstr "" +"Výchozí uživatelské jméno pro přihlašování k webUI/WebDAV je %s a heslo je " +"%s." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 +msgid "Enable" +msgstr "Povolit" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 +msgid "Enable logging" +msgstr "Zaznamenávat události" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "Expecting: %s" +msgstr "Očekáváno: %s" + +#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 +msgid "Grant UCI access for luci-app-alist" +msgstr "Udělit luci-app-alist přístup do UCI nastavování" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 +msgid "Listen address" +msgstr "Adresa na které očekávat spojení" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 +msgid "Listen port" +msgstr "Port, který očekává spojení" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 +msgid "Loading..." +msgstr "Načítání…" + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 +msgid "Log" +msgstr "Záznam událostí" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 +msgid "Log file does not exist." +msgstr "Soubor se záznamem událostí neexistuje." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 +msgid "Log is empty." +msgstr "Záznam událostí je prázdný." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 +msgid "Login expiration time" +msgstr "Čas skončení platnosti přihlášení" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 +msgid "Max connections" +msgstr "Nejvýše spojení" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 +msgid "Max log age" +msgstr "Nejvyšší umožněné stáří záznamu událostí" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 +msgid "Max log backups" +msgstr "Nejvýše záloh záznamu událostí" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 +msgid "Max log size" +msgstr "Nejvyšší umožněná velikost záznamu událostí" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +msgid "NOT RUNNING" +msgstr "NESPUŠTĚNÉ" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 +msgid "Open Web Interface" +msgstr "Otevřít webové rozhraní" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +msgid "RUNNING" +msgstr "SPUŠTĚNÉ" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 +msgid "Refresh every %s seconds." +msgstr "Znovu načíst každých %s sekund." + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 +msgid "Settings" +msgstr "Nastavení" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 +msgid "The maximum days of the log file to retain." +msgstr "Nejvýše dnů uchovávání souboru se záznamem událostí." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 +msgid "" +"The maximum number of concurrent connections at the same time (0 = " +"unlimited)." +msgstr "Nejvyšší umožněný počet souběžných spojení naráz (0 = neomezeno)." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 +msgid "The maximum number of old log files to retain." +msgstr "" +"Nejvyšší umožněný počet starých souborů se záznamem událostí, které " +"uchovávat." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 +msgid "The maximum size in megabytes of the log file before it gets rotated." +msgstr "" +"Nejvyšší umožněná velikost (v megabajtech) souboru se záznamem událostí než " +"bude rotován." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 +msgid "Unknown error: %s" +msgstr "Neznámá chyba: %s" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 +msgid "User login expiration time (in hours)." +msgstr "Doba skončení platnosti přihlášení uživatele (v hodinách)." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "valid IP address" +msgstr "platná IP adresa" diff --git a/applications/luci-app-openlist/po/da/openlist.po b/applications/luci-app-openlist/po/da/openlist.po new file mode 100644 index 0000000000..3dc06861e7 --- /dev/null +++ b/applications/luci-app-openlist/po/da/openlist.po @@ -0,0 +1,160 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2024-01-25 02:53+0000\n" +"Last-Translator: drax red \n" +"Language-Team: Danish \n" +"Language: da\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.4-dev\n" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 +msgid "" +"A file list/WebDAV program that supports multiple storages, powered by Gin " +"and Solidjs." +msgstr "" +"En filliste/WebDAV program, der understøtter flere opbevaringer, drevet af " +"Gin og Solidjs." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 +msgid "AList" +msgstr "AList" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 +msgid "" +"Allow connection even if the remote TLS certificate is invalid (not " +"recommended)." +msgstr "" +"Tillad tilslutning, selvom fjern TLS-certifikatet er ugyldig ( ikke " +"anbefales)." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 +msgid "Allow insecure connection" +msgstr "Tillad usikker forbindelse" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 +msgid "Collecting data..." +msgstr "Indsamler data..." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 +msgid "Default webUI/WebDAV login username is %s and password is %s." +msgstr "Standard WebUI/WebDAV login brugernavn er %s og adgangskode er %s." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 +msgid "Enable" +msgstr "Aktiver" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 +msgid "Enable logging" +msgstr "Aktiver logning" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "Expecting: %s" +msgstr "Forventer: %s" + +#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 +msgid "Grant UCI access for luci-app-alist" +msgstr "Grant UCI adgang til luci-app-alist" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 +msgid "Listen address" +msgstr "Lytteadresse" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 +msgid "Listen port" +msgstr "Lytteport" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 +msgid "Loading..." +msgstr "Indlæser..." + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 +msgid "Log" +msgstr "Log" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 +msgid "Log file does not exist." +msgstr "Log-filen findes ikke." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 +msgid "Log is empty." +msgstr "Log er tomt." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 +msgid "Login expiration time" +msgstr "Log ind udløbsdato" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 +msgid "Max connections" +msgstr "Maks. forbindelser" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 +msgid "Max log age" +msgstr "Maks. log alder" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 +msgid "Max log backups" +msgstr "Maks. log backups" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 +msgid "Max log size" +msgstr "Maks. logstørrelse" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +msgid "NOT RUNNING" +msgstr "KØRE IKKE" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 +msgid "Open Web Interface" +msgstr "Åbn webinterface" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +msgid "RUNNING" +msgstr "KØRE" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 +msgid "Refresh every %s seconds." +msgstr "Opdater hver %s sekundt." + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 +msgid "Settings" +msgstr "Indstillinger" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 +msgid "The maximum days of the log file to retain." +msgstr "De maksimale dage af logfilen til at bevare." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 +msgid "" +"The maximum number of concurrent connections at the same time (0 = " +"unlimited)." +msgstr "Det maksimale antal samtidige forbindelser (0 = ubegrænset)." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 +msgid "The maximum number of old log files to retain." +msgstr "Det maksimale antal gamle logfiler til at bevare." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 +msgid "The maximum size in megabytes of the log file before it gets rotated." +msgstr "" +"Den maksimale størrelse i megabytes af logfilen, før den bliver roteret." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 +msgid "Unknown error: %s" +msgstr "Ukendt fejl: %s" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 +msgid "User login expiration time (in hours)." +msgstr "Brugerlogin udløbsdato (i timevis)." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "valid IP address" +msgstr "gyldig IP-adresse" diff --git a/applications/luci-app-openlist/po/de/openlist.po b/applications/luci-app-openlist/po/de/openlist.po new file mode 100644 index 0000000000..6279b89854 --- /dev/null +++ b/applications/luci-app-openlist/po/de/openlist.po @@ -0,0 +1,162 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2025-02-07 23:08+0000\n" +"Last-Translator: Ettore Atalan \n" +"Language-Team: German \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.10-dev\n" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 +msgid "" +"A file list/WebDAV program that supports multiple storages, powered by Gin " +"and Solidjs." +msgstr "" +"Ein Datei-Listen-/WebDAV-Programm, das mehrere Speicher unterstützt, " +"vorangebracht von Gin und Solidjs." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 +msgid "AList" +msgstr "AList" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 +msgid "" +"Allow connection even if the remote TLS certificate is invalid (not " +"recommended)." +msgstr "" +"Erlauben der Verbindung, auch wenn das entfernte TLS-Zertifikat ungültig ist " +"(nicht empfohlen)." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 +msgid "Allow insecure connection" +msgstr "Unsichere Verbindung zulassen" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 +msgid "Collecting data..." +msgstr "Daten werden gesammelt..." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 +msgid "Default webUI/WebDAV login username is %s and password is %s." +msgstr "" +"Der voreingestellte webUI/WebDAV-Login-Benutzername ist %s und das Passwort " +"lautet %s." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 +msgid "Enable" +msgstr "Aktivieren" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 +msgid "Enable logging" +msgstr "Protokollierung aktivieren" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "Expecting: %s" +msgstr "Erwarte: %s" + +#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 +msgid "Grant UCI access for luci-app-alist" +msgstr "Gewähre UCI Zugriff auf luci-app-alist" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 +msgid "Listen address" +msgstr "Listen-Adresse" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 +msgid "Listen port" +msgstr "Listen-Port" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 +msgid "Loading..." +msgstr "Lade ..." + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 +msgid "Log" +msgstr "Log" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 +msgid "Log file does not exist." +msgstr "Die Protokolldatei existiert nicht." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 +msgid "Log is empty." +msgstr "Das Protokoll ist leer." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 +msgid "Login expiration time" +msgstr "Login-Ablaufzeit" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 +msgid "Max connections" +msgstr "Max. Verbindungen" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 +msgid "Max log age" +msgstr "Max. Protokollalter" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 +msgid "Max log backups" +msgstr "Max. Protokollsicherungen" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 +msgid "Max log size" +msgstr "Max. Protokollgröße" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +msgid "NOT RUNNING" +msgstr "LÄUFT NICHT" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 +msgid "Open Web Interface" +msgstr "Weboberfläche öffnen" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +msgid "RUNNING" +msgstr "LÄUFT" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 +msgid "Refresh every %s seconds." +msgstr "Alle %s Sekunden aktualisieren." + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 +msgid "Settings" +msgstr "Einstellungen" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 +msgid "The maximum days of the log file to retain." +msgstr "Maximale Anzahl Tage die Protokolldatei zu behalten." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 +msgid "" +"The maximum number of concurrent connections at the same time (0 = " +"unlimited)." +msgstr "Die maximale Anzahl der gleichzeitigen Verbindungen (0 = unbegrenzt)." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 +msgid "The maximum number of old log files to retain." +msgstr "Die maximale Anzahl alter Protokolldateien zu behalten." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 +msgid "The maximum size in megabytes of the log file before it gets rotated." +msgstr "" +"Die maximale Größe in Megabytes der Protokolldatei, bevor sie rotiert wird." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 +msgid "Unknown error: %s" +msgstr "Unbekannter Fehler: %s" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 +msgid "User login expiration time (in hours)." +msgstr "Benutzer-Login-Ablaufzeit (in Stunden)." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "valid IP address" +msgstr "Gültige IP-Adresse" diff --git a/applications/luci-app-openlist/po/el/openlist.po b/applications/luci-app-openlist/po/el/openlist.po new file mode 100644 index 0000000000..4c683c3ad1 --- /dev/null +++ b/applications/luci-app-openlist/po/el/openlist.po @@ -0,0 +1,155 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2024-11-09 08:59+0000\n" +"Last-Translator: Mac Mac \n" +"Language-Team: Greek \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 5.8.2\n" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 +msgid "" +"A file list/WebDAV program that supports multiple storages, powered by Gin " +"and Solidjs." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 +msgid "AList" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 +msgid "" +"Allow connection even if the remote TLS certificate is invalid (not " +"recommended)." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 +msgid "Allow insecure connection" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 +msgid "Collecting data..." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 +msgid "Default webUI/WebDAV login username is %s and password is %s." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 +msgid "Enable" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 +msgid "Enable logging" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "Expecting: %s" +msgstr "" + +#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 +msgid "Grant UCI access for luci-app-alist" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 +msgid "Listen address" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 +msgid "Listen port" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 +msgid "Loading..." +msgstr "" + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 +msgid "Log" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 +msgid "Log file does not exist." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 +msgid "Log is empty." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 +msgid "Login expiration time" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 +msgid "Max connections" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 +msgid "Max log age" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 +msgid "Max log backups" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 +msgid "Max log size" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 +msgid "Open Web Interface" +msgstr "Άνοιγμα Ιστοσελίδας" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +msgid "RUNNING" +msgstr "ΕΚΤΕΛΕΙΤΕ" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 +msgid "Refresh every %s seconds." +msgstr "" + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 +msgid "Settings" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 +msgid "The maximum days of the log file to retain." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 +msgid "" +"The maximum number of concurrent connections at the same time (0 = " +"unlimited)." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 +msgid "The maximum number of old log files to retain." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 +msgid "The maximum size in megabytes of the log file before it gets rotated." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 +msgid "Unknown error: %s" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 +msgid "User login expiration time (in hours)." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "valid IP address" +msgstr "" diff --git a/applications/luci-app-openlist/po/es/openlist.po b/applications/luci-app-openlist/po/es/openlist.po new file mode 100644 index 0000000000..836acf4d75 --- /dev/null +++ b/applications/luci-app-openlist/po/es/openlist.po @@ -0,0 +1,162 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2025-06-02 13:01+0000\n" +"Last-Translator: Salvador Peña \n" +"Language-Team: Spanish \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.12-dev\n" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 +msgid "" +"A file list/WebDAV program that supports multiple storages, powered by Gin " +"and Solidjs." +msgstr "" +"Una lista de archivos / programa WebDAV que soporta múltiples " +"almacenamientos, impulsado por Gin y Solidjs." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 +msgid "AList" +msgstr "AList" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 +msgid "" +"Allow connection even if the remote TLS certificate is invalid (not " +"recommended)." +msgstr "" +"Permitir la conexión aunque el certificado TLS remoto no sea válido " +"(no recomendado)." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 +msgid "Allow insecure connection" +msgstr "Permitir una conexión insegura" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 +msgid "Collecting data..." +msgstr "Recopilando datos..." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 +msgid "Default webUI/WebDAV login username is %s and password is %s." +msgstr "" +"El nombre de usuario por defecto de webUI/WebDAV es %s y la contraseña es %s." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 +msgid "Enable" +msgstr "Activar" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 +msgid "Enable logging" +msgstr "Activar el registro" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "Expecting: %s" +msgstr "Esperando: %s" + +#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 +msgid "Grant UCI access for luci-app-alist" +msgstr "Conceder acceso a la UCI para luci-app-alist" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 +msgid "Listen address" +msgstr "Escuchar la dirección" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 +msgid "Listen port" +msgstr "Puerto de escucha" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 +msgid "Loading..." +msgstr "Cargando..." + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 +msgid "Log" +msgstr "Registro" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 +msgid "Log file does not exist." +msgstr "El archivo de registro no existe." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 +msgid "Log is empty." +msgstr "El registro está vacío." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 +msgid "Login expiration time" +msgstr "Hora de caducidad de la sesión" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 +msgid "Max connections" +msgstr "Conexiones máximas" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 +msgid "Max log age" +msgstr "Edad máxima del registro" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 +msgid "Max log backups" +msgstr "Máximo de copias de seguridad" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 +msgid "Max log size" +msgstr "Tamaño máximo del registro" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +msgid "NOT RUNNING" +msgstr "NO EN EJECUCIÓN" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 +msgid "Open Web Interface" +msgstr "Interfaz Open Web" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +msgid "RUNNING" +msgstr "EN EJECUCIÓN" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 +msgid "Refresh every %s seconds." +msgstr "Actualizar cada %s segundos." + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 +msgid "Settings" +msgstr "Ajustes" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 +msgid "The maximum days of the log file to retain." +msgstr "Los días máximos del archivo de registro a conservar." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 +msgid "" +"The maximum number of concurrent connections at the same time (0 = " +"unlimited)." +msgstr "" +"El número máximo de conexiones simultáneas al mismo tiempo (0 = ilimitado)." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 +msgid "The maximum number of old log files to retain." +msgstr "El número máximo de archivos de registro antiguos a conservar." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 +msgid "The maximum size in megabytes of the log file before it gets rotated." +msgstr "" +"El tamaño máximo en megabytes del archivo de registro antes de que se rote." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 +msgid "Unknown error: %s" +msgstr "Error desconocido: %s" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 +msgid "User login expiration time (in hours)." +msgstr "Tiempo de expiración del inicio de sesión del usuario (en horas)." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "valid IP address" +msgstr "dirección IP válida" diff --git a/applications/luci-app-openlist/po/fi/openlist.po b/applications/luci-app-openlist/po/fi/openlist.po new file mode 100644 index 0000000000..b92554df8e --- /dev/null +++ b/applications/luci-app-openlist/po/fi/openlist.po @@ -0,0 +1,159 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2025-05-04 15:04+0000\n" +"Last-Translator: Ricky Tigg \n" +"Language-Team: Finnish \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.12-dev\n" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 +msgid "" +"A file list/WebDAV program that supports multiple storages, powered by Gin " +"and Solidjs." +msgstr "" +"Ginin ja Solidjsin lähteenvoimainen tiedostolista-/WebDAV-ohjelma, joka " +"tukee useita tallennustiloja." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 +msgid "AList" +msgstr "AList" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 +msgid "" +"Allow connection even if the remote TLS certificate is invalid (not " +"recommended)." +msgstr "" +"Salli yhteys, vaikka etä-TLS-varmenne ei kelpaisi (ei suositella)." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 +msgid "Allow insecure connection" +msgstr "Salli suojaamaton yhteys" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 +msgid "Collecting data..." +msgstr "Kerätään tietoja..." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 +msgid "Default webUI/WebDAV login username is %s and password is %s." +msgstr "Oletuksena käytettävä webUI-/WebDAV-käyttäjänimi on %s ja salasana %s." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 +msgid "Enable" +msgstr "Ota käyttöön" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 +msgid "Enable logging" +msgstr "Ota lokiinkirjaus käyttöön" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "Expecting: %s" +msgstr "Odotettu: %s" + +#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 +msgid "Grant UCI access for luci-app-alist" +msgstr "Myönnä UCI-pääsy luci-app-alistille" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 +msgid "Listen address" +msgstr "Kuuntele osoite" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 +msgid "Listen port" +msgstr "Kuuntele portti" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 +msgid "Loading..." +msgstr "Ladataan..." + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 +msgid "Log" +msgstr "Loki" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 +msgid "Log file does not exist." +msgstr "Lokitiedostoa ei ole." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 +msgid "Log is empty." +msgstr "Loki on tyhjä." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 +msgid "Login expiration time" +msgstr "Kirjautumisen voimassaoloaika" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 +msgid "Max connections" +msgstr "Yhteyksien enimmäismäärä" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 +msgid "Max log age" +msgstr "Lokin enimmäisikä" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 +msgid "Max log backups" +msgstr "Lokin varmuuskopioiden enimmäismäärä" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 +msgid "Max log size" +msgstr "Lokin enimmäiskoko" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +msgid "NOT RUNNING" +msgstr "EI KÄYNNISSÄ" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 +msgid "Open Web Interface" +msgstr "Avoin verkkokäyttöliittymä" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +msgid "RUNNING" +msgstr "KÄYNNISSÄ" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 +msgid "Refresh every %s seconds." +msgstr "Virkistä %s sekunnin välein." + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 +msgid "Settings" +msgstr "Asetukset" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 +msgid "The maximum days of the log file to retain." +msgstr "Lokitiedoston säilytysajan päivien enimmäismäärä." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 +msgid "" +"The maximum number of concurrent connections at the same time (0 = " +"unlimited)." +msgstr "Samanaikaisten yhteyksien enimmäismäärä (0 = rajoittamaton)." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 +msgid "The maximum number of old log files to retain." +msgstr "Säilytettävien vanhojen lokitiedostojen enimmäismäärä." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 +msgid "The maximum size in megabytes of the log file before it gets rotated." +msgstr "Lokitiedoston enimmäiskoko megatavuina ennen sen kiertämistä." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 +msgid "Unknown error: %s" +msgstr "Tuntematon virhe: %s" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 +msgid "User login expiration time (in hours)." +msgstr "Käyttäjän kirjautumisen voimassaoloaika (tunteina)." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "valid IP address" +msgstr "kelvollinen IP-osoite" diff --git a/applications/luci-app-openlist/po/fr/openlist.po b/applications/luci-app-openlist/po/fr/openlist.po new file mode 100644 index 0000000000..27c9cbcf43 --- /dev/null +++ b/applications/luci-app-openlist/po/fr/openlist.po @@ -0,0 +1,159 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2025-01-20 23:30+0000\n" +"Last-Translator: Didier Martin \n" +"Language-Team: French \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 5.10-dev\n" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 +msgid "" +"A file list/WebDAV program that supports multiple storages, powered by Gin " +"and Solidjs." +msgstr "" +"Un fichier list/WebDAV program supporte le stockage multiple, exécuté par " +"Gin and Solidjs." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 +msgid "AList" +msgstr "AList" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 +msgid "" +"Allow connection even if the remote TLS certificate is invalid (not " +"recommended)." +msgstr "" +"Permet la connexion même si le certificat TLS distant est invalide " +"(non recommandé)." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 +msgid "Allow insecure connection" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 +msgid "Collecting data..." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 +msgid "Default webUI/WebDAV login username is %s and password is %s." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 +msgid "Enable" +msgstr "Activer" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 +msgid "Enable logging" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "Expecting: %s" +msgstr "" + +#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 +msgid "Grant UCI access for luci-app-alist" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 +msgid "Listen address" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 +msgid "Listen port" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 +msgid "Loading..." +msgstr "" + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 +msgid "Log" +msgstr "Journal" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 +msgid "Log file does not exist." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 +msgid "Log is empty." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 +msgid "Login expiration time" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 +msgid "Max connections" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 +msgid "Max log age" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 +msgid "Max log backups" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 +msgid "Max log size" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 +msgid "Open Web Interface" +msgstr "Ouvrir l'interface web" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +msgid "RUNNING" +msgstr "EXÉCUTANT" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 +msgid "Refresh every %s seconds." +msgstr "" + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 +msgid "Settings" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 +msgid "The maximum days of the log file to retain." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 +msgid "" +"The maximum number of concurrent connections at the same time (0 = " +"unlimited)." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 +msgid "The maximum number of old log files to retain." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 +msgid "The maximum size in megabytes of the log file before it gets rotated." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 +msgid "Unknown error: %s" +msgstr "Erreur inconnue : %s" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 +msgid "User login expiration time (in hours)." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "valid IP address" +msgstr "" diff --git a/applications/luci-app-openlist/po/ga/openlist.po b/applications/luci-app-openlist/po/ga/openlist.po new file mode 100644 index 0000000000..539e988b23 --- /dev/null +++ b/applications/luci-app-openlist/po/ga/openlist.po @@ -0,0 +1,161 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2025-05-06 05:38+0000\n" +"Last-Translator: Aindriú Mac Giolla Eoin \n" +"Language-Team: Irish \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.12-dev\n" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 +msgid "" +"A file list/WebDAV program that supports multiple storages, powered by Gin " +"and Solidjs." +msgstr "" +"Liosta comhad / clár WebDAV a thacaíonn le stóráil iolrach, faoi thiomáint " +"ag Gin agus Solidjs." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 +msgid "AList" +msgstr "AList" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 +msgid "" +"Allow connection even if the remote TLS certificate is invalid (not " +"recommended)." +msgstr "" +"Ceadaigh ceangal fiú má tá an teastas iargúlta TLS neamhbhailí (ní " +"mholtar)." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 +msgid "Allow insecure connection" +msgstr "Ceadaigh nasc neamhchinnte" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 +msgid "Collecting data..." +msgstr "Sonraí a bhailiú..." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 +msgid "Default webUI/WebDAV login username is %s and password is %s." +msgstr "" +"Is é %s ainm úsáideora logála isteach réamhshocraithe webUI/WebDAV agus is é " +"%s an pasfhocal." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 +msgid "Enable" +msgstr "Cumasaigh" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 +msgid "Enable logging" +msgstr "Cumasaigh logáil" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "Expecting: %s" +msgstr "Ag súil le: %s" + +#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 +msgid "Grant UCI access for luci-app-alist" +msgstr "Rochtain UCI a dheonú do luci-app-alist" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 +msgid "Listen address" +msgstr "Éist leis an seoladh" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 +msgid "Listen port" +msgstr "Éist port" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 +msgid "Loading..." +msgstr "Á lódáil..." + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 +msgid "Log" +msgstr "Loga" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 +msgid "Log file does not exist." +msgstr "Níl logchomhad ann." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 +msgid "Log is empty." +msgstr "Tá an logchomhad folamh." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 +msgid "Login expiration time" +msgstr "Am éaga logála isteach" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 +msgid "Max connections" +msgstr "Naisc uasta" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 +msgid "Max log age" +msgstr "Aois uasta logála" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 +msgid "Max log backups" +msgstr "Cúltacaí uasta logála" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 +msgid "Max log size" +msgstr "Uasmhéid logála" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +msgid "NOT RUNNING" +msgstr "NÍ RÚCHÁN" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 +msgid "Open Web Interface" +msgstr "Comhéadan Gréasáin Oscailte" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +msgid "RUNNING" +msgstr "REATHA" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 +msgid "Refresh every %s seconds." +msgstr "Athnuaigh gach %s soicindí." + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 +msgid "Settings" +msgstr "Socruithe" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 +msgid "The maximum days of the log file to retain." +msgstr "Na laethanta uasta den chomhad logála a choinneáil." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 +msgid "" +"The maximum number of concurrent connections at the same time (0 = " +"unlimited)." +msgstr "Líon uasta na nasc comhthráthach ag an am céanna (0 = gan teorainn)." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 +msgid "The maximum number of old log files to retain." +msgstr "Líon uasta na seanchomhaid logála le coinneáil." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 +msgid "The maximum size in megabytes of the log file before it gets rotated." +msgstr "" +"An t-uasmhéid i meigibheart an chomhaid logála sula ndéantar é a rothlú." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 +msgid "Unknown error: %s" +msgstr "Earráid anaithnid: %s" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 +msgid "User login expiration time (in hours)." +msgstr "Am éaga logála isteach úsáideora (in uaireanta)." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "valid IP address" +msgstr "seoladh IP bailí" diff --git a/applications/luci-app-openlist/po/he/openlist.po b/applications/luci-app-openlist/po/he/openlist.po new file mode 100644 index 0000000000..9a69f77d81 --- /dev/null +++ b/applications/luci-app-openlist/po/he/openlist.po @@ -0,0 +1,152 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\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" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 +msgid "" +"A file list/WebDAV program that supports multiple storages, powered by Gin " +"and Solidjs." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 +msgid "AList" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 +msgid "" +"Allow connection even if the remote TLS certificate is invalid (not " +"recommended)." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 +msgid "Allow insecure connection" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 +msgid "Collecting data..." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 +msgid "Default webUI/WebDAV login username is %s and password is %s." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 +msgid "Enable" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 +msgid "Enable logging" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "Expecting: %s" +msgstr "" + +#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 +msgid "Grant UCI access for luci-app-alist" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 +msgid "Listen address" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 +msgid "Listen port" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 +msgid "Loading..." +msgstr "" + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 +msgid "Log" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 +msgid "Log file does not exist." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 +msgid "Log is empty." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 +msgid "Login expiration time" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 +msgid "Max connections" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 +msgid "Max log age" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 +msgid "Max log backups" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 +msgid "Max log size" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 +msgid "Open Web Interface" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 +msgid "Refresh every %s seconds." +msgstr "" + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 +msgid "Settings" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 +msgid "The maximum days of the log file to retain." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 +msgid "" +"The maximum number of concurrent connections at the same time (0 = " +"unlimited)." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 +msgid "The maximum number of old log files to retain." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 +msgid "The maximum size in megabytes of the log file before it gets rotated." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 +msgid "Unknown error: %s" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 +msgid "User login expiration time (in hours)." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "valid IP address" +msgstr "" diff --git a/applications/luci-app-openlist/po/hi/openlist.po b/applications/luci-app-openlist/po/hi/openlist.po new file mode 100644 index 0000000000..6099901017 --- /dev/null +++ b/applications/luci-app-openlist/po/hi/openlist.po @@ -0,0 +1,151 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: hi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 +msgid "" +"A file list/WebDAV program that supports multiple storages, powered by Gin " +"and Solidjs." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 +msgid "AList" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 +msgid "" +"Allow connection even if the remote TLS certificate is invalid (not " +"recommended)." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 +msgid "Allow insecure connection" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 +msgid "Collecting data..." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 +msgid "Default webUI/WebDAV login username is %s and password is %s." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 +msgid "Enable" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 +msgid "Enable logging" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "Expecting: %s" +msgstr "" + +#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 +msgid "Grant UCI access for luci-app-alist" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 +msgid "Listen address" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 +msgid "Listen port" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 +msgid "Loading..." +msgstr "" + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 +msgid "Log" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 +msgid "Log file does not exist." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 +msgid "Log is empty." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 +msgid "Login expiration time" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 +msgid "Max connections" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 +msgid "Max log age" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 +msgid "Max log backups" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 +msgid "Max log size" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 +msgid "Open Web Interface" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 +msgid "Refresh every %s seconds." +msgstr "" + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 +msgid "Settings" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 +msgid "The maximum days of the log file to retain." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 +msgid "" +"The maximum number of concurrent connections at the same time (0 = " +"unlimited)." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 +msgid "The maximum number of old log files to retain." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 +msgid "The maximum size in megabytes of the log file before it gets rotated." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 +msgid "Unknown error: %s" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 +msgid "User login expiration time (in hours)." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "valid IP address" +msgstr "" diff --git a/applications/luci-app-openlist/po/hu/openlist.po b/applications/luci-app-openlist/po/hu/openlist.po new file mode 100644 index 0000000000..e856f91f89 --- /dev/null +++ b/applications/luci-app-openlist/po/hu/openlist.po @@ -0,0 +1,155 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2025-05-31 20:15+0000\n" +"Last-Translator: hmzs \n" +"Language-Team: Hungarian \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.12-dev\n" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 +msgid "" +"A file list/WebDAV program that supports multiple storages, powered by Gin " +"and Solidjs." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 +msgid "AList" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 +msgid "" +"Allow connection even if the remote TLS certificate is invalid (not " +"recommended)." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 +msgid "Allow insecure connection" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 +msgid "Collecting data..." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 +msgid "Default webUI/WebDAV login username is %s and password is %s." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 +msgid "Enable" +msgstr "Engedélyezés" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 +msgid "Enable logging" +msgstr "Naplózás engedélyezése" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "Expecting: %s" +msgstr "" + +#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 +msgid "Grant UCI access for luci-app-alist" +msgstr "UCI hozzáférés engedélyezése a luci-app-alist alkalmazásnak" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 +msgid "Listen address" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 +msgid "Listen port" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 +msgid "Loading..." +msgstr "" + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 +msgid "Log" +msgstr "Napló" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 +msgid "Log file does not exist." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 +msgid "Log is empty." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 +msgid "Login expiration time" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 +msgid "Max connections" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 +msgid "Max log age" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 +msgid "Max log backups" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 +msgid "Max log size" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 +msgid "Open Web Interface" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +msgid "RUNNING" +msgstr "FUT" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 +msgid "Refresh every %s seconds." +msgstr "" + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 +msgid "Settings" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 +msgid "The maximum days of the log file to retain." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 +msgid "" +"The maximum number of concurrent connections at the same time (0 = " +"unlimited)." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 +msgid "The maximum number of old log files to retain." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 +msgid "The maximum size in megabytes of the log file before it gets rotated." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 +msgid "Unknown error: %s" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 +msgid "User login expiration time (in hours)." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "valid IP address" +msgstr "" diff --git a/applications/luci-app-openlist/po/it/openlist.po b/applications/luci-app-openlist/po/it/openlist.po new file mode 100644 index 0000000000..5473686cc1 --- /dev/null +++ b/applications/luci-app-openlist/po/it/openlist.po @@ -0,0 +1,164 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2025-06-11 15:04+0000\n" +"Last-Translator: Random \n" +"Language-Team: Italian \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.12-dev\n" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 +msgid "" +"A file list/WebDAV program that supports multiple storages, powered by Gin " +"and Solidjs." +msgstr "" +"Un elenco di file/programma WebDAV che supporta più archivi, basato su Gin e " +"Solidjs." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 +msgid "AList" +msgstr "Un elenco" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 +msgid "" +"Allow connection even if the remote TLS certificate is invalid (not " +"recommended)." +msgstr "" +"Consenti la connessione anche se il certificato TLS remoto non è valido " +"(non consigliato)." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 +msgid "Allow insecure connection" +msgstr "Consenti connessione non sicura" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 +msgid "Collecting data..." +msgstr "Raccolta dati..." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 +msgid "Default webUI/WebDAV login username is %s and password is %s." +msgstr "" +"Il nome utente di accesso webUI/WebDAV predefinito è %s e la password è %s." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 +msgid "Enable" +msgstr "Abilitare" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 +msgid "Enable logging" +msgstr "Attiva i log" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "Expecting: %s" +msgstr "Previsto: %s" + +#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 +msgid "Grant UCI access for luci-app-alist" +msgstr "Consenti l'accesso UCI per luci-app-alist" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 +msgid "Listen address" +msgstr "Indirizzo in ascolto" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 +msgid "Listen port" +msgstr "Porta in ascolto" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 +msgid "Loading..." +msgstr "Caricamento..." + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 +msgid "Log" +msgstr "Registro" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 +msgid "Log file does not exist." +msgstr "Il file di registro non esiste." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 +msgid "Log is empty." +msgstr "Il registro è vuoto." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 +msgid "Login expiration time" +msgstr "Scadenza dell'accesso" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 +msgid "Max connections" +msgstr "Connessioni massime" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 +msgid "Max log age" +msgstr "Durata massima del registro" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 +msgid "Max log backups" +msgstr "Numero massimo di backup del registro" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 +msgid "Max log size" +msgstr "Dimensione massima del registro" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +msgid "NOT RUNNING" +msgstr "NON IN ESECUZIONE" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 +msgid "Open Web Interface" +msgstr "Apri interfaccia web" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +msgid "RUNNING" +msgstr "IN ESECUZIONE" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 +msgid "Refresh every %s seconds." +msgstr "Aggiorna ogni %s secondi." + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 +msgid "Settings" +msgstr "Impostazioni" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 +msgid "The maximum days of the log file to retain." +msgstr "Il numero massimo di giorni del file di registro da conservare." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 +msgid "" +"The maximum number of concurrent connections at the same time (0 = " +"unlimited)." +msgstr "" +"Il numero massimo di connessioni simultanee contemporaneamente (0 = " +"illimitato)." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 +msgid "The maximum number of old log files to retain." +msgstr "Il numero massimo di vecchi file di registro da conservare." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 +msgid "The maximum size in megabytes of the log file before it gets rotated." +msgstr "" +"La dimensione massima in megabyte del file di registro prima che venga " +"ruotato." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 +msgid "Unknown error: %s" +msgstr "Errore sconosciuto: %s" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 +msgid "User login expiration time (in hours)." +msgstr "Scadenza dell'accesso utente (in ore)." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "valid IP address" +msgstr "indirizzo IP valido" diff --git a/applications/luci-app-openlist/po/ja/openlist.po b/applications/luci-app-openlist/po/ja/openlist.po new file mode 100644 index 0000000000..2d309aa8fa --- /dev/null +++ b/applications/luci-app-openlist/po/ja/openlist.po @@ -0,0 +1,157 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2025-03-28 01:57+0000\n" +"Last-Translator: Monarch \n" +"Language-Team: Japanese \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.11-dev\n" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 +msgid "" +"A file list/WebDAV program that supports multiple storages, powered by Gin " +"and Solidjs." +msgstr "" +"GinとSolidjsを使用した複数のストレージをサポートする ファイルリスト/WebDAV プ" +"ログラム。" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 +msgid "AList" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 +msgid "" +"Allow connection even if the remote TLS certificate is invalid (not " +"recommended)." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 +msgid "Allow insecure connection" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 +msgid "Collecting data..." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 +msgid "Default webUI/WebDAV login username is %s and password is %s." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 +msgid "Enable" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 +msgid "Enable logging" +msgstr "ログを有効にする" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "Expecting: %s" +msgstr "" + +#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 +msgid "Grant UCI access for luci-app-alist" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 +msgid "Listen address" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 +msgid "Listen port" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 +msgid "Loading..." +msgstr "" + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 +msgid "Log" +msgstr "ログ" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 +msgid "Log file does not exist." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 +msgid "Log is empty." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 +msgid "Login expiration time" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 +msgid "Max connections" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 +msgid "Max log age" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 +msgid "Max log backups" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 +msgid "Max log size" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 +msgid "Open Web Interface" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 +msgid "Refresh every %s seconds." +msgstr "" + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 +msgid "Settings" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 +msgid "The maximum days of the log file to retain." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 +msgid "" +"The maximum number of concurrent connections at the same time (0 = " +"unlimited)." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 +msgid "The maximum number of old log files to retain." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 +msgid "The maximum size in megabytes of the log file before it gets rotated." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 +msgid "Unknown error: %s" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 +msgid "User login expiration time (in hours)." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "valid IP address" +msgstr "" diff --git a/applications/luci-app-openlist/po/ko/openlist.po b/applications/luci-app-openlist/po/ko/openlist.po new file mode 100644 index 0000000000..34e0903cf6 --- /dev/null +++ b/applications/luci-app-openlist/po/ko/openlist.po @@ -0,0 +1,155 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2025-05-06 11:54+0000\n" +"Last-Translator: Beomjun \n" +"Language-Team: Korean \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=1; plural=0;\n" +"X-Generator: Weblate 5.12-dev\n" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 +msgid "" +"A file list/WebDAV program that supports multiple storages, powered by Gin " +"and Solidjs." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 +msgid "AList" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 +msgid "" +"Allow connection even if the remote TLS certificate is invalid (not " +"recommended)." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 +msgid "Allow insecure connection" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 +msgid "Collecting data..." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 +msgid "Default webUI/WebDAV login username is %s and password is %s." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 +msgid "Enable" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 +msgid "Enable logging" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "Expecting: %s" +msgstr "" + +#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 +msgid "Grant UCI access for luci-app-alist" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 +msgid "Listen address" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 +msgid "Listen port" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 +msgid "Loading..." +msgstr "" + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 +msgid "Log" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 +msgid "Log file does not exist." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 +msgid "Log is empty." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 +msgid "Login expiration time" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 +msgid "Max connections" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 +msgid "Max log age" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 +msgid "Max log backups" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 +msgid "Max log size" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 +msgid "Open Web Interface" +msgstr "웹 인터페이스 열기" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 +msgid "Refresh every %s seconds." +msgstr "" + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 +msgid "Settings" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 +msgid "The maximum days of the log file to retain." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 +msgid "" +"The maximum number of concurrent connections at the same time (0 = " +"unlimited)." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 +msgid "The maximum number of old log files to retain." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 +msgid "The maximum size in megabytes of the log file before it gets rotated." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 +msgid "Unknown error: %s" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 +msgid "User login expiration time (in hours)." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "valid IP address" +msgstr "" diff --git a/applications/luci-app-openlist/po/lt/openlist.po b/applications/luci-app-openlist/po/lt/openlist.po new file mode 100644 index 0000000000..2252212967 --- /dev/null +++ b/applications/luci-app-openlist/po/lt/openlist.po @@ -0,0 +1,165 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2024-07-23 20:37+0000\n" +"Last-Translator: Džiugas Januševičius \n" +"Language-Team: Lithuanian \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.7-dev\n" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 +msgid "" +"A file list/WebDAV program that supports multiple storages, powered by Gin " +"and Solidjs." +msgstr "" +"Failų sąrašas/„WebDAV“ programa, kuris palaiko kelias saugyklas; veikia " +"naudojant „Gin“ ir „Solidjs“." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 +msgid "AList" +msgstr "„AList“" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 +msgid "" +"Allow connection even if the remote TLS certificate is invalid (not " +"recommended)." +msgstr "" +"Leisti prisijungimą, net jei nuotolinis „TLS“ sertifikatas yra netinkamas " +"(nerekomenduojama)." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 +msgid "Allow insecure connection" +msgstr "Leisti nesaugų prisijungimą" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 +msgid "Collecting data..." +msgstr "Renkama/-i informacija (duomenys)..." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 +msgid "Default webUI/WebDAV login username is %s and password is %s." +msgstr "" +"Numatytas „webUI/WebDAV“ prisijungimo slapyvardis/naudotojo/vartotojo vardas " +"yra – %s ir slaptažodis – %s." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 +msgid "Enable" +msgstr "Įjungti/Įgalinti" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 +msgid "Enable logging" +msgstr "Įjungti/Įgalinti žurnalinimą" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "Expecting: %s" +msgstr "Tikimasi: „%s“" + +#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 +msgid "Grant UCI access for luci-app-alist" +msgstr "Duoti „UCI“ prieigą „luci-app-alist“" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 +msgid "Listen address" +msgstr "Laukti (-iama/-s) prisijungimo/jungties ryšio adresas/-o" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 +msgid "Listen port" +msgstr "Laukti (-iama/-s) prisijungimo/jungties ryšio prievadui" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 +msgid "Loading..." +msgstr "Kraunama..." + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 +msgid "Log" +msgstr "Žurnalas" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 +msgid "Log file does not exist." +msgstr "Žurnalo failas neegzistuoja." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 +msgid "Log is empty." +msgstr "Žurnalas yra tuščias." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 +msgid "Login expiration time" +msgstr "Vartotojo/Naudotojo prisijungimo galiojimo laikas" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 +msgid "Max connections" +msgstr "Maksimalūs prisijungimai" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 +msgid "Max log age" +msgstr "Maksimalus žurnalo amžius" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 +msgid "Max log backups" +msgstr "Maksimali žurnalo atsarginių kopijų riba" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 +msgid "Max log size" +msgstr "Maksimalus žurnalo dydis" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +msgid "NOT RUNNING" +msgstr "NEVEIKIA" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 +msgid "Open Web Interface" +msgstr "Atidaryti tinklo naudotojo/vartotojo sąsają" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +msgid "RUNNING" +msgstr "VEIKIA" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 +msgid "Refresh every %s seconds." +msgstr "Atnaujinti/Įkelti iš naujo kas %s sekundę/-es/-žių." + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 +msgid "Settings" +msgstr "Nustatymai" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 +msgid "The maximum days of the log file to retain." +msgstr "Maksimalus žurnalo failo išsaugojimo/išlaikymo dienų skaičius." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 +msgid "" +"The maximum number of concurrent connections at the same time (0 = " +"unlimited)." +msgstr "" +"Maksimalus vienu metu vykstančių prisijungimų skaičius (0-is = neribotas)." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 +msgid "The maximum number of old log files to retain." +msgstr "Maksimalus seno žurnalo failų skaičius išsaugojimui/išlaikymui." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 +msgid "The maximum size in megabytes of the log file before it gets rotated." +msgstr "" +"Didžiausias žurnalo failo dydis megabaitais prieš jam atsinaujinant/" +"pakeičiant." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 +msgid "Unknown error: %s" +msgstr "Nežinoma klaida: %s" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 +msgid "User login expiration time (in hours)." +msgstr "Naudotojo/Vartotojo prisijungimo galiojimo laikas (valandomis)." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "valid IP address" +msgstr "tinkamas IP adresas" diff --git a/applications/luci-app-openlist/po/mr/openlist.po b/applications/luci-app-openlist/po/mr/openlist.po new file mode 100644 index 0000000000..ccee1292ef --- /dev/null +++ b/applications/luci-app-openlist/po/mr/openlist.po @@ -0,0 +1,151 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: mr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 +msgid "" +"A file list/WebDAV program that supports multiple storages, powered by Gin " +"and Solidjs." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 +msgid "AList" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 +msgid "" +"Allow connection even if the remote TLS certificate is invalid (not " +"recommended)." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 +msgid "Allow insecure connection" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 +msgid "Collecting data..." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 +msgid "Default webUI/WebDAV login username is %s and password is %s." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 +msgid "Enable" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 +msgid "Enable logging" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "Expecting: %s" +msgstr "" + +#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 +msgid "Grant UCI access for luci-app-alist" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 +msgid "Listen address" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 +msgid "Listen port" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 +msgid "Loading..." +msgstr "" + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 +msgid "Log" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 +msgid "Log file does not exist." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 +msgid "Log is empty." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 +msgid "Login expiration time" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 +msgid "Max connections" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 +msgid "Max log age" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 +msgid "Max log backups" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 +msgid "Max log size" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 +msgid "Open Web Interface" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 +msgid "Refresh every %s seconds." +msgstr "" + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 +msgid "Settings" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 +msgid "The maximum days of the log file to retain." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 +msgid "" +"The maximum number of concurrent connections at the same time (0 = " +"unlimited)." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 +msgid "The maximum number of old log files to retain." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 +msgid "The maximum size in megabytes of the log file before it gets rotated." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 +msgid "Unknown error: %s" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 +msgid "User login expiration time (in hours)." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "valid IP address" +msgstr "" diff --git a/applications/luci-app-openlist/po/ms/openlist.po b/applications/luci-app-openlist/po/ms/openlist.po new file mode 100644 index 0000000000..42c1fd2bf4 --- /dev/null +++ b/applications/luci-app-openlist/po/ms/openlist.po @@ -0,0 +1,155 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2025-04-25 17:47+0000\n" +"Last-Translator: Abdul Muizz Bin Abdul Jalil \n" +"Language-Team: Malay \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.12-dev\n" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 +msgid "" +"A file list/WebDAV program that supports multiple storages, powered by Gin " +"and Solidjs." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 +msgid "AList" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 +msgid "" +"Allow connection even if the remote TLS certificate is invalid (not " +"recommended)." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 +msgid "Allow insecure connection" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 +msgid "Collecting data..." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 +msgid "Default webUI/WebDAV login username is %s and password is %s." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 +msgid "Enable" +msgstr "Pemboleh" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 +msgid "Enable logging" +msgstr "Bolehkan pengelogan" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "Expecting: %s" +msgstr "" + +#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 +msgid "Grant UCI access for luci-app-alist" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 +msgid "Listen address" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 +msgid "Listen port" +msgstr "Port pendengar" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 +msgid "Loading..." +msgstr "" + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 +msgid "Log" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 +msgid "Log file does not exist." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 +msgid "Log is empty." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 +msgid "Login expiration time" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 +msgid "Max connections" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 +msgid "Max log age" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 +msgid "Max log backups" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 +msgid "Max log size" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 +msgid "Open Web Interface" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 +msgid "Refresh every %s seconds." +msgstr "" + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 +msgid "Settings" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 +msgid "The maximum days of the log file to retain." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 +msgid "" +"The maximum number of concurrent connections at the same time (0 = " +"unlimited)." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 +msgid "The maximum number of old log files to retain." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 +msgid "The maximum size in megabytes of the log file before it gets rotated." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 +msgid "Unknown error: %s" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 +msgid "User login expiration time (in hours)." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "valid IP address" +msgstr "" diff --git a/applications/luci-app-openlist/po/nb_NO/openlist.po b/applications/luci-app-openlist/po/nb_NO/openlist.po new file mode 100644 index 0000000000..39498a2435 --- /dev/null +++ b/applications/luci-app-openlist/po/nb_NO/openlist.po @@ -0,0 +1,155 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2025-03-14 08:43+0000\n" +"Last-Translator: Lasse Skogland \n" +"Language-Team: Norwegian Bokmål \n" +"Language: nb_NO\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.11-dev\n" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 +msgid "" +"A file list/WebDAV program that supports multiple storages, powered by Gin " +"and Solidjs." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 +msgid "AList" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 +msgid "" +"Allow connection even if the remote TLS certificate is invalid (not " +"recommended)." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 +msgid "Allow insecure connection" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 +msgid "Collecting data..." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 +msgid "Default webUI/WebDAV login username is %s and password is %s." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 +msgid "Enable" +msgstr "Skru på" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 +msgid "Enable logging" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "Expecting: %s" +msgstr "" + +#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 +msgid "Grant UCI access for luci-app-alist" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 +msgid "Listen address" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 +msgid "Listen port" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 +msgid "Loading..." +msgstr "" + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 +msgid "Log" +msgstr "Logg" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 +msgid "Log file does not exist." +msgstr "Loggfilen finnes ikke." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 +msgid "Log is empty." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 +msgid "Login expiration time" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 +msgid "Max connections" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 +msgid "Max log age" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 +msgid "Max log backups" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 +msgid "Max log size" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +msgid "NOT RUNNING" +msgstr "Kjører ikke" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 +msgid "Open Web Interface" +msgstr "Åpne vev-grensesnitt" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +msgid "RUNNING" +msgstr "KJØRER" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 +msgid "Refresh every %s seconds." +msgstr "" + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 +msgid "Settings" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 +msgid "The maximum days of the log file to retain." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 +msgid "" +"The maximum number of concurrent connections at the same time (0 = " +"unlimited)." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 +msgid "The maximum number of old log files to retain." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 +msgid "The maximum size in megabytes of the log file before it gets rotated." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 +msgid "Unknown error: %s" +msgstr "Ukjent feil: %s" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 +msgid "User login expiration time (in hours)." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "valid IP address" +msgstr "" diff --git a/applications/luci-app-openlist/po/nl/openlist.po b/applications/luci-app-openlist/po/nl/openlist.po new file mode 100644 index 0000000000..9d465d7c50 --- /dev/null +++ b/applications/luci-app-openlist/po/nl/openlist.po @@ -0,0 +1,160 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2025-01-22 05:53+0000\n" +"Last-Translator: Robin \n" +"Language-Team: Dutch \n" +"Language: nl\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.10-dev\n" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 +msgid "" +"A file list/WebDAV program that supports multiple storages, powered by Gin " +"and Solidjs." +msgstr "" +"Een bestandenlijst/WebDAV programma dat meerdere opslag locaties toestaat, " +"door Gin en Solidjs." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 +msgid "AList" +msgstr "ALijst" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 +msgid "" +"Allow connection even if the remote TLS certificate is invalid (not " +"recommended)." +msgstr "" +"Sta de verbinding toe, zelfs als het externe TLS certificaat niet meer " +"geldig is\n" +"(niet aan te raden !)" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 +msgid "Allow insecure connection" +msgstr "Sta onbeveiligde verbindingen toe" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 +msgid "Collecting data..." +msgstr "Data aan het verzamelen..." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 +msgid "Default webUI/WebDAV login username is %s and password is %s." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 +msgid "Enable" +msgstr "Inschakelen" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 +msgid "Enable logging" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "Expecting: %s" +msgstr "" + +#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 +msgid "Grant UCI access for luci-app-alist" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 +msgid "Listen address" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 +msgid "Listen port" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 +msgid "Loading..." +msgstr "" + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 +msgid "Log" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 +msgid "Log file does not exist." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 +msgid "Log is empty." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 +msgid "Login expiration time" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 +msgid "Max connections" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 +msgid "Max log age" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 +msgid "Max log backups" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 +msgid "Max log size" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 +msgid "Open Web Interface" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 +msgid "Refresh every %s seconds." +msgstr "" + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 +msgid "Settings" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 +msgid "The maximum days of the log file to retain." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 +msgid "" +"The maximum number of concurrent connections at the same time (0 = " +"unlimited)." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 +msgid "The maximum number of old log files to retain." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 +msgid "The maximum size in megabytes of the log file before it gets rotated." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 +msgid "Unknown error: %s" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 +msgid "User login expiration time (in hours)." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "valid IP address" +msgstr "" diff --git a/applications/luci-app-openlist/po/pl/openlist.po b/applications/luci-app-openlist/po/pl/openlist.po new file mode 100644 index 0000000000..c78f9f8be6 --- /dev/null +++ b/applications/luci-app-openlist/po/pl/openlist.po @@ -0,0 +1,162 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2024-04-22 22:21+0000\n" +"Last-Translator: Matthaiks \n" +"Language-Team: Polish \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.5-dev\n" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 +msgid "" +"A file list/WebDAV program that supports multiple storages, powered by Gin " +"and Solidjs." +msgstr "" +"Program listy plików/WebDAV obsługujący wiele magazynów, napędzany przez Gin " +"i Solidjs." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 +msgid "AList" +msgstr "AList" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 +msgid "" +"Allow connection even if the remote TLS certificate is invalid (not " +"recommended)." +msgstr "" +"Zezwalaj na połączenie, nawet jeśli zdalny certyfikat TLS jest nieprawidłowy " +"(niezalecane)." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 +msgid "Allow insecure connection" +msgstr "Zezwalaj na niezabezpieczone połączenie" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 +msgid "Collecting data..." +msgstr "Trwa zbieranie danych..." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 +msgid "Default webUI/WebDAV login username is %s and password is %s." +msgstr "Domyślna nazwa użytkownika webUI/WebDAV to %s, a hasło to %s." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 +msgid "Enable" +msgstr "Włącz" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 +msgid "Enable logging" +msgstr "Włącz rejestrowanie" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "Expecting: %s" +msgstr "Zaleca się użyć: %s" + +#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 +msgid "Grant UCI access for luci-app-alist" +msgstr "Przyznaj luci-app-alist dostęp do UCI" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 +msgid "Listen address" +msgstr "Adres nasłuchiwania" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 +msgid "Listen port" +msgstr "Port nasłuchiwania" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 +msgid "Loading..." +msgstr "Ładowanie..." + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 +msgid "Log" +msgstr "Dziennik" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 +msgid "Log file does not exist." +msgstr "Plik dziennika nie istnieje." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 +msgid "Log is empty." +msgstr "Dziennik jest pusty." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 +msgid "Login expiration time" +msgstr "Czas ważności logowania" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 +msgid "Max connections" +msgstr "Maksymalna liczba połączeń" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 +msgid "Max log age" +msgstr "Maksymalny wiek dziennika" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 +msgid "Max log backups" +msgstr "Maksymalna liczba kopii zapasowych dziennika" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 +msgid "Max log size" +msgstr "Maksymalny rozmiar dziennika" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +msgid "NOT RUNNING" +msgstr "NIEURUCHOMIONE" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 +msgid "Open Web Interface" +msgstr "Otwórz interfejs WWW" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +msgid "RUNNING" +msgstr "URUCHOMIONE" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 +msgid "Refresh every %s seconds." +msgstr "Odświeżaj co %s sekund(y)." + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 +msgid "Settings" +msgstr "Ustawienia" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 +msgid "The maximum days of the log file to retain." +msgstr "Maksymalna liczba dni przechowywania pliku dziennika." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 +msgid "" +"The maximum number of concurrent connections at the same time (0 = " +"unlimited)." +msgstr "" +"Maksymalna liczba jednoczesnych połączeń w tym samym czasie (0 = " +"nieograniczona)." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 +msgid "The maximum number of old log files to retain." +msgstr "Maksymalna liczba starych plików dziennika do zachowania." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 +msgid "The maximum size in megabytes of the log file before it gets rotated." +msgstr "Maksymalny rozmiar pliku dziennika w megabajtach przed jego rotacją." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 +msgid "Unknown error: %s" +msgstr "Nieznany błąd: %s" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 +msgid "User login expiration time (in hours)." +msgstr "Czas ważności loginu użytkownika (w godzinach)." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "valid IP address" +msgstr "prawidłowy adres IP" diff --git a/applications/luci-app-openlist/po/pt/openlist.po b/applications/luci-app-openlist/po/pt/openlist.po new file mode 100644 index 0000000000..733e8a0238 --- /dev/null +++ b/applications/luci-app-openlist/po/pt/openlist.po @@ -0,0 +1,161 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2025-04-16 15:56+0000\n" +"Last-Translator: ssantos \n" +"Language-Team: Portuguese \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.11.1-dev\n" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 +msgid "" +"A file list/WebDAV program that supports multiple storages, powered by Gin " +"and Solidjs." +msgstr "" +"Uma lista de ficheiros / programa WebDAV que suporta armazenamento múltiplo, " +"utilizando Gin e Solidjs." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 +msgid "AList" +msgstr "AList" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 +msgid "" +"Allow connection even if the remote TLS certificate is invalid (not " +"recommended)." +msgstr "" +"Permitir a ligação mesmo se o certificado TLS remoto for inválido " +"(não recomendado)." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 +msgid "Allow insecure connection" +msgstr "Permitir ligação insegura" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 +msgid "Collecting data..." +msgstr "Recolhendo dados..." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 +msgid "Default webUI/WebDAV login username is %s and password is %s." +msgstr "O nome de utilizador padrão da web/WebDAV é %s, e a senha é %s." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 +msgid "Enable" +msgstr "Ativar" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 +msgid "Enable logging" +msgstr "Ativar registos" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "Expecting: %s" +msgstr "Esperando: %s" + +#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 +msgid "Grant UCI access for luci-app-alist" +msgstr "Conceder UCI acesso ao luci-app-alist" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 +msgid "Listen address" +msgstr "Endereço de escuta" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 +msgid "Listen port" +msgstr "Porto de escuta" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 +msgid "Loading..." +msgstr "A carregar..." + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 +msgid "Log" +msgstr "Registo" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 +msgid "Log file does not exist." +msgstr "Ficheiro de registo não existente." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 +msgid "Log is empty." +msgstr "O registo está vazio." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 +msgid "Login expiration time" +msgstr "Tempo de expiração do login" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 +msgid "Max connections" +msgstr "Conexões máximas" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 +msgid "Max log age" +msgstr "Idade máxima do registo" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 +msgid "Max log backups" +msgstr "Backup máximo do registo" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 +msgid "Max log size" +msgstr "Tamanho máximo do registo" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +msgid "NOT RUNNING" +msgstr "NÃO ESTÁ EM EXECUÇÃO" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 +msgid "Open Web Interface" +msgstr "Abrir Interface Web" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +msgid "RUNNING" +msgstr "EM EXECUÇÃO" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 +msgid "Refresh every %s seconds." +msgstr "Atualizar a cada %s segundos." + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 +msgid "Settings" +msgstr "Configurações" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 +msgid "The maximum days of the log file to retain." +msgstr "Dias máximos do ficheiro de registo a reter." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 +msgid "" +"The maximum number of concurrent connections at the same time (0 = " +"unlimited)." +msgstr "" +"A quantidade máxima de conexões simultâneas ao mesmo tempo (0 = ilimitado)." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 +msgid "The maximum number of old log files to retain." +msgstr "A quantidade máxima de ficheiros de registo antigos a reter." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 +msgid "The maximum size in megabytes of the log file before it gets rotated." +msgstr "" +"O tamanho máximo em megabytes do ficheiro de registo antes de ser girado." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 +msgid "Unknown error: %s" +msgstr "Erro desconhecido: %s" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 +msgid "User login expiration time (in hours)." +msgstr "Tempo de expiração do login do utilizador (em horas)." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "valid IP address" +msgstr "endereço IP válido" diff --git a/applications/luci-app-openlist/po/pt_BR/openlist.po b/applications/luci-app-openlist/po/pt_BR/openlist.po new file mode 100644 index 0000000000..948e388768 --- /dev/null +++ b/applications/luci-app-openlist/po/pt_BR/openlist.po @@ -0,0 +1,162 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2025-04-30 07:12+0000\n" +"Last-Translator: Janderson Vieira Santos \n" +"Language-Team: Portuguese (Brazil) \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.12-dev\n" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 +msgid "" +"A file list/WebDAV program that supports multiple storages, powered by Gin " +"and Solidjs." +msgstr "" +"Um programa de lista de arquivos/WebDAV que suporta múltiplos " +"armazenamentos, alimentado por Gin e Solidjs." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 +msgid "AList" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 +msgid "" +"Allow connection even if the remote TLS certificate is invalid (not " +"recommended)." +msgstr "" +"Permitir conexão mesmo que o certificado TLS remoto seja inválido " +"(não recomendado)." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 +msgid "Allow insecure connection" +msgstr "Permitir conexão insegura" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 +msgid "Collecting data..." +msgstr "Coletando dados..." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 +msgid "Default webUI/WebDAV login username is %s and password is %s." +msgstr "O nome de usuário padrão de login da webUI/WebDAV é %s e a senha é %s." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 +msgid "Enable" +msgstr "Habilitar" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 +msgid "Enable logging" +msgstr "Ativar registro de logs" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "Expecting: %s" +msgstr "Esperando: %s" + +#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 +msgid "Grant UCI access for luci-app-alist" +msgstr "Conceder acesso UCI para luci-app-alist" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 +msgid "Listen address" +msgstr "Endereço de escuta" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 +msgid "Listen port" +msgstr "Porta de escuta" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 +msgid "Loading..." +msgstr "Carregando..." + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 +msgid "Log" +msgstr "Registro" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 +msgid "Log file does not exist." +msgstr "Arquivo de log não existe." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 +msgid "Log is empty." +msgstr "O registro está vazio" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 +msgid "Login expiration time" +msgstr "Tempo de expiração do login" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 +msgid "Max connections" +msgstr "Conexões Máximas" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 +msgid "Max log age" +msgstr "Idade máxima do registro" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 +msgid "Max log backups" +msgstr "Backup máximo de registro" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 +msgid "Max log size" +msgstr "Tamanho máximo do registro" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +msgid "NOT RUNNING" +msgstr "NÃO ESTÁ EM EXECUÇÃO" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 +msgid "Open Web Interface" +msgstr "Abrir interface Web" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +msgid "RUNNING" +msgstr "EM EXECUÇÃO" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 +msgid "Refresh every %s seconds." +msgstr "Atualize a cada %s segundos." + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 +msgid "Settings" +msgstr "Configurações" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 +msgid "The maximum days of the log file to retain." +msgstr "O número máximo de dias para manter o arquivo de registro." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 +msgid "" +"The maximum number of concurrent connections at the same time (0 = " +"unlimited)." +msgstr "" +"O número máximo de conexões simultâneas ao mesmo tempo (0 = ilimitado)." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 +msgid "The maximum number of old log files to retain." +msgstr "O número máximo de arquivos de registro antigos a serem retidos." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 +msgid "The maximum size in megabytes of the log file before it gets rotated." +msgstr "" +"O tamanho máximo em megabytes do arquivo de registro antes de ser " +"substituído." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 +msgid "Unknown error: %s" +msgstr "Erro desconhecido: %s" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 +msgid "User login expiration time (in hours)." +msgstr "Tempo até a expiração do login de usuário (em horas)." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "valid IP address" +msgstr "endereço IP válido" diff --git a/applications/luci-app-openlist/po/ro/openlist.po b/applications/luci-app-openlist/po/ro/openlist.po new file mode 100644 index 0000000000..0f53d69d31 --- /dev/null +++ b/applications/luci-app-openlist/po/ro/openlist.po @@ -0,0 +1,158 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2025-06-20 21:40+0000\n" +"Last-Translator: CRISTIAN ANDREI \n" +"Language-Team: Romanian \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 5.13-dev\n" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 +msgid "" +"A file list/WebDAV program that supports multiple storages, powered by Gin " +"and Solidjs." +msgstr "" +"Un program de listă de fișiere/WebDAV care suportă mai multe tipuri de " +"stocare, bazat pe Gin și Solidjs." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 +msgid "AList" +msgstr "ListaA" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 +msgid "" +"Allow connection even if the remote TLS certificate is invalid (not " +"recommended)." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 +msgid "Allow insecure connection" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 +msgid "Collecting data..." +msgstr "Colectare date..." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 +msgid "Default webUI/WebDAV login username is %s and password is %s." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 +msgid "Enable" +msgstr "Permite" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 +msgid "Enable logging" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "Expecting: %s" +msgstr "" + +#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 +msgid "Grant UCI access for luci-app-alist" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 +msgid "Listen address" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 +msgid "Listen port" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 +msgid "Loading..." +msgstr "" + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 +msgid "Log" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 +msgid "Log file does not exist." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 +msgid "Log is empty." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 +msgid "Login expiration time" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 +msgid "Max connections" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 +msgid "Max log age" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 +msgid "Max log backups" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 +msgid "Max log size" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 +msgid "Open Web Interface" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 +msgid "Refresh every %s seconds." +msgstr "" + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 +msgid "Settings" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 +msgid "The maximum days of the log file to retain." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 +msgid "" +"The maximum number of concurrent connections at the same time (0 = " +"unlimited)." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 +msgid "The maximum number of old log files to retain." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 +msgid "The maximum size in megabytes of the log file before it gets rotated." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 +msgid "Unknown error: %s" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 +msgid "User login expiration time (in hours)." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "valid IP address" +msgstr "" diff --git a/applications/luci-app-openlist/po/ru/openlist.po b/applications/luci-app-openlist/po/ru/openlist.po new file mode 100644 index 0000000000..4e82adf9fc --- /dev/null +++ b/applications/luci-app-openlist/po/ru/openlist.po @@ -0,0 +1,160 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2025-05-17 10:22+0000\n" +"Last-Translator: SnIPeRSnIPeR \n" +"Language-Team: Russian \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.12-dev\n" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 +msgid "" +"A file list/WebDAV program that supports multiple storages, powered by Gin " +"and Solidjs." +msgstr "" +"Программа для работы со списками файлов/WebDAV, поддерживающая несколько " +"хранилищ, работающая на базе Gin и Solidjs." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 +msgid "AList" +msgstr "AList" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 +msgid "" +"Allow connection even if the remote TLS certificate is invalid (not " +"recommended)." +msgstr "" +"Разрешить соединение даже если TLS-сертификат удалённого хоста неверный " +"(Не рекомендуется)." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 +msgid "Allow insecure connection" +msgstr "Разрешить небезопасное соединение" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 +msgid "Collecting data..." +msgstr "Сбор данных..." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 +msgid "Default webUI/WebDAV login username is %s and password is %s." +msgstr "По умолчанию webUI/WebDAV имя пользователя %s и пароль %s." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 +msgid "Enable" +msgstr "Включить" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 +msgid "Enable logging" +msgstr "Включить ведение журнала" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "Expecting: %s" +msgstr "Ожидание: %s" + +#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 +msgid "Grant UCI access for luci-app-alist" +msgstr "Предоставьте доступ UCI для luci-app-alist" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 +msgid "Listen address" +msgstr "IP-адрес для прослушивания" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 +msgid "Listen port" +msgstr "Порт для прослушивания" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 +msgid "Loading..." +msgstr "Загружается…" + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 +msgid "Log" +msgstr "Журнал" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 +msgid "Log file does not exist." +msgstr "Файл журнала не существует." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 +msgid "Log is empty." +msgstr "Журнал пустой." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 +msgid "Login expiration time" +msgstr "Воемя истечения сессии входа" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 +msgid "Max connections" +msgstr "Максимум соединений" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 +msgid "Max log age" +msgstr "Максимальный возраст журнала" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 +msgid "Max log backups" +msgstr "Максимальное резервное копирование журнала" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 +msgid "Max log size" +msgstr "Максимальный размер журнала" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +msgid "NOT RUNNING" +msgstr "НЕ ЗАПУЩЕНО" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 +msgid "Open Web Interface" +msgstr "Открытый веб-интерфейс" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +msgid "RUNNING" +msgstr "ЗАПУЩЕНО" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 +msgid "Refresh every %s seconds." +msgstr "Обновлять каждые %s секунд." + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 +msgid "Settings" +msgstr "Настройки" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 +msgid "The maximum days of the log file to retain." +msgstr "Дней до ротации журнала." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 +msgid "" +"The maximum number of concurrent connections at the same time (0 = " +"unlimited)." +msgstr "Максимальное количество одновременных соединений (0 = неограниченно)." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 +msgid "The maximum number of old log files to retain." +msgstr "Максимальное число старых файлов журнала которые оставить." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 +msgid "The maximum size in megabytes of the log file before it gets rotated." +msgstr "Максимальный размер в мегабайтах файла журнала до его ротации." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 +msgid "Unknown error: %s" +msgstr "Неизвестная ошибка: %s" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 +msgid "User login expiration time (in hours)." +msgstr "Время истечения пользовательской сессии (часов)." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "valid IP address" +msgstr "верный IP-адрес" diff --git a/applications/luci-app-openlist/po/sk/openlist.po b/applications/luci-app-openlist/po/sk/openlist.po new file mode 100644 index 0000000000..341403763a --- /dev/null +++ b/applications/luci-app-openlist/po/sk/openlist.po @@ -0,0 +1,152 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\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" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 +msgid "" +"A file list/WebDAV program that supports multiple storages, powered by Gin " +"and Solidjs." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 +msgid "AList" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 +msgid "" +"Allow connection even if the remote TLS certificate is invalid (not " +"recommended)." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 +msgid "Allow insecure connection" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 +msgid "Collecting data..." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 +msgid "Default webUI/WebDAV login username is %s and password is %s." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 +msgid "Enable" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 +msgid "Enable logging" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "Expecting: %s" +msgstr "" + +#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 +msgid "Grant UCI access for luci-app-alist" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 +msgid "Listen address" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 +msgid "Listen port" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 +msgid "Loading..." +msgstr "" + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 +msgid "Log" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 +msgid "Log file does not exist." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 +msgid "Log is empty." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 +msgid "Login expiration time" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 +msgid "Max connections" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 +msgid "Max log age" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 +msgid "Max log backups" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 +msgid "Max log size" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 +msgid "Open Web Interface" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 +msgid "Refresh every %s seconds." +msgstr "" + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 +msgid "Settings" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 +msgid "The maximum days of the log file to retain." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 +msgid "" +"The maximum number of concurrent connections at the same time (0 = " +"unlimited)." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 +msgid "The maximum number of old log files to retain." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 +msgid "The maximum size in megabytes of the log file before it gets rotated." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 +msgid "Unknown error: %s" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 +msgid "User login expiration time (in hours)." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "valid IP address" +msgstr "" diff --git a/applications/luci-app-openlist/po/sv/openlist.po b/applications/luci-app-openlist/po/sv/openlist.po new file mode 100644 index 0000000000..da5d47dbdf --- /dev/null +++ b/applications/luci-app-openlist/po/sv/openlist.po @@ -0,0 +1,157 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2025-03-03 22:06+0000\n" +"Last-Translator: Kristoffer Grundström \n" +"Language-Team: Swedish \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.10.3-dev\n" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 +msgid "" +"A file list/WebDAV program that supports multiple storages, powered by Gin " +"and Solidjs." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 +msgid "AList" +msgstr "AList" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 +msgid "" +"Allow connection even if the remote TLS certificate is invalid (not " +"recommended)." +msgstr "" +"Tillåt anslutning även om det externa TLS-certifikatet är ogiltigt " +"(rekommenderas inte)." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 +msgid "Allow insecure connection" +msgstr "Tillåt osäker anslutning" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 +msgid "Collecting data..." +msgstr "Samlar in data..." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 +msgid "Default webUI/WebDAV login username is %s and password is %s." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 +msgid "Enable" +msgstr "Aktivera" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 +msgid "Enable logging" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "Expecting: %s" +msgstr "" + +#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 +msgid "Grant UCI access for luci-app-alist" +msgstr "Godkänn UCI-åtkomst för luci-app-alist" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 +msgid "Listen address" +msgstr "Lyssningsadress" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 +msgid "Listen port" +msgstr "Lyssningsport" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 +msgid "Loading..." +msgstr "Laddar..." + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 +msgid "Log" +msgstr "Logg" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 +msgid "Log file does not exist." +msgstr "Logg-filen existerar inte." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 +msgid "Log is empty." +msgstr "Loggen är tom." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 +msgid "Login expiration time" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 +msgid "Max connections" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 +msgid "Max log age" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 +msgid "Max log backups" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 +msgid "Max log size" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +msgid "NOT RUNNING" +msgstr "KÖRS INTE" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 +msgid "Open Web Interface" +msgstr "Öppna webbgränssnittet" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +msgid "RUNNING" +msgstr "KÖRS" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 +msgid "Refresh every %s seconds." +msgstr "" + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 +msgid "Settings" +msgstr "Inställningar" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 +msgid "The maximum days of the log file to retain." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 +msgid "" +"The maximum number of concurrent connections at the same time (0 = " +"unlimited)." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 +msgid "The maximum number of old log files to retain." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 +msgid "The maximum size in megabytes of the log file before it gets rotated." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 +msgid "Unknown error: %s" +msgstr "Okänt fel: %s" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 +msgid "User login expiration time (in hours)." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "valid IP address" +msgstr "" diff --git a/applications/luci-app-openlist/po/templates/openlist.pot b/applications/luci-app-openlist/po/templates/openlist.pot new file mode 100644 index 0000000000..5e04e666bd --- /dev/null +++ b/applications/luci-app-openlist/po/templates/openlist.pot @@ -0,0 +1,144 @@ +msgid "" +msgstr "Content-Type: text/plain; charset=UTF-8" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 +msgid "" +"A file list/WebDAV program that supports multiple storages, powered by Gin " +"and Solidjs." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 +msgid "AList" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 +msgid "" +"Allow connection even if the remote TLS certificate is invalid (not " +"recommended)." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 +msgid "Allow insecure connection" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 +msgid "Collecting data..." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 +msgid "Default webUI/WebDAV login username is %s and password is %s." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 +msgid "Enable" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 +msgid "Enable logging" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "Expecting: %s" +msgstr "" + +#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 +msgid "Grant UCI access for luci-app-alist" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 +msgid "Listen address" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 +msgid "Listen port" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 +msgid "Loading..." +msgstr "" + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 +msgid "Log" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 +msgid "Log file does not exist." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 +msgid "Log is empty." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 +msgid "Login expiration time" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 +msgid "Max connections" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 +msgid "Max log age" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 +msgid "Max log backups" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 +msgid "Max log size" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 +msgid "Open Web Interface" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 +msgid "Refresh every %s seconds." +msgstr "" + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 +msgid "Settings" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 +msgid "The maximum days of the log file to retain." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 +msgid "" +"The maximum number of concurrent connections at the same time (0 = " +"unlimited)." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 +msgid "The maximum number of old log files to retain." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 +msgid "The maximum size in megabytes of the log file before it gets rotated." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 +msgid "Unknown error: %s" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 +msgid "User login expiration time (in hours)." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "valid IP address" +msgstr "" diff --git a/applications/luci-app-openlist/po/tr/openlist.po b/applications/luci-app-openlist/po/tr/openlist.po new file mode 100644 index 0000000000..7e344be908 --- /dev/null +++ b/applications/luci-app-openlist/po/tr/openlist.po @@ -0,0 +1,160 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2024-08-17 13:21+0000\n" +"Last-Translator: Oğuz Ersen \n" +"Language-Team: Turkish \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=2; plural=n != 1;\n" +"X-Generator: Weblate 5.7\n" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 +msgid "" +"A file list/WebDAV program that supports multiple storages, powered by Gin " +"and Solidjs." +msgstr "" +"Gin ve Solidjs tarafından desteklenen, birden fazla depolamayı destekleyen " +"bir dosya listesi/WebDAV programı." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 +msgid "AList" +msgstr "Liste" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 +msgid "" +"Allow connection even if the remote TLS certificate is invalid (not " +"recommended)." +msgstr "" +"Uzak TLS sertifikası geçersiz olsa bile bağlantıya izin ver " +"(önerilmez)." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 +msgid "Allow insecure connection" +msgstr "Güvensiz bağlantıya izin ver" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 +msgid "Collecting data..." +msgstr "Veriler toplanıyor..." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 +msgid "Default webUI/WebDAV login username is %s and password is %s." +msgstr "Varsayılan webUI/WebDAV oturum açma kullanıcı adı %s ve parola %s'dir." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 +msgid "Enable" +msgstr "Etkinleştir" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 +msgid "Enable logging" +msgstr "Günlük kaydını etkinleştir" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "Expecting: %s" +msgstr "Beklenen: %s" + +#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 +msgid "Grant UCI access for luci-app-alist" +msgstr "luci-app-alist için UCI erişim izni verin" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 +msgid "Listen address" +msgstr "Adres dinle" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 +msgid "Listen port" +msgstr "Dinleme bağlantı noktası" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 +msgid "Loading..." +msgstr "Yükleniyor..." + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 +msgid "Log" +msgstr "Günlük" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 +msgid "Log file does not exist." +msgstr "Günlük dosyası mevcut değil." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 +msgid "Log is empty." +msgstr "Günlük boş." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 +msgid "Login expiration time" +msgstr "Oturum açma sona erme süresi" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 +msgid "Max connections" +msgstr "Maksimum bağlantılar" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 +msgid "Max log age" +msgstr "Maksimum günlük yaşı" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 +msgid "Max log backups" +msgstr "Maksimum günlük yedeklemeleri" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 +msgid "Max log size" +msgstr "Maksimum günlük boyutu" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +msgid "NOT RUNNING" +msgstr "ÇALIŞMIYOR" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 +msgid "Open Web Interface" +msgstr "Web Arayüzünü Aç" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +msgid "RUNNING" +msgstr "ÇALIŞIYOR" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 +msgid "Refresh every %s seconds." +msgstr "Her %s saniyede bir yenileyin." + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 +msgid "Settings" +msgstr "Ayarlar" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 +msgid "The maximum days of the log file to retain." +msgstr "Günlük dosyasının saklanacağı maksimum gün sayısı." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 +msgid "" +"The maximum number of concurrent connections at the same time (0 = " +"unlimited)." +msgstr "Aynı anda eşzamanlı bağlantıların maksimum sayısı (0 = sınırsız)." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 +msgid "The maximum number of old log files to retain." +msgstr "Saklanacak maksimum eski günlük dosyası sayısı." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 +msgid "The maximum size in megabytes of the log file before it gets rotated." +msgstr "" +"Döndürülmeden önce günlük dosyasının megabayt cinsinden maksimum boyutu." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 +msgid "Unknown error: %s" +msgstr "Bilinmeyen hata: %s" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 +msgid "User login expiration time (in hours)." +msgstr "Kullanıcı oturum açma sona erme süresi (saat olarak)." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "valid IP address" +msgstr "geçerli IP adresi" diff --git a/applications/luci-app-openlist/po/uk/openlist.po b/applications/luci-app-openlist/po/uk/openlist.po new file mode 100644 index 0000000000..3f4cb590f5 --- /dev/null +++ b/applications/luci-app-openlist/po/uk/openlist.po @@ -0,0 +1,164 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2025-03-09 18:16+0000\n" +"Last-Translator: Максим Горпиніч \n" +"Language-Team: Ukrainian \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.10.3-dev\n" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 +msgid "" +"A file list/WebDAV program that supports multiple storages, powered by Gin " +"and Solidjs." +msgstr "" +"Список файлів/програма WebDAV, яка підтримує кілька сховищ на базі Gin і " +"Solidjs." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 +msgid "AList" +msgstr "AList" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 +msgid "" +"Allow connection even if the remote TLS certificate is invalid (not " +"recommended)." +msgstr "" +"Дозволяти підключення, навіть якщо віддалений сертифікат TLS є недійсним " +"(не рекомендується)." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 +msgid "Allow insecure connection" +msgstr "Дозволити незахищене з'єднання" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 +msgid "Collecting data..." +msgstr "Збір даних..." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 +msgid "Default webUI/WebDAV login username is %s and password is %s." +msgstr "" +"За замовчуванням ім'я користувача для входу в webUI/WebDAV - %s, пароль - %s." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 +msgid "Enable" +msgstr "Увімкнути" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 +msgid "Enable logging" +msgstr "Увімкнути журналювання" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "Expecting: %s" +msgstr "Очікується: %s" + +#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 +msgid "Grant UCI access for luci-app-alist" +msgstr "Надати доступ до UCI для luci-app-alist" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 +msgid "Listen address" +msgstr "Адреса для прослуховування" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 +msgid "Listen port" +msgstr "Порт прослуховування" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 +msgid "Loading..." +msgstr "Завантаження..." + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 +msgid "Log" +msgstr "Журнал" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 +msgid "Log file does not exist." +msgstr "Файл журналу не існує." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 +msgid "Log is empty." +msgstr "Журнал порожній." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 +msgid "Login expiration time" +msgstr "Термін дії логіну" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 +msgid "Max connections" +msgstr "Максимум з'єднань" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 +msgid "Max log age" +msgstr "Максимальний вік журналу" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 +msgid "Max log backups" +msgstr "Максимальна кількість резервних копій журналу" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 +msgid "Max log size" +msgstr "Максимальний розмір журналу" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +msgid "NOT RUNNING" +msgstr "НЕ ПРАЦЮЄ" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 +msgid "Open Web Interface" +msgstr "Відкритий веб-інтерфейс" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +msgid "RUNNING" +msgstr "ЗАПУЩЕНО" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 +msgid "Refresh every %s seconds." +msgstr "Оновлювати кожні %s секунд." + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 +msgid "Settings" +msgstr "Налаштування" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 +msgid "The maximum days of the log file to retain." +msgstr "" +"Максимальна кількість днів, протягом яких можна зберігати файл журналу." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 +msgid "" +"The maximum number of concurrent connections at the same time (0 = " +"unlimited)." +msgstr "Максимальна кількість одночасних з'єднань (0 = необмежена)." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 +msgid "The maximum number of old log files to retain." +msgstr "Максимальна кількість старих файлів журналів для збереження." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 +msgid "The maximum size in megabytes of the log file before it gets rotated." +msgstr "" +"Максимальний розмір у мегабайтах файлу журналу до того, як він буде " +"обертатися." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 +msgid "Unknown error: %s" +msgstr "Невідома помилка: %s" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 +msgid "User login expiration time (in hours)." +msgstr "Час закінчення терміну дії логіну користувача (у годинах)." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "valid IP address" +msgstr "дійсна IP-адреса" diff --git a/applications/luci-app-openlist/po/vi/openlist.po b/applications/luci-app-openlist/po/vi/openlist.po new file mode 100644 index 0000000000..cee5c6f57a --- /dev/null +++ b/applications/luci-app-openlist/po/vi/openlist.po @@ -0,0 +1,157 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2025-05-14 10:34+0000\n" +"Last-Translator: Lộc SuperVipPro \n" +"Language-Team: Vietnamese \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 5.12-dev\n" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 +msgid "" +"A file list/WebDAV program that supports multiple storages, powered by Gin " +"and Solidjs." +msgstr "" +"Danh sách tệp/chương trình WebDAV hỗ trợ nhiều kho lưu trữ, được cung cấp " +"bởi Gin và Solidjs." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 +msgid "AList" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 +msgid "" +"Allow connection even if the remote TLS certificate is invalid (not " +"recommended)." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 +msgid "Allow insecure connection" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 +msgid "Collecting data..." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 +msgid "Default webUI/WebDAV login username is %s and password is %s." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 +msgid "Enable" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 +msgid "Enable logging" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "Expecting: %s" +msgstr "" + +#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 +msgid "Grant UCI access for luci-app-alist" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 +msgid "Listen address" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 +msgid "Listen port" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 +msgid "Loading..." +msgstr "" + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 +msgid "Log" +msgstr "Nhật ký" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 +msgid "Log file does not exist." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 +msgid "Log is empty." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 +msgid "Login expiration time" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 +msgid "Max connections" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 +msgid "Max log age" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 +msgid "Max log backups" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 +msgid "Max log size" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +msgid "NOT RUNNING" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 +msgid "Open Web Interface" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 +msgid "Refresh every %s seconds." +msgstr "" + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 +msgid "Settings" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 +msgid "The maximum days of the log file to retain." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 +msgid "" +"The maximum number of concurrent connections at the same time (0 = " +"unlimited)." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 +msgid "The maximum number of old log files to retain." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 +msgid "The maximum size in megabytes of the log file before it gets rotated." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 +msgid "Unknown error: %s" +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 +msgid "User login expiration time (in hours)." +msgstr "" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "valid IP address" +msgstr "" diff --git a/applications/luci-app-openlist/po/zh_Hans/openlist.po b/applications/luci-app-openlist/po/zh_Hans/openlist.po new file mode 100644 index 0000000000..1f4f522445 --- /dev/null +++ b/applications/luci-app-openlist/po/zh_Hans/openlist.po @@ -0,0 +1,155 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2025-03-10 03:34+0000\n" +"Last-Translator: DragonBluep \n" +"Language-Team: Chinese (Simplified Han script) \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.10.3-dev\n" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 +msgid "" +"A file list/WebDAV program that supports multiple storages, powered by Gin " +"and Solidjs." +msgstr "一个支持多存储的 文件列表/WebDAV 程序,使用 Gin 和 Solidjs。" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 +msgid "AList" +msgstr "AList" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 +msgid "" +"Allow connection even if the remote TLS certificate is invalid (not " +"recommended)." +msgstr "即使远程 TLS 证书无效,也允许连接(不推荐)。" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 +msgid "Allow insecure connection" +msgstr "允许不安全连接" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 +msgid "Collecting data..." +msgstr "正在收集数据中..." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 +msgid "Default webUI/WebDAV login username is %s and password is %s." +msgstr "默认 webUI/WebDAV 登录用户名 %s 密码 %s。" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 +msgid "Enable" +msgstr "启用" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 +msgid "Enable logging" +msgstr "启用日志" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "Expecting: %s" +msgstr "请输入:%s" + +#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 +msgid "Grant UCI access for luci-app-alist" +msgstr "授予 luci-app-alist 访问 UCI 配置的权限" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 +msgid "Listen address" +msgstr "监听地址" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 +msgid "Listen port" +msgstr "监听端口" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 +msgid "Loading..." +msgstr "加载中..." + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 +msgid "Log" +msgstr "日志" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 +msgid "Log file does not exist." +msgstr "日志文件不存在。" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 +msgid "Log is empty." +msgstr "日志为空。" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 +msgid "Login expiration time" +msgstr "登录过期时间" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 +msgid "Max connections" +msgstr "最大连接数" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 +msgid "Max log age" +msgstr "日志最长保留时间" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 +msgid "Max log backups" +msgstr "日志最大备份数" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 +msgid "Max log size" +msgstr "日志最大大小" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +msgid "NOT RUNNING" +msgstr "未在运行" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 +msgid "Open Web Interface" +msgstr "打开 Web 界面" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +msgid "RUNNING" +msgstr "运行中" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 +msgid "Refresh every %s seconds." +msgstr "每 %s 秒刷新。" + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 +msgid "Settings" +msgstr "设置" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 +msgid "The maximum days of the log file to retain." +msgstr "日志文件的最长保存天数。" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 +msgid "" +"The maximum number of concurrent connections at the same time (0 = " +"unlimited)." +msgstr "允许的最大并发连接数(0 = 不限制)。" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 +msgid "The maximum number of old log files to retain." +msgstr "要保留的最大旧日志文件数量。" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 +msgid "The maximum size in megabytes of the log file before it gets rotated." +msgstr "轮换前的最大日志大小(单位:MB)。" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 +msgid "Unknown error: %s" +msgstr "未知错误:%s" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 +msgid "User login expiration time (in hours)." +msgstr "用户登录过期时间(单位:小时)。" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "valid IP address" +msgstr "有效 IP 地址" diff --git a/applications/luci-app-openlist/po/zh_Hant/openlist.po b/applications/luci-app-openlist/po/zh_Hant/openlist.po new file mode 100644 index 0000000000..cc3c44ddb9 --- /dev/null +++ b/applications/luci-app-openlist/po/zh_Hant/openlist.po @@ -0,0 +1,155 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2025-03-13 16:08+0000\n" +"Last-Translator: x86_64-pc-linux-gnu \n" +"Language-Team: Chinese (Traditional Han script) \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.11-dev\n" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:67 +msgid "" +"A file list/WebDAV program that supports multiple storages, powered by Gin " +"and Solidjs." +msgstr "一個支援多種儲存方式的檔案列表/WebDAV程式,使用Gin和Solidjs。" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:66 +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:3 +msgid "AList" +msgstr "AList" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:119 +msgid "" +"Allow connection even if the remote TLS certificate is invalid (not " +"recommended)." +msgstr "即使遠端TLS憑證無效,也允許連線 (不推薦)。" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:118 +msgid "Allow insecure connection" +msgstr "允許不安全連線" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:81 +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:32 +msgid "Collecting data..." +msgstr "收集資料中..." + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:68 +msgid "Default webUI/WebDAV login username is %s and password is %s." +msgstr "預設webUI/WebDAV登入使用者名稱是%s及密碼是%s。" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:87 +msgid "Enable" +msgstr "啟用" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:121 +msgid "Enable logging" +msgstr "啟用記錄" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "Expecting: %s" +msgstr "需要:%s" + +#: applications/luci-app-alist/root/usr/share/rpcd/acl.d/luci-app-alist.json:3 +msgid "Grant UCI access for luci-app-alist" +msgstr "授予luci-app-alist存取UCI的權限" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:91 +msgid "Listen address" +msgstr "監聽位址" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:104 +msgid "Listen port" +msgstr "監聽連接埠" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:30 +msgid "Loading..." +msgstr "載入中..." + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:21 +msgid "Log" +msgstr "日誌" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:48 +msgid "Log file does not exist." +msgstr "日誌檔案不存在。" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:39 +msgid "Log is empty." +msgstr "日誌為空。" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:108 +msgid "Login expiration time" +msgstr "登入過期時間" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:113 +msgid "Max connections" +msgstr "最大連線數" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:136 +msgid "Max log age" +msgstr "日誌最長保留時間" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:130 +msgid "Max log backups" +msgstr "日誌最大備份數" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:124 +msgid "Max log size" +msgstr "日誌最大大小" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:36 +msgid "NOT RUNNING" +msgstr "未執行" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:33 +msgid "Open Web Interface" +msgstr "開啟Web介面" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:34 +msgid "RUNNING" +msgstr "執行中" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:65 +msgid "Refresh every %s seconds." +msgstr "每%s秒重新整理。" + +#: applications/luci-app-alist/root/usr/share/luci/menu.d/luci-app-alist.json:13 +msgid "Settings" +msgstr "設定" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:137 +msgid "The maximum days of the log file to retain." +msgstr "日誌檔案的最長儲存天數。" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:114 +msgid "" +"The maximum number of concurrent connections at the same time (0 = " +"unlimited)." +msgstr "允許的最大並行連線數 (0 = 不限制)。" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:131 +msgid "The maximum number of old log files to retain." +msgstr "要保留的最大舊日誌檔案數量。" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:125 +msgid "The maximum size in megabytes of the log file before it gets rotated." +msgstr "輪換前的最大日誌大小 (單位:MB)。" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/log.js:52 +msgid "Unknown error: %s" +msgstr "未知錯誤:%s" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:109 +msgid "User login expiration time (in hours)." +msgstr "使用者登入過期時間 (單位:小時)。" + +#: applications/luci-app-alist/htdocs/luci-static/resources/view/alist/config.js:99 +msgid "valid IP address" +msgstr "有效的IP位址" diff --git a/applications/luci-app-openlist/root/usr/share/luci/menu.d/luci-app-openlist.json b/applications/luci-app-openlist/root/usr/share/luci/menu.d/luci-app-openlist.json new file mode 100644 index 0000000000..cdbfcc1abb --- /dev/null +++ b/applications/luci-app-openlist/root/usr/share/luci/menu.d/luci-app-openlist.json @@ -0,0 +1,28 @@ +{ + "admin/services/openlist": { + "title": "OpenList", + "action": { + "type": "firstchild" + }, + "depends": { + "acl": [ "luci-app-openlist" ], + "uci": { "openlist": true } + } + }, + "admin/services/openlist/config": { + "title": "Settings", + "order": 10, + "action": { + "type": "view", + "path": "openlist/config" + } + }, + "admin/services/openlist/log": { + "title": "Log", + "order": 20, + "action": { + "type": "view", + "path": "openlist/log" + } + } +} diff --git a/applications/luci-app-openlist/root/usr/share/rpcd/acl.d/luci-app-openlist.json b/applications/luci-app-openlist/root/usr/share/rpcd/acl.d/luci-app-openlist.json new file mode 100644 index 0000000000..6ece7f0e5b --- /dev/null +++ b/applications/luci-app-openlist/root/usr/share/rpcd/acl.d/luci-app-openlist.json @@ -0,0 +1,17 @@ +{ + "luci-app-openlist": { + "description": "Grant UCI access for luci-app-openlist", + "read": { + "file": { + "/var/run/openlist/log/openlist.log": [ "read" ] + }, + "ubus": { + "service": [ "list" ] + }, + "uci": [ "openlist" ] + }, + "write": { + "uci": [ "openlist" ] + } + } +}