+++ /dev/null
-# 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
-
-
-include ../../luci.mk
-
-# call BuildPackage - OpenWrt buildroot signature
+++ /dev/null
-// 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 = '<span style="color:%s"><strong>%s %s</strong></span>';
- var renderHTML;
- if (isRunning) {
- var button = String.format(' <a class="btn cbi-button" href="http://%s:%s" target="_blank" rel="noreferrer noopener">%s</a>',
- 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.') + '<br />' +
- _('Default webUI/WebDAV login username is %s and password is %s.').format('<code>admin</code>', '<code>password</code>'));
-
- 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 (<strong>not recommended</strong>).'));
-
- 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();
- }
-});
+++ /dev/null
-// 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
-});
+++ /dev/null
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"PO-Revision-Date: 2024-07-15 20:49+0000\n"
-"Language-Team: Arabic <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsalist/ar/>\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 (<strong>not "
-"recommended</strong>)."
-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 ""
+++ /dev/null
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"PO-Revision-Date: 2024-10-18 20:25+0000\n"
-"Language-Team: Bulgarian <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsalist/bg/>\n"
-"Language: bg\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 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 (<strong>not "
-"recommended</strong>)."
-msgstr ""
-"Позволи връзка дори ако отдалечения TLS сертификат е невалиден (<strong>не "
-"се препоръчва</strong>)."
-
-#: 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 адрес"
+++ /dev/null
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"PO-Revision-Date: 2025-04-15 20:45+0000\n"
-"Language-Team: Bengali (Bangladesh) <https://hosted.weblate.org/projects/"
-"openwrt/luciapplicationsalist/bn_BD/>\n"
-"Language: bn_BD\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: Weblate 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 (<strong>not "
-"recommended</strong>)."
-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 ""
+++ /dev/null
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"PO-Revision-Date: 2025-03-10 02:48+0000\n"
-"Language-Team: Catalan <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsalist/ca/>\n"
-"Language: ca\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 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 (<strong>not "
-"recommended</strong>)."
-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 ""
+++ /dev/null
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"PO-Revision-Date: 2025-05-11 19:01+0000\n"
-"Language-Team: Czech <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsalist/cs/>\n"
-"Language: cs\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=((n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2);\n"
-"X-Generator: Weblate 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 (<strong>not "
-"recommended</strong>)."
-msgstr ""
-"Umožnit spojení i když vzdálený TLS certifikát není platný "
-"(<strong>nedoporučeno</strong>)."
-
-#: 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"
+++ /dev/null
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"PO-Revision-Date: 2024-01-25 02:53+0000\n"
-"Language-Team: Danish <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsalist/da/>\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 (<strong>not "
-"recommended</strong>)."
-msgstr ""
-"Tillad tilslutning, selvom fjern TLS-certifikatet er ugyldig (<strong> ikke "
-"anbefales</strong>)."
-
-#: 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"
+++ /dev/null
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"PO-Revision-Date: 2025-02-07 23:08+0000\n"
-"Language-Team: German <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsalist/de/>\n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 5.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 (<strong>not "
-"recommended</strong>)."
-msgstr ""
-"Erlauben der Verbindung, auch wenn das entfernte TLS-Zertifikat ungültig ist "
-"(<strong>nicht empfohlen</strong>)."
-
-#: 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"
+++ /dev/null
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"PO-Revision-Date: 2024-11-09 08:59+0000\n"
-"Language-Team: Greek <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsalist/el/>\n"
-"Language: el\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 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 (<strong>not "
-"recommended</strong>)."
-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 ""
+++ /dev/null
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"PO-Revision-Date: 2025-06-02 13:01+0000\n"
-"Language-Team: Spanish <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsalist/es/>\n"
-"Language: es\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 5.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 (<strong>not "
-"recommended</strong>)."
-msgstr ""
-"Permitir la conexión aunque el certificado TLS remoto no sea válido "
-"(<strong>no recomendado</strong>)."
-
-#: 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"
+++ /dev/null
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"PO-Revision-Date: 2025-05-04 15:04+0000\n"
-"Language-Team: Finnish <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsalist/fi/>\n"
-"Language: fi\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 5.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 (<strong>not "
-"recommended</strong>)."
-msgstr ""
-"Salli yhteys, vaikka etä-TLS-varmenne ei kelpaisi (<strong>ei suositella</"
-"strong>)."
-
-#: 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"
+++ /dev/null
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"PO-Revision-Date: 2025-01-20 23:30+0000\n"
-"Language-Team: French <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsalist/fr/>\n"
-"Language: fr\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: Weblate 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 (<strong>not "
-"recommended</strong>)."
-msgstr ""
-"Permet la connexion même si le certificat TLS distant est invalide "
-"(<strong>non recommandé</strong>)."
-
-#: 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 ""
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2025-05-06 05:38+0000\n"
-"Language-Team: Irish <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsalist/ga/>\n"
-"Language: ga\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=5; plural=n==1 ? 0 : n==2 ? 1 : (n>2 && n<7) ? 2 :"
-"(n>6 && n<11) ? 3 : 4;\n"
-"X-Generator: Weblate 5.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 (<strong>not "
-"recommended</strong>)."
-msgstr ""
-"Ceadaigh ceangal fiú má tá an teastas iargúlta TLS neamhbhailí (<strong>ní "
-"mholtar</strong>)."
-
-#: 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í"
+++ /dev/null
-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 (<strong>not "
-"recommended</strong>)."
-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 ""
+++ /dev/null
-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 (<strong>not "
-"recommended</strong>)."
-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 ""
+++ /dev/null
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"PO-Revision-Date: 2025-05-31 20:15+0000\n"
-"Language-Team: Hungarian <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsalist/hu/>\n"
-"Language: hu\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 5.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 (<strong>not "
-"recommended</strong>)."
-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 <em>luci-app-alist</em> 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 ""
+++ /dev/null
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"PO-Revision-Date: 2025-06-11 15:04+0000\n"
-"Language-Team: Italian <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsalist/it/>\n"
-"Language: it\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 5.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 (<strong>not "
-"recommended</strong>)."
-msgstr ""
-"Consenti la connessione anche se il certificato TLS remoto non è valido "
-"(<strong>non consigliato</strong>)."
-
-#: 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"
+++ /dev/null
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"PO-Revision-Date: 2025-03-28 01:57+0000\n"
-"Language-Team: Japanese <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsalist/ja/>\n"
-"Language: ja\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Weblate 5.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 (<strong>not "
-"recommended</strong>)."
-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 ""
+++ /dev/null
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"PO-Revision-Date: 2025-05-06 11:54+0000\n"
-"Language-Team: Korean <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsalist/ko/>\n"
-"Language: ko\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=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 (<strong>not "
-"recommended</strong>)."
-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 ""
+++ /dev/null
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"PO-Revision-Date: 2024-07-23 20:37+0000\n"
-"Language-Team: Lithuanian <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsalist/lt/>\n"
-"Language: lt\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
-"(n%100<10 || n%100>=20) ? 1 : 2);\n"
-"X-Generator: Weblate 5.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 (<strong>not "
-"recommended</strong>)."
-msgstr ""
-"Leisti prisijungimą, net jei nuotolinis „TLS“ sertifikatas yra netinkamas "
-"(<strong>nerekomenduojama</strong>)."
-
-#: 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"
+++ /dev/null
-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 (<strong>not "
-"recommended</strong>)."
-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 ""
+++ /dev/null
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"PO-Revision-Date: 2025-04-25 17:47+0000\n"
-"Language-Team: Malay <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsalist/ms/>\n"
-"Language: ms\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Weblate 5.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 (<strong>not "
-"recommended</strong>)."
-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 ""
+++ /dev/null
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"PO-Revision-Date: 2025-03-14 08:43+0000\n"
-"Language-Team: Norwegian Bokmål <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsalist/nb_NO/>\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 (<strong>not "
-"recommended</strong>)."
-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 ""
+++ /dev/null
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"PO-Revision-Date: 2025-01-22 05:53+0000\n"
-"Language-Team: Dutch <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsalist/nl/>\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 (<strong>not "
-"recommended</strong>)."
-msgstr ""
-"Sta de verbinding toe, zelfs als het externe TLS certificaat niet meer "
-"geldig is\n"
-"(<strong >niet aan te raden !</strong>)"
-
-#: 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 ""
+++ /dev/null
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"PO-Revision-Date: 2024-04-22 22:21+0000\n"
-"Language-Team: Polish <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsalist/pl/>\n"
-"Language: pl\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
-"|| n%100>=20) ? 1 : 2);\n"
-"X-Generator: Weblate 5.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 (<strong>not "
-"recommended</strong>)."
-msgstr ""
-"Zezwalaj na połączenie, nawet jeśli zdalny certyfikat TLS jest nieprawidłowy "
-"(<strong>niezalecane</strong>)."
-
-#: 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"
+++ /dev/null
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"PO-Revision-Date: 2025-04-16 15:56+0000\n"
-"Language-Team: Portuguese <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsalist/pt/>\n"
-"Language: pt\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 5.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 (<strong>not "
-"recommended</strong>)."
-msgstr ""
-"Permitir a ligação mesmo se o certificado TLS remoto for inválido "
-"(<strong>não recomendado</strong>)."
-
-#: 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"
+++ /dev/null
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"PO-Revision-Date: 2025-04-30 07:12+0000\n"
-"Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/"
-"openwrt/luciapplicationsalist/pt_BR/>\n"
-"Language: pt_BR\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: Weblate 5.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 (<strong>not "
-"recommended</strong>)."
-msgstr ""
-"Permitir conexão mesmo que o certificado TLS remoto seja inválido "
-"(<strong>não recomendado</strong>)."
-
-#: 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"
+++ /dev/null
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"PO-Revision-Date: 2025-06-20 21:40+0000\n"
-"Language-Team: Romanian <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsalist/ro/>\n"
-"Language: ro\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < "
-"20)) ? 1 : 2;\n"
-"X-Generator: Weblate 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 (<strong>not "
-"recommended</strong>)."
-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 ""
+++ /dev/null
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"PO-Revision-Date: 2025-05-17 10:22+0000\n"
-"Language-Team: Russian <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsalist/ru/>\n"
-"Language: ru\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
-"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-"X-Generator: Weblate 5.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 (<strong>not "
-"recommended</strong>)."
-msgstr ""
-"Разрешить соединение даже если TLS-сертификат удалённого хоста неверный "
-"(<strong>Не рекомендуется</strong>)."
-
-#: 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-адрес"
+++ /dev/null
-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 (<strong>not "
-"recommended</strong>)."
-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 ""
+++ /dev/null
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"PO-Revision-Date: 2025-03-03 22:06+0000\n"
-"Language-Team: Swedish <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsalist/sv/>\n"
-"Language: sv\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 5.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 (<strong>not "
-"recommended</strong>)."
-msgstr ""
-"Tillåt anslutning även om det externa TLS-certifikatet är ogiltigt "
-"(<strong>rekommenderas inte</strong>)."
-
-#: 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 ""
+++ /dev/null
-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 (<strong>not "
-"recommended</strong>)."
-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 ""
+++ /dev/null
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"PO-Revision-Date: 2024-08-17 13:21+0000\n"
-"Language-Team: Turkish <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsalist/tr/>\n"
-"Language: tr\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=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 (<strong>not "
-"recommended</strong>)."
-msgstr ""
-"Uzak TLS sertifikası geçersiz olsa bile bağlantıya izin ver "
-"(<strong>önerilmez</strong>)."
-
-#: 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"
+++ /dev/null
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"PO-Revision-Date: 2025-03-09 18:16+0000\n"
-"Language-Team: Ukrainian <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsalist/uk/>\n"
-"Language: uk\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
-"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-"X-Generator: Weblate 5.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 (<strong>not "
-"recommended</strong>)."
-msgstr ""
-"Дозволяти підключення, навіть якщо віддалений сертифікат TLS є недійсним "
-"(<strong>не рекомендується</strong>)."
-
-#: 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-адреса"
+++ /dev/null
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"PO-Revision-Date: 2025-05-14 10:34+0000\n"
-"Language-Team: Vietnamese <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationsalist/vi/>\n"
-"Language: vi\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Weblate 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 (<strong>not "
-"recommended</strong>)."
-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 ""
+++ /dev/null
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"PO-Revision-Date: 2025-03-10 03:34+0000\n"
-"Language-Team: Chinese (Simplified Han script) <https://hosted.weblate.org/"
-"projects/openwrt/luciapplicationsalist/zh_Hans/>\n"
-"Language: zh_Hans\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Weblate 5.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 (<strong>not "
-"recommended</strong>)."
-msgstr "即使远程 TLS 证书无效,也允许连接(<strong>不推荐</strong>)。"
-
-#: 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 地址"
+++ /dev/null
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"PO-Revision-Date: 2025-03-13 16:08+0000\n"
-"Language-Team: Chinese (Traditional Han script) <https://hosted.weblate.org/"
-"projects/openwrt/luciapplicationsalist/zh_Hant/>\n"
-"Language: zh_Hant\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Weblate 5.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 (<strong>not "
-"recommended</strong>)."
-msgstr "即使遠端TLS憑證無效,也允許連線 (<strong>不推薦</strong>)。"
-
-#: 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位址"
+++ /dev/null
-{
- "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"
- }
- }
-}
+++ /dev/null
-{
- "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" ]
- }
- }
-}
--- /dev/null
+# 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_PROVIDES:=luci-app-alist
+
+include ../../luci.mk
+
+# call BuildPackage - OpenWrt buildroot signature
--- /dev/null
+// 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 = '<span style="color:%s"><strong>%s %s</strong></span>';
+ var renderHTML;
+ if (isRunning) {
+ var button = String.format(' <a class="btn cbi-button" href="http://%s:%s" target="_blank" rel="noreferrer noopener">%s</a>',
+ 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.') + '<br />' +
+ _('Default webUI/WebDAV login username is %s and password is %s.').format('<code>admin</code>', '<code>password</code>'));
+
+ 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 (<strong>not recommended</strong>).'));
+
+ 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();
+ }
+});
--- /dev/null
+// 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
+});
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"PO-Revision-Date: 2024-07-15 20:49+0000\n"
+"Language-Team: Arabic <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationsalist/ar/>\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 (<strong>not "
+"recommended</strong>)."
+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 ""
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"PO-Revision-Date: 2024-10-18 20:25+0000\n"
+"Language-Team: Bulgarian <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationsalist/bg/>\n"
+"Language: bg\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 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 (<strong>not "
+"recommended</strong>)."
+msgstr ""
+"Позволи връзка дори ако отдалечения TLS сертификат е невалиден (<strong>не "
+"се препоръчва</strong>)."
+
+#: 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 адрес"
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"PO-Revision-Date: 2025-04-15 20:45+0000\n"
+"Language-Team: Bengali (Bangladesh) <https://hosted.weblate.org/projects/"
+"openwrt/luciapplicationsalist/bn_BD/>\n"
+"Language: bn_BD\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n > 1;\n"
+"X-Generator: Weblate 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 (<strong>not "
+"recommended</strong>)."
+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 ""
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"PO-Revision-Date: 2025-03-10 02:48+0000\n"
+"Language-Team: Catalan <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationsalist/ca/>\n"
+"Language: ca\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 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 (<strong>not "
+"recommended</strong>)."
+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 ""
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"PO-Revision-Date: 2025-05-11 19:01+0000\n"
+"Language-Team: Czech <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationsalist/cs/>\n"
+"Language: cs\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=((n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2);\n"
+"X-Generator: Weblate 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 (<strong>not "
+"recommended</strong>)."
+msgstr ""
+"Umožnit spojení i když vzdálený TLS certifikát není platný "
+"(<strong>nedoporučeno</strong>)."
+
+#: 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"
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"PO-Revision-Date: 2024-01-25 02:53+0000\n"
+"Language-Team: Danish <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationsalist/da/>\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 (<strong>not "
+"recommended</strong>)."
+msgstr ""
+"Tillad tilslutning, selvom fjern TLS-certifikatet er ugyldig (<strong> ikke "
+"anbefales</strong>)."
+
+#: 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"
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"PO-Revision-Date: 2025-02-07 23:08+0000\n"
+"Language-Team: German <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationsalist/de/>\n"
+"Language: de\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 5.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 (<strong>not "
+"recommended</strong>)."
+msgstr ""
+"Erlauben der Verbindung, auch wenn das entfernte TLS-Zertifikat ungültig ist "
+"(<strong>nicht empfohlen</strong>)."
+
+#: 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"
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"PO-Revision-Date: 2024-11-09 08:59+0000\n"
+"Language-Team: Greek <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationsalist/el/>\n"
+"Language: el\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 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 (<strong>not "
+"recommended</strong>)."
+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 ""
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"PO-Revision-Date: 2025-06-02 13:01+0000\n"
+"Language-Team: Spanish <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationsalist/es/>\n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 5.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 (<strong>not "
+"recommended</strong>)."
+msgstr ""
+"Permitir la conexión aunque el certificado TLS remoto no sea válido "
+"(<strong>no recomendado</strong>)."
+
+#: 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"
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"PO-Revision-Date: 2025-05-04 15:04+0000\n"
+"Language-Team: Finnish <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationsalist/fi/>\n"
+"Language: fi\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 5.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 (<strong>not "
+"recommended</strong>)."
+msgstr ""
+"Salli yhteys, vaikka etä-TLS-varmenne ei kelpaisi (<strong>ei suositella</"
+"strong>)."
+
+#: 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"
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"PO-Revision-Date: 2025-01-20 23:30+0000\n"
+"Language-Team: French <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationsalist/fr/>\n"
+"Language: fr\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n > 1;\n"
+"X-Generator: Weblate 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 (<strong>not "
+"recommended</strong>)."
+msgstr ""
+"Permet la connexion même si le certificat TLS distant est invalide "
+"(<strong>non recommandé</strong>)."
+
+#: 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 ""
--- /dev/null
+msgid ""
+msgstr ""
+"PO-Revision-Date: 2025-05-06 05:38+0000\n"
+"Language-Team: Irish <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationsalist/ga/>\n"
+"Language: ga\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=5; plural=n==1 ? 0 : n==2 ? 1 : (n>2 && n<7) ? 2 :"
+"(n>6 && n<11) ? 3 : 4;\n"
+"X-Generator: Weblate 5.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 (<strong>not "
+"recommended</strong>)."
+msgstr ""
+"Ceadaigh ceangal fiú má tá an teastas iargúlta TLS neamhbhailí (<strong>ní "
+"mholtar</strong>)."
+
+#: 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í"
--- /dev/null
+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 (<strong>not "
+"recommended</strong>)."
+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 ""
--- /dev/null
+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 (<strong>not "
+"recommended</strong>)."
+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 ""
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"PO-Revision-Date: 2025-05-31 20:15+0000\n"
+"Language-Team: Hungarian <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationsalist/hu/>\n"
+"Language: hu\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 5.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 (<strong>not "
+"recommended</strong>)."
+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 <em>luci-app-alist</em> 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 ""
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"PO-Revision-Date: 2025-06-11 15:04+0000\n"
+"Language-Team: Italian <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationsalist/it/>\n"
+"Language: it\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 5.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 (<strong>not "
+"recommended</strong>)."
+msgstr ""
+"Consenti la connessione anche se il certificato TLS remoto non è valido "
+"(<strong>non consigliato</strong>)."
+
+#: 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"
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"PO-Revision-Date: 2025-03-28 01:57+0000\n"
+"Language-Team: Japanese <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationsalist/ja/>\n"
+"Language: ja\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Generator: Weblate 5.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 (<strong>not "
+"recommended</strong>)."
+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 ""
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"PO-Revision-Date: 2025-05-06 11:54+0000\n"
+"Language-Team: Korean <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationsalist/ko/>\n"
+"Language: ko\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=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 (<strong>not "
+"recommended</strong>)."
+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 ""
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"PO-Revision-Date: 2024-07-23 20:37+0000\n"
+"Language-Team: Lithuanian <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationsalist/lt/>\n"
+"Language: lt\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
+"(n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Weblate 5.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 (<strong>not "
+"recommended</strong>)."
+msgstr ""
+"Leisti prisijungimą, net jei nuotolinis „TLS“ sertifikatas yra netinkamas "
+"(<strong>nerekomenduojama</strong>)."
+
+#: 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"
--- /dev/null
+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 (<strong>not "
+"recommended</strong>)."
+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 ""
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"PO-Revision-Date: 2025-04-25 17:47+0000\n"
+"Language-Team: Malay <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationsalist/ms/>\n"
+"Language: ms\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Generator: Weblate 5.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 (<strong>not "
+"recommended</strong>)."
+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 ""
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"PO-Revision-Date: 2025-03-14 08:43+0000\n"
+"Language-Team: Norwegian Bokmål <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationsalist/nb_NO/>\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 (<strong>not "
+"recommended</strong>)."
+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 ""
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"PO-Revision-Date: 2025-01-22 05:53+0000\n"
+"Language-Team: Dutch <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationsalist/nl/>\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 (<strong>not "
+"recommended</strong>)."
+msgstr ""
+"Sta de verbinding toe, zelfs als het externe TLS certificaat niet meer "
+"geldig is\n"
+"(<strong >niet aan te raden !</strong>)"
+
+#: 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 ""
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"PO-Revision-Date: 2024-04-22 22:21+0000\n"
+"Language-Team: Polish <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationsalist/pl/>\n"
+"Language: pl\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
+"|| n%100>=20) ? 1 : 2);\n"
+"X-Generator: Weblate 5.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 (<strong>not "
+"recommended</strong>)."
+msgstr ""
+"Zezwalaj na połączenie, nawet jeśli zdalny certyfikat TLS jest nieprawidłowy "
+"(<strong>niezalecane</strong>)."
+
+#: 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"
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"PO-Revision-Date: 2025-04-16 15:56+0000\n"
+"Language-Team: Portuguese <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationsalist/pt/>\n"
+"Language: pt\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 5.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 (<strong>not "
+"recommended</strong>)."
+msgstr ""
+"Permitir a ligação mesmo se o certificado TLS remoto for inválido "
+"(<strong>não recomendado</strong>)."
+
+#: 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"
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"PO-Revision-Date: 2025-04-30 07:12+0000\n"
+"Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/"
+"openwrt/luciapplicationsalist/pt_BR/>\n"
+"Language: pt_BR\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n > 1;\n"
+"X-Generator: Weblate 5.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 (<strong>not "
+"recommended</strong>)."
+msgstr ""
+"Permitir conexão mesmo que o certificado TLS remoto seja inválido "
+"(<strong>não recomendado</strong>)."
+
+#: 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"
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"PO-Revision-Date: 2025-06-20 21:40+0000\n"
+"Language-Team: Romanian <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationsalist/ro/>\n"
+"Language: ro\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < "
+"20)) ? 1 : 2;\n"
+"X-Generator: Weblate 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 (<strong>not "
+"recommended</strong>)."
+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 ""
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"PO-Revision-Date: 2025-05-17 10:22+0000\n"
+"Language-Team: Russian <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationsalist/ru/>\n"
+"Language: ru\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
+"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Weblate 5.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 (<strong>not "
+"recommended</strong>)."
+msgstr ""
+"Разрешить соединение даже если TLS-сертификат удалённого хоста неверный "
+"(<strong>Не рекомендуется</strong>)."
+
+#: 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-адрес"
--- /dev/null
+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 (<strong>not "
+"recommended</strong>)."
+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 ""
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"PO-Revision-Date: 2025-03-03 22:06+0000\n"
+"Language-Team: Swedish <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationsalist/sv/>\n"
+"Language: sv\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 5.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 (<strong>not "
+"recommended</strong>)."
+msgstr ""
+"Tillåt anslutning även om det externa TLS-certifikatet är ogiltigt "
+"(<strong>rekommenderas inte</strong>)."
+
+#: 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 ""
--- /dev/null
+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 (<strong>not "
+"recommended</strong>)."
+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 ""
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"PO-Revision-Date: 2024-08-17 13:21+0000\n"
+"Language-Team: Turkish <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationsalist/tr/>\n"
+"Language: tr\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=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 (<strong>not "
+"recommended</strong>)."
+msgstr ""
+"Uzak TLS sertifikası geçersiz olsa bile bağlantıya izin ver "
+"(<strong>önerilmez</strong>)."
+
+#: 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"
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"PO-Revision-Date: 2025-03-09 18:16+0000\n"
+"Language-Team: Ukrainian <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationsalist/uk/>\n"
+"Language: uk\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
+"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"X-Generator: Weblate 5.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 (<strong>not "
+"recommended</strong>)."
+msgstr ""
+"Дозволяти підключення, навіть якщо віддалений сертифікат TLS є недійсним "
+"(<strong>не рекомендується</strong>)."
+
+#: 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-адреса"
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"PO-Revision-Date: 2025-05-14 10:34+0000\n"
+"Language-Team: Vietnamese <https://hosted.weblate.org/projects/openwrt/"
+"luciapplicationsalist/vi/>\n"
+"Language: vi\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Generator: Weblate 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 (<strong>not "
+"recommended</strong>)."
+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 ""
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"PO-Revision-Date: 2025-03-10 03:34+0000\n"
+"Language-Team: Chinese (Simplified Han script) <https://hosted.weblate.org/"
+"projects/openwrt/luciapplicationsalist/zh_Hans/>\n"
+"Language: zh_Hans\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Generator: Weblate 5.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 (<strong>not "
+"recommended</strong>)."
+msgstr "即使远程 TLS 证书无效,也允许连接(<strong>不推荐</strong>)。"
+
+#: 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 地址"
--- /dev/null
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"PO-Revision-Date: 2025-03-13 16:08+0000\n"
+"Language-Team: Chinese (Traditional Han script) <https://hosted.weblate.org/"
+"projects/openwrt/luciapplicationsalist/zh_Hant/>\n"
+"Language: zh_Hant\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Generator: Weblate 5.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 (<strong>not "
+"recommended</strong>)."
+msgstr "即使遠端TLS憑證無效,也允許連線 (<strong>不推薦</strong>)。"
+
+#: 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位址"
--- /dev/null
+{
+ "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"
+ }
+ }
+}
--- /dev/null
+{
+ "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" ]
+ }
+ }
+}