mirror of
https://github.com/openwrt/luci.git
synced 2025-12-21 21:24:35 +04:00
luci-app-squid: convert to JavaScript
The conversion adds the missing parameters in the UI which is configurable in the principal package. Assumption has been made that the config file is stored in /etc/squid since the principal package limits the sysconfdir to this directory. If that assumption is changed in the future we need to adjust the ACL. Signed-off-by: Daniel Nilsson <dannil+github@protonmail.com>
This commit is contained in:
committed by
Paul Donald
parent
ade3606800
commit
5c6b08cf89
@@ -6,9 +6,10 @@
|
|||||||
include $(TOPDIR)/rules.mk
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
LUCI_TITLE:=Squid LuCI Interface
|
LUCI_TITLE:=Squid LuCI Interface
|
||||||
LUCI_DEPENDS:=+luci-compat +luci-base +squid
|
LUCI_DEPENDS:=+luci-base +squid
|
||||||
|
|
||||||
PKG_MAINTAINER:=Marko Ratkaj <marko.ratkaj@sartura.hr>
|
PKG_MAINTAINER:=Marko Ratkaj <marko.ratkaj@sartura.hr>, \
|
||||||
|
Daniel Nilsson <dannil+github@protonmail.com>
|
||||||
PKG_LICENSE:=Apache-2.0
|
PKG_LICENSE:=Apache-2.0
|
||||||
|
|
||||||
include ../../luci.mk
|
include ../../luci.mk
|
||||||
|
|||||||
@@ -0,0 +1,134 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
|
'require form';
|
||||||
|
'require fs';
|
||||||
|
'require rpc';
|
||||||
|
'require uci';
|
||||||
|
'require view';
|
||||||
|
|
||||||
|
var getCompileTimeOptions = rpc.declare({
|
||||||
|
object: 'luci.squid',
|
||||||
|
method: 'getCompileTimeOptions',
|
||||||
|
expect: { options: [] }
|
||||||
|
});
|
||||||
|
|
||||||
|
function validateFile(path) {
|
||||||
|
if (!path.startsWith('/etc/squid/')) {
|
||||||
|
return _('File must be located in directory /etc/squid');
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
function writeFile(path, content) {
|
||||||
|
if (content) {
|
||||||
|
var normalized = content.replaceAll('\r\n', '\n');
|
||||||
|
fs.write(path, normalized);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return view.extend({
|
||||||
|
|
||||||
|
load: function() {
|
||||||
|
var load_squid = uci.load('squid')
|
||||||
|
.then(() => uci.get('squid', 'squid'));
|
||||||
|
return Promise.all([load_squid, getCompileTimeOptions()]);
|
||||||
|
},
|
||||||
|
|
||||||
|
render: function(data) {
|
||||||
|
var { config_file, mime_table } = data[0];
|
||||||
|
var options = data[1];
|
||||||
|
|
||||||
|
var m, s, o;
|
||||||
|
|
||||||
|
m = new form.Map('squid', _('Squid'));
|
||||||
|
|
||||||
|
s = m.section(form.TypedSection, 'squid');
|
||||||
|
s.anonymous = true;
|
||||||
|
s.addremove = false;
|
||||||
|
|
||||||
|
s.tab('general', _('General Settings'));
|
||||||
|
s.tab('advanced', _('Advanced Settings'));
|
||||||
|
|
||||||
|
var o = s.taboption('general', form.Value, 'config_file', _('Config file'));
|
||||||
|
o.datatype = 'string';
|
||||||
|
o.default = '/etc/squid/squid.conf';
|
||||||
|
o.validate = function(section_id, value) {
|
||||||
|
return validateFile(value);
|
||||||
|
};
|
||||||
|
|
||||||
|
o = s.taboption('general', form.Value, 'mime_table', _('Mime table'));
|
||||||
|
o.datatype = 'string';
|
||||||
|
o.default = '/etc/squid/mime.conf';
|
||||||
|
o.validate = function(section_id, value) {
|
||||||
|
return validateFile(value);
|
||||||
|
};
|
||||||
|
|
||||||
|
o = s.taboption('general', form.Value, 'http_port', _('Port'));
|
||||||
|
o.datatype = 'portrange';
|
||||||
|
o.placeholder = '0-65535';
|
||||||
|
|
||||||
|
o = s.taboption('general', form.Value, 'http_port_options', _('HTTP port options'));
|
||||||
|
o.datatype = 'string';
|
||||||
|
o.optional = true;
|
||||||
|
|
||||||
|
o = s.taboption('general', form.Value, 'ssl_db', _('SSL DB'));
|
||||||
|
o.datatype = 'string';
|
||||||
|
o.optional = true;
|
||||||
|
|
||||||
|
o = s.taboption('general', form.Value, 'ssldb_options', _('SSL DB options'));
|
||||||
|
o.datatype = 'string';
|
||||||
|
o.optional = true;
|
||||||
|
|
||||||
|
o = s.taboption('general', form.Value, 'visible_hostname', _('Visible Hostname'));
|
||||||
|
o.datatype = 'string';
|
||||||
|
o.placeholder = 'OpenWrt';
|
||||||
|
|
||||||
|
o = s.taboption('general', form.Value, 'coredump_dir', _('Coredump files directory'));
|
||||||
|
o.datatype = 'string';
|
||||||
|
o.placeholder = '/tmp/squid';
|
||||||
|
|
||||||
|
var enable_icmp_option = '--enable-icmp';
|
||||||
|
var is_enable_icmp_defined = options.includes(enable_icmp_option);
|
||||||
|
o = s.taboption('general', form.Flag, 'pinger_enable', _('Enable ICMP pinger'),
|
||||||
|
!is_enable_icmp_defined ? _('Can only be set if Squid is compiled with the %s option').format(`<code>${enable_icmp_option}</code>`) : null);
|
||||||
|
o.datatype = 'string';
|
||||||
|
o.enabled = 'on';
|
||||||
|
o.disabled = 'off';
|
||||||
|
o.readonly = !is_enable_icmp_defined;
|
||||||
|
|
||||||
|
o = s.taboption('advanced', form.SectionValue, '_advanced', form.TypedSection, '_advanced', null,
|
||||||
|
_('Advanced settings grants you direct access to the configuration files.'));
|
||||||
|
|
||||||
|
var advanced = o.subsection;
|
||||||
|
advanced.anonymous = true;
|
||||||
|
advanced.cfgsections = function() { return [ '_advanced' ] };
|
||||||
|
|
||||||
|
advanced.tab('_config_file', _('Config file'));
|
||||||
|
advanced.tab('_mime_table', _('Mime table'));
|
||||||
|
|
||||||
|
o = advanced.taboption('_config_file', form.TextValue, '_config_file_data');
|
||||||
|
o.wrap = false;
|
||||||
|
o.rows = 25;
|
||||||
|
o.rmempty = false;
|
||||||
|
o.cfgvalue = function(section_id) {
|
||||||
|
return fs.read(config_file);
|
||||||
|
};
|
||||||
|
o.write = function(section_id, value) {
|
||||||
|
writeFile(config_file, value);
|
||||||
|
};
|
||||||
|
|
||||||
|
o = advanced.taboption('_mime_table', form.TextValue, '_mime_table_data');
|
||||||
|
o.wrap = false;
|
||||||
|
o.rows = 25;
|
||||||
|
o.rmempty = false;
|
||||||
|
o.cfgvalue = function(section_id) {
|
||||||
|
return fs.read(mime_table);
|
||||||
|
};
|
||||||
|
o.write = function(section_id, value) {
|
||||||
|
writeFile(mime_table, value);
|
||||||
|
};
|
||||||
|
|
||||||
|
return m.render();
|
||||||
|
},
|
||||||
|
|
||||||
|
});
|
||||||
@@ -1,67 +0,0 @@
|
|||||||
--[[
|
|
||||||
|
|
||||||
LuCI Squid module
|
|
||||||
|
|
||||||
Copyright (C) 2015, OpenWrt.org
|
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
you may not use this file except in compliance with the License.
|
|
||||||
You may obtain a copy of the License at
|
|
||||||
|
|
||||||
http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
|
|
||||||
Author: Marko Ratkaj <marko.ratkaj@sartura.hr>
|
|
||||||
|
|
||||||
]]--
|
|
||||||
|
|
||||||
local fs = require "nixio.fs"
|
|
||||||
local sys = require "luci.sys"
|
|
||||||
require "ubus"
|
|
||||||
|
|
||||||
m = Map("squid", translate("Squid"))
|
|
||||||
m.on_after_commit = function() luci.sys.call("/etc/init.d/squid restart") end
|
|
||||||
|
|
||||||
s = m:section(TypedSection, "squid")
|
|
||||||
s.anonymous = true
|
|
||||||
s.addremove = false
|
|
||||||
|
|
||||||
s:tab("general", translate("General Settings"))
|
|
||||||
|
|
||||||
http_port = s:taboption("general", Value, "http_port", translate("Port"))
|
|
||||||
http_port.datatype = "portrange"
|
|
||||||
http_port.placeholder = "0-65535"
|
|
||||||
|
|
||||||
visible_hostname = s:taboption("general", Value, "visible_hostname", translate("Visible Hostname"))
|
|
||||||
visible_hostname.datatype="string"
|
|
||||||
visible_hostname.placeholder = "OpenWrt"
|
|
||||||
|
|
||||||
coredump_dir = s:taboption("general", Value, "coredump_dir", translate("Coredump files directory"))
|
|
||||||
coredump_dir.datatype="string"
|
|
||||||
coredump_dir.placeholder = "/tmp/squid"
|
|
||||||
|
|
||||||
s:tab("advanced", translate("Advanced Settings"))
|
|
||||||
|
|
||||||
squid_config_file = s:taboption("advanced", TextValue, "_data", "")
|
|
||||||
squid_config_file.wrap = "off"
|
|
||||||
squid_config_file.rows = 25
|
|
||||||
squid_config_file.rmempty = false
|
|
||||||
|
|
||||||
function squid_config_file.cfgvalue()
|
|
||||||
local uci = require "luci.model.uci".cursor_state()
|
|
||||||
local file = uci:get("squid", "squid", "config_file")
|
|
||||||
if file then
|
|
||||||
return fs.readfile(file) or ""
|
|
||||||
else
|
|
||||||
return ""
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
function squid_config_file.write(self, section, value)
|
|
||||||
if value then
|
|
||||||
local uci = require "luci.model.uci".cursor_state()
|
|
||||||
local file = uci:get("squid", "squid", "config_file")
|
|
||||||
fs.writefile(file, value:gsub("\r\n", "\n"))
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
return m
|
|
||||||
@@ -11,15 +11,36 @@ msgstr ""
|
|||||||
"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
|
"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
|
||||||
"X-Generator: Weblate 5.7-dev\n"
|
"X-Generator: Weblate 5.7-dev\n"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:42
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:50
|
||||||
msgid "Advanced Settings"
|
msgid "Advanced Settings"
|
||||||
msgstr "إعدادات متقدمة"
|
msgstr "إعدادات متقدمة"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:38
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:100
|
||||||
|
msgid "Advanced settings grants you direct access to the configuration files."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:93
|
||||||
|
msgid "Can only be set if Squid is compiled with the %s option"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:52
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:106
|
||||||
|
msgid "Config file"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:86
|
||||||
msgid "Coredump files directory"
|
msgid "Coredump files directory"
|
||||||
msgstr "دليل ملفات Coredump"
|
msgstr "دليل ملفات Coredump"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:28
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:92
|
||||||
|
msgid "Enable ICMP pinger"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:17
|
||||||
|
msgid "File must be located in directory /etc/squid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:49
|
||||||
msgid "General Settings"
|
msgid "General Settings"
|
||||||
msgstr "الاعدادات العامة"
|
msgstr "الاعدادات العامة"
|
||||||
|
|
||||||
@@ -27,15 +48,32 @@ msgstr "الاعدادات العامة"
|
|||||||
msgid "Grant UCI access for luci-app-squid"
|
msgid "Grant UCI access for luci-app-squid"
|
||||||
msgstr "منح UCI حق الوصول إلى luci - app - squid"
|
msgstr "منح UCI حق الوصول إلى luci - app - squid"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:30
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:70
|
||||||
|
msgid "HTTP port options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:59
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:107
|
||||||
|
msgid "Mime table"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:66
|
||||||
msgid "Port"
|
msgid "Port"
|
||||||
msgstr "المنفذ"
|
msgstr "المنفذ"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:21
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:74
|
||||||
|
msgid "SSL DB"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:78
|
||||||
|
msgid "SSL DB options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:43
|
||||||
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
||||||
msgid "Squid"
|
msgid "Squid"
|
||||||
msgstr "حبار"
|
msgstr "حبار"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:34
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:82
|
||||||
msgid "Visible Hostname"
|
msgid "Visible Hostname"
|
||||||
msgstr "اسم المضيف المرئي"
|
msgstr "اسم المضيف المرئي"
|
||||||
|
|||||||
@@ -10,15 +10,36 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Generator: Weblate 5.5-dev\n"
|
"X-Generator: Weblate 5.5-dev\n"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:42
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:50
|
||||||
msgid "Advanced Settings"
|
msgid "Advanced Settings"
|
||||||
msgstr "Разширени настройки"
|
msgstr "Разширени настройки"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:38
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:100
|
||||||
|
msgid "Advanced settings grants you direct access to the configuration files."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:93
|
||||||
|
msgid "Can only be set if Squid is compiled with the %s option"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:52
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:106
|
||||||
|
msgid "Config file"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:86
|
||||||
msgid "Coredump files directory"
|
msgid "Coredump files directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:28
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:92
|
||||||
|
msgid "Enable ICMP pinger"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:17
|
||||||
|
msgid "File must be located in directory /etc/squid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:49
|
||||||
msgid "General Settings"
|
msgid "General Settings"
|
||||||
msgstr "Общи настройки"
|
msgstr "Общи настройки"
|
||||||
|
|
||||||
@@ -26,15 +47,32 @@ msgstr "Общи настройки"
|
|||||||
msgid "Grant UCI access for luci-app-squid"
|
msgid "Grant UCI access for luci-app-squid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:30
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:70
|
||||||
|
msgid "HTTP port options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:59
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:107
|
||||||
|
msgid "Mime table"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:66
|
||||||
msgid "Port"
|
msgid "Port"
|
||||||
msgstr "Порт"
|
msgstr "Порт"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:21
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:74
|
||||||
|
msgid "SSL DB"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:78
|
||||||
|
msgid "SSL DB options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:43
|
||||||
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
||||||
msgid "Squid"
|
msgid "Squid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:34
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:82
|
||||||
msgid "Visible Hostname"
|
msgid "Visible Hostname"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|||||||
@@ -10,15 +10,36 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Generator: Weblate 4.9-dev\n"
|
"X-Generator: Weblate 4.9-dev\n"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:42
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:50
|
||||||
msgid "Advanced Settings"
|
msgid "Advanced Settings"
|
||||||
msgstr "উন্নত সেটিংস"
|
msgstr "উন্নত সেটিংস"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:38
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:100
|
||||||
|
msgid "Advanced settings grants you direct access to the configuration files."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:93
|
||||||
|
msgid "Can only be set if Squid is compiled with the %s option"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:52
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:106
|
||||||
|
msgid "Config file"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:86
|
||||||
msgid "Coredump files directory"
|
msgid "Coredump files directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:28
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:92
|
||||||
|
msgid "Enable ICMP pinger"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:17
|
||||||
|
msgid "File must be located in directory /etc/squid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:49
|
||||||
msgid "General Settings"
|
msgid "General Settings"
|
||||||
msgstr "সাধারণ সেটিংস"
|
msgstr "সাধারণ সেটিংস"
|
||||||
|
|
||||||
@@ -26,15 +47,32 @@ msgstr "সাধারণ সেটিংস"
|
|||||||
msgid "Grant UCI access for luci-app-squid"
|
msgid "Grant UCI access for luci-app-squid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:30
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:70
|
||||||
|
msgid "HTTP port options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:59
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:107
|
||||||
|
msgid "Mime table"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:66
|
||||||
msgid "Port"
|
msgid "Port"
|
||||||
msgstr "পোর্ট"
|
msgstr "পোর্ট"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:21
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:74
|
||||||
|
msgid "SSL DB"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:78
|
||||||
|
msgid "SSL DB options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:43
|
||||||
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
||||||
msgid "Squid"
|
msgid "Squid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:34
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:82
|
||||||
msgid "Visible Hostname"
|
msgid "Visible Hostname"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|||||||
@@ -10,15 +10,36 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Generator: Weblate 4.5.2-dev\n"
|
"X-Generator: Weblate 4.5.2-dev\n"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:42
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:50
|
||||||
msgid "Advanced Settings"
|
msgid "Advanced Settings"
|
||||||
msgstr "Configuració avançada"
|
msgstr "Configuració avançada"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:38
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:100
|
||||||
|
msgid "Advanced settings grants you direct access to the configuration files."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:93
|
||||||
|
msgid "Can only be set if Squid is compiled with the %s option"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:52
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:106
|
||||||
|
msgid "Config file"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:86
|
||||||
msgid "Coredump files directory"
|
msgid "Coredump files directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:28
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:92
|
||||||
|
msgid "Enable ICMP pinger"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:17
|
||||||
|
msgid "File must be located in directory /etc/squid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:49
|
||||||
msgid "General Settings"
|
msgid "General Settings"
|
||||||
msgstr "Paràmetres generals"
|
msgstr "Paràmetres generals"
|
||||||
|
|
||||||
@@ -26,15 +47,32 @@ msgstr "Paràmetres generals"
|
|||||||
msgid "Grant UCI access for luci-app-squid"
|
msgid "Grant UCI access for luci-app-squid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:30
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:70
|
||||||
|
msgid "HTTP port options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:59
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:107
|
||||||
|
msgid "Mime table"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:66
|
||||||
msgid "Port"
|
msgid "Port"
|
||||||
msgstr "Port"
|
msgstr "Port"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:21
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:74
|
||||||
|
msgid "SSL DB"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:78
|
||||||
|
msgid "SSL DB options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:43
|
||||||
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
||||||
msgid "Squid"
|
msgid "Squid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:34
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:82
|
||||||
msgid "Visible Hostname"
|
msgid "Visible Hostname"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|||||||
@@ -10,15 +10,36 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||||
"X-Generator: Weblate 5.0.2\n"
|
"X-Generator: Weblate 5.0.2\n"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:42
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:50
|
||||||
msgid "Advanced Settings"
|
msgid "Advanced Settings"
|
||||||
msgstr "Pokročilá nastavení"
|
msgstr "Pokročilá nastavení"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:38
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:100
|
||||||
|
msgid "Advanced settings grants you direct access to the configuration files."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:93
|
||||||
|
msgid "Can only be set if Squid is compiled with the %s option"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:52
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:106
|
||||||
|
msgid "Config file"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:86
|
||||||
msgid "Coredump files directory"
|
msgid "Coredump files directory"
|
||||||
msgstr "Adresář se soubory výpisu paměti (coredump)"
|
msgstr "Adresář se soubory výpisu paměti (coredump)"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:28
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:92
|
||||||
|
msgid "Enable ICMP pinger"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:17
|
||||||
|
msgid "File must be located in directory /etc/squid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:49
|
||||||
msgid "General Settings"
|
msgid "General Settings"
|
||||||
msgstr "Obecná nastavení"
|
msgstr "Obecná nastavení"
|
||||||
|
|
||||||
@@ -26,15 +47,32 @@ msgstr "Obecná nastavení"
|
|||||||
msgid "Grant UCI access for luci-app-squid"
|
msgid "Grant UCI access for luci-app-squid"
|
||||||
msgstr "Udělit oprávnění k UCI pro luci-app-shairplay"
|
msgstr "Udělit oprávnění k UCI pro luci-app-shairplay"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:30
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:70
|
||||||
|
msgid "HTTP port options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:59
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:107
|
||||||
|
msgid "Mime table"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:66
|
||||||
msgid "Port"
|
msgid "Port"
|
||||||
msgstr "Port"
|
msgstr "Port"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:21
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:74
|
||||||
|
msgid "SSL DB"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:78
|
||||||
|
msgid "SSL DB options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:43
|
||||||
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
||||||
msgid "Squid"
|
msgid "Squid"
|
||||||
msgstr "Squid"
|
msgstr "Squid"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:34
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:82
|
||||||
msgid "Visible Hostname"
|
msgid "Visible Hostname"
|
||||||
msgstr "Viditelný název hostitele"
|
msgstr "Viditelný název hostitele"
|
||||||
|
|||||||
@@ -10,15 +10,36 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Generator: Weblate 5.4-dev\n"
|
"X-Generator: Weblate 5.4-dev\n"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:42
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:50
|
||||||
msgid "Advanced Settings"
|
msgid "Advanced Settings"
|
||||||
msgstr "Avancerede indstillinger"
|
msgstr "Avancerede indstillinger"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:38
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:100
|
||||||
|
msgid "Advanced settings grants you direct access to the configuration files."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:93
|
||||||
|
msgid "Can only be set if Squid is compiled with the %s option"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:52
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:106
|
||||||
|
msgid "Config file"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:86
|
||||||
msgid "Coredump files directory"
|
msgid "Coredump files directory"
|
||||||
msgstr "Coredump filer mappe"
|
msgstr "Coredump filer mappe"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:28
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:92
|
||||||
|
msgid "Enable ICMP pinger"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:17
|
||||||
|
msgid "File must be located in directory /etc/squid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:49
|
||||||
msgid "General Settings"
|
msgid "General Settings"
|
||||||
msgstr "Generelle indstillinger"
|
msgstr "Generelle indstillinger"
|
||||||
|
|
||||||
@@ -26,15 +47,32 @@ msgstr "Generelle indstillinger"
|
|||||||
msgid "Grant UCI access for luci-app-squid"
|
msgid "Grant UCI access for luci-app-squid"
|
||||||
msgstr "Giv UCI-adgang til luci-app-squid"
|
msgstr "Giv UCI-adgang til luci-app-squid"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:30
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:70
|
||||||
|
msgid "HTTP port options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:59
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:107
|
||||||
|
msgid "Mime table"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:66
|
||||||
msgid "Port"
|
msgid "Port"
|
||||||
msgstr "Port"
|
msgstr "Port"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:21
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:74
|
||||||
|
msgid "SSL DB"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:78
|
||||||
|
msgid "SSL DB options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:43
|
||||||
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
||||||
msgid "Squid"
|
msgid "Squid"
|
||||||
msgstr "Squid"
|
msgstr "Squid"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:34
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:82
|
||||||
msgid "Visible Hostname"
|
msgid "Visible Hostname"
|
||||||
msgstr "Synligt værtsnavn"
|
msgstr "Synligt værtsnavn"
|
||||||
|
|||||||
@@ -10,15 +10,36 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Generator: Weblate 5.0-dev\n"
|
"X-Generator: Weblate 5.0-dev\n"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:42
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:50
|
||||||
msgid "Advanced Settings"
|
msgid "Advanced Settings"
|
||||||
msgstr "Erweiterte Einstellungen"
|
msgstr "Erweiterte Einstellungen"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:38
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:100
|
||||||
|
msgid "Advanced settings grants you direct access to the configuration files."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:93
|
||||||
|
msgid "Can only be set if Squid is compiled with the %s option"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:52
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:106
|
||||||
|
msgid "Config file"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:86
|
||||||
msgid "Coredump files directory"
|
msgid "Coredump files directory"
|
||||||
msgstr "Coredump-Dateiverzeichnis"
|
msgstr "Coredump-Dateiverzeichnis"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:28
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:92
|
||||||
|
msgid "Enable ICMP pinger"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:17
|
||||||
|
msgid "File must be located in directory /etc/squid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:49
|
||||||
msgid "General Settings"
|
msgid "General Settings"
|
||||||
msgstr "Allgemeine Einstellungen"
|
msgstr "Allgemeine Einstellungen"
|
||||||
|
|
||||||
@@ -26,15 +47,32 @@ msgstr "Allgemeine Einstellungen"
|
|||||||
msgid "Grant UCI access for luci-app-squid"
|
msgid "Grant UCI access for luci-app-squid"
|
||||||
msgstr "Gewähre UCI Zugriff auf luci-app-squid"
|
msgstr "Gewähre UCI Zugriff auf luci-app-squid"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:30
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:70
|
||||||
|
msgid "HTTP port options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:59
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:107
|
||||||
|
msgid "Mime table"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:66
|
||||||
msgid "Port"
|
msgid "Port"
|
||||||
msgstr "Port"
|
msgstr "Port"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:21
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:74
|
||||||
|
msgid "SSL DB"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:78
|
||||||
|
msgid "SSL DB options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:43
|
||||||
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
||||||
msgid "Squid"
|
msgid "Squid"
|
||||||
msgstr "Squid"
|
msgstr "Squid"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:34
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:82
|
||||||
msgid "Visible Hostname"
|
msgid "Visible Hostname"
|
||||||
msgstr "Sichtbarer Hostname"
|
msgstr "Sichtbarer Hostname"
|
||||||
|
|||||||
@@ -10,15 +10,36 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Generator: Weblate 4.12-dev\n"
|
"X-Generator: Weblate 4.12-dev\n"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:42
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:50
|
||||||
msgid "Advanced Settings"
|
msgid "Advanced Settings"
|
||||||
msgstr "Ρυθμίσεις για προχωρημένους"
|
msgstr "Ρυθμίσεις για προχωρημένους"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:38
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:100
|
||||||
|
msgid "Advanced settings grants you direct access to the configuration files."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:93
|
||||||
|
msgid "Can only be set if Squid is compiled with the %s option"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:52
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:106
|
||||||
|
msgid "Config file"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:86
|
||||||
msgid "Coredump files directory"
|
msgid "Coredump files directory"
|
||||||
msgstr "Κατάλογος αρχείων Coredump"
|
msgstr "Κατάλογος αρχείων Coredump"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:28
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:92
|
||||||
|
msgid "Enable ICMP pinger"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:17
|
||||||
|
msgid "File must be located in directory /etc/squid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:49
|
||||||
msgid "General Settings"
|
msgid "General Settings"
|
||||||
msgstr "Γενικές ρυθμίσεις"
|
msgstr "Γενικές ρυθμίσεις"
|
||||||
|
|
||||||
@@ -26,15 +47,32 @@ msgstr "Γενικές ρυθμίσεις"
|
|||||||
msgid "Grant UCI access for luci-app-squid"
|
msgid "Grant UCI access for luci-app-squid"
|
||||||
msgstr "Παραχωρήστε πρόσβαση UCI για το luci-app-squid"
|
msgstr "Παραχωρήστε πρόσβαση UCI για το luci-app-squid"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:30
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:70
|
||||||
|
msgid "HTTP port options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:59
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:107
|
||||||
|
msgid "Mime table"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:66
|
||||||
msgid "Port"
|
msgid "Port"
|
||||||
msgstr "Θύρα"
|
msgstr "Θύρα"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:21
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:74
|
||||||
|
msgid "SSL DB"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:78
|
||||||
|
msgid "SSL DB options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:43
|
||||||
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
||||||
msgid "Squid"
|
msgid "Squid"
|
||||||
msgstr "Squid"
|
msgstr "Squid"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:34
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:82
|
||||||
msgid "Visible Hostname"
|
msgid "Visible Hostname"
|
||||||
msgstr "Ορατό Hostname"
|
msgstr "Ορατό Hostname"
|
||||||
|
|||||||
@@ -10,15 +10,36 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Generator: Weblate 5.3-dev\n"
|
"X-Generator: Weblate 5.3-dev\n"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:42
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:50
|
||||||
msgid "Advanced Settings"
|
msgid "Advanced Settings"
|
||||||
msgstr "Advanced Settings"
|
msgstr "Advanced Settings"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:38
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:100
|
||||||
|
msgid "Advanced settings grants you direct access to the configuration files."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:93
|
||||||
|
msgid "Can only be set if Squid is compiled with the %s option"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:52
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:106
|
||||||
|
msgid "Config file"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:86
|
||||||
msgid "Coredump files directory"
|
msgid "Coredump files directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:28
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:92
|
||||||
|
msgid "Enable ICMP pinger"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:17
|
||||||
|
msgid "File must be located in directory /etc/squid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:49
|
||||||
msgid "General Settings"
|
msgid "General Settings"
|
||||||
msgstr "General Settings"
|
msgstr "General Settings"
|
||||||
|
|
||||||
@@ -26,15 +47,32 @@ msgstr "General Settings"
|
|||||||
msgid "Grant UCI access for luci-app-squid"
|
msgid "Grant UCI access for luci-app-squid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:30
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:70
|
||||||
|
msgid "HTTP port options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:59
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:107
|
||||||
|
msgid "Mime table"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:66
|
||||||
msgid "Port"
|
msgid "Port"
|
||||||
msgstr "Port"
|
msgstr "Port"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:21
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:74
|
||||||
|
msgid "SSL DB"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:78
|
||||||
|
msgid "SSL DB options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:43
|
||||||
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
||||||
msgid "Squid"
|
msgid "Squid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:34
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:82
|
||||||
msgid "Visible Hostname"
|
msgid "Visible Hostname"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|||||||
@@ -13,15 +13,36 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Generator: Weblate 5.8-dev\n"
|
"X-Generator: Weblate 5.8-dev\n"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:42
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:50
|
||||||
msgid "Advanced Settings"
|
msgid "Advanced Settings"
|
||||||
msgstr "Ajustes avanzados"
|
msgstr "Ajustes avanzados"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:38
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:100
|
||||||
|
msgid "Advanced settings grants you direct access to the configuration files."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:93
|
||||||
|
msgid "Can only be set if Squid is compiled with the %s option"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:52
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:106
|
||||||
|
msgid "Config file"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:86
|
||||||
msgid "Coredump files directory"
|
msgid "Coredump files directory"
|
||||||
msgstr "Directorio de archivos de Coredump"
|
msgstr "Directorio de archivos de Coredump"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:28
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:92
|
||||||
|
msgid "Enable ICMP pinger"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:17
|
||||||
|
msgid "File must be located in directory /etc/squid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:49
|
||||||
msgid "General Settings"
|
msgid "General Settings"
|
||||||
msgstr "Ajustes generales"
|
msgstr "Ajustes generales"
|
||||||
|
|
||||||
@@ -29,15 +50,32 @@ msgstr "Ajustes generales"
|
|||||||
msgid "Grant UCI access for luci-app-squid"
|
msgid "Grant UCI access for luci-app-squid"
|
||||||
msgstr "Conceder acceso UCI para luci-app-squid"
|
msgstr "Conceder acceso UCI para luci-app-squid"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:30
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:70
|
||||||
|
msgid "HTTP port options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:59
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:107
|
||||||
|
msgid "Mime table"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:66
|
||||||
msgid "Port"
|
msgid "Port"
|
||||||
msgstr "Puerto"
|
msgstr "Puerto"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:21
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:74
|
||||||
|
msgid "SSL DB"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:78
|
||||||
|
msgid "SSL DB options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:43
|
||||||
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
||||||
msgid "Squid"
|
msgid "Squid"
|
||||||
msgstr "Squid"
|
msgstr "Squid"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:34
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:82
|
||||||
msgid "Visible Hostname"
|
msgid "Visible Hostname"
|
||||||
msgstr "Nombre de host visible"
|
msgstr "Nombre de host visible"
|
||||||
|
|||||||
@@ -10,15 +10,36 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Generator: Weblate 4.12-dev\n"
|
"X-Generator: Weblate 4.12-dev\n"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:42
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:50
|
||||||
msgid "Advanced Settings"
|
msgid "Advanced Settings"
|
||||||
msgstr "Lisäasetukset"
|
msgstr "Lisäasetukset"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:38
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:100
|
||||||
|
msgid "Advanced settings grants you direct access to the configuration files."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:93
|
||||||
|
msgid "Can only be set if Squid is compiled with the %s option"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:52
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:106
|
||||||
|
msgid "Config file"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:86
|
||||||
msgid "Coredump files directory"
|
msgid "Coredump files directory"
|
||||||
msgstr "Coredump-tiedostohakemisto"
|
msgstr "Coredump-tiedostohakemisto"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:28
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:92
|
||||||
|
msgid "Enable ICMP pinger"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:17
|
||||||
|
msgid "File must be located in directory /etc/squid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:49
|
||||||
msgid "General Settings"
|
msgid "General Settings"
|
||||||
msgstr "Yleiset asetukset"
|
msgstr "Yleiset asetukset"
|
||||||
|
|
||||||
@@ -26,15 +47,32 @@ msgstr "Yleiset asetukset"
|
|||||||
msgid "Grant UCI access for luci-app-squid"
|
msgid "Grant UCI access for luci-app-squid"
|
||||||
msgstr "Myönnä pääsy SQM-asetuksiin"
|
msgstr "Myönnä pääsy SQM-asetuksiin"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:30
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:70
|
||||||
|
msgid "HTTP port options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:59
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:107
|
||||||
|
msgid "Mime table"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:66
|
||||||
msgid "Port"
|
msgid "Port"
|
||||||
msgstr "Portti"
|
msgstr "Portti"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:21
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:74
|
||||||
|
msgid "SSL DB"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:78
|
||||||
|
msgid "SSL DB options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:43
|
||||||
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
||||||
msgid "Squid"
|
msgid "Squid"
|
||||||
msgstr "Squid"
|
msgstr "Squid"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:34
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:82
|
||||||
msgid "Visible Hostname"
|
msgid "Visible Hostname"
|
||||||
msgstr "Näkyvä isäntänimi"
|
msgstr "Näkyvä isäntänimi"
|
||||||
|
|||||||
@@ -10,15 +10,36 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||||
"X-Generator: Weblate 5.4-dev\n"
|
"X-Generator: Weblate 5.4-dev\n"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:42
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:50
|
||||||
msgid "Advanced Settings"
|
msgid "Advanced Settings"
|
||||||
msgstr "Paramètres avancés"
|
msgstr "Paramètres avancés"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:38
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:100
|
||||||
|
msgid "Advanced settings grants you direct access to the configuration files."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:93
|
||||||
|
msgid "Can only be set if Squid is compiled with the %s option"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:52
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:106
|
||||||
|
msgid "Config file"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:86
|
||||||
msgid "Coredump files directory"
|
msgid "Coredump files directory"
|
||||||
msgstr "Répertoire des fichiers Coredump"
|
msgstr "Répertoire des fichiers Coredump"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:28
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:92
|
||||||
|
msgid "Enable ICMP pinger"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:17
|
||||||
|
msgid "File must be located in directory /etc/squid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:49
|
||||||
msgid "General Settings"
|
msgid "General Settings"
|
||||||
msgstr "Réglages généraux"
|
msgstr "Réglages généraux"
|
||||||
|
|
||||||
@@ -26,15 +47,32 @@ msgstr "Réglages généraux"
|
|||||||
msgid "Grant UCI access for luci-app-squid"
|
msgid "Grant UCI access for luci-app-squid"
|
||||||
msgstr "Accorder l'accès à l'UCI pour luci-app-squid"
|
msgstr "Accorder l'accès à l'UCI pour luci-app-squid"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:30
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:70
|
||||||
|
msgid "HTTP port options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:59
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:107
|
||||||
|
msgid "Mime table"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:66
|
||||||
msgid "Port"
|
msgid "Port"
|
||||||
msgstr "Port"
|
msgstr "Port"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:21
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:74
|
||||||
|
msgid "SSL DB"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:78
|
||||||
|
msgid "SSL DB options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:43
|
||||||
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
||||||
msgid "Squid"
|
msgid "Squid"
|
||||||
msgstr "Squid"
|
msgstr "Squid"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:34
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:82
|
||||||
msgid "Visible Hostname"
|
msgid "Visible Hostname"
|
||||||
msgstr "Hostname visible"
|
msgstr "Hostname visible"
|
||||||
|
|||||||
@@ -11,15 +11,36 @@ msgstr ""
|
|||||||
"n>6 && n<11) ? 3 : 4;\n"
|
"n>6 && n<11) ? 3 : 4;\n"
|
||||||
"X-Generator: Weblate 5.8-dev\n"
|
"X-Generator: Weblate 5.8-dev\n"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:42
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:50
|
||||||
msgid "Advanced Settings"
|
msgid "Advanced Settings"
|
||||||
msgstr "Socruithe chun cinn"
|
msgstr "Socruithe chun cinn"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:38
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:100
|
||||||
|
msgid "Advanced settings grants you direct access to the configuration files."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:93
|
||||||
|
msgid "Can only be set if Squid is compiled with the %s option"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:52
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:106
|
||||||
|
msgid "Config file"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:86
|
||||||
msgid "Coredump files directory"
|
msgid "Coredump files directory"
|
||||||
msgstr "Eolaire comhaid coredump"
|
msgstr "Eolaire comhaid coredump"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:28
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:92
|
||||||
|
msgid "Enable ICMP pinger"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:17
|
||||||
|
msgid "File must be located in directory /etc/squid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:49
|
||||||
msgid "General Settings"
|
msgid "General Settings"
|
||||||
msgstr "Socruithe Ginearálta"
|
msgstr "Socruithe Ginearálta"
|
||||||
|
|
||||||
@@ -27,15 +48,32 @@ msgstr "Socruithe Ginearálta"
|
|||||||
msgid "Grant UCI access for luci-app-squid"
|
msgid "Grant UCI access for luci-app-squid"
|
||||||
msgstr "Deonaigh rochtain UCI do luci-app-squid"
|
msgstr "Deonaigh rochtain UCI do luci-app-squid"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:30
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:70
|
||||||
|
msgid "HTTP port options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:59
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:107
|
||||||
|
msgid "Mime table"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:66
|
||||||
msgid "Port"
|
msgid "Port"
|
||||||
msgstr "Calafort"
|
msgstr "Calafort"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:21
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:74
|
||||||
|
msgid "SSL DB"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:78
|
||||||
|
msgid "SSL DB options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:43
|
||||||
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
||||||
msgid "Squid"
|
msgid "Squid"
|
||||||
msgstr "Scuid"
|
msgstr "Scuid"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:34
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:82
|
||||||
msgid "Visible Hostname"
|
msgid "Visible Hostname"
|
||||||
msgstr "Óstainm Infheicthe"
|
msgstr "Óstainm Infheicthe"
|
||||||
|
|||||||
@@ -11,15 +11,36 @@ msgstr ""
|
|||||||
"n % 10 == 0) ? 2 : 3));\n"
|
"n % 10 == 0) ? 2 : 3));\n"
|
||||||
"X-Generator: Weblate 5.4-dev\n"
|
"X-Generator: Weblate 5.4-dev\n"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:42
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:50
|
||||||
msgid "Advanced Settings"
|
msgid "Advanced Settings"
|
||||||
msgstr "הגדרות מתקדמות"
|
msgstr "הגדרות מתקדמות"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:38
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:100
|
||||||
|
msgid "Advanced settings grants you direct access to the configuration files."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:93
|
||||||
|
msgid "Can only be set if Squid is compiled with the %s option"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:52
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:106
|
||||||
|
msgid "Config file"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:86
|
||||||
msgid "Coredump files directory"
|
msgid "Coredump files directory"
|
||||||
msgstr "תיקיית קובצי היטלי ליבה"
|
msgstr "תיקיית קובצי היטלי ליבה"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:28
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:92
|
||||||
|
msgid "Enable ICMP pinger"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:17
|
||||||
|
msgid "File must be located in directory /etc/squid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:49
|
||||||
msgid "General Settings"
|
msgid "General Settings"
|
||||||
msgstr "הגדרות כלליות"
|
msgstr "הגדרות כלליות"
|
||||||
|
|
||||||
@@ -27,15 +48,32 @@ msgstr "הגדרות כלליות"
|
|||||||
msgid "Grant UCI access for luci-app-squid"
|
msgid "Grant UCI access for luci-app-squid"
|
||||||
msgstr "הענקת גישת UCI ל־luci-app-squid"
|
msgstr "הענקת גישת UCI ל־luci-app-squid"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:30
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:70
|
||||||
|
msgid "HTTP port options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:59
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:107
|
||||||
|
msgid "Mime table"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:66
|
||||||
msgid "Port"
|
msgid "Port"
|
||||||
msgstr "פתחה"
|
msgstr "פתחה"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:21
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:74
|
||||||
|
msgid "SSL DB"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:78
|
||||||
|
msgid "SSL DB options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:43
|
||||||
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
||||||
msgid "Squid"
|
msgid "Squid"
|
||||||
msgstr "Squid"
|
msgstr "Squid"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:34
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:82
|
||||||
msgid "Visible Hostname"
|
msgid "Visible Hostname"
|
||||||
msgstr "שם מארח גלוי"
|
msgstr "שם מארח גלוי"
|
||||||
|
|||||||
@@ -10,15 +10,36 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||||
"X-Generator: Weblate 5.7-dev\n"
|
"X-Generator: Weblate 5.7-dev\n"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:42
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:50
|
||||||
msgid "Advanced Settings"
|
msgid "Advanced Settings"
|
||||||
msgstr "उन्नत सेटिंग्स"
|
msgstr "उन्नत सेटिंग्स"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:38
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:100
|
||||||
|
msgid "Advanced settings grants you direct access to the configuration files."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:93
|
||||||
|
msgid "Can only be set if Squid is compiled with the %s option"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:52
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:106
|
||||||
|
msgid "Config file"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:86
|
||||||
msgid "Coredump files directory"
|
msgid "Coredump files directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:28
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:92
|
||||||
|
msgid "Enable ICMP pinger"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:17
|
||||||
|
msgid "File must be located in directory /etc/squid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:49
|
||||||
msgid "General Settings"
|
msgid "General Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -26,15 +47,32 @@ msgstr ""
|
|||||||
msgid "Grant UCI access for luci-app-squid"
|
msgid "Grant UCI access for luci-app-squid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:30
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:70
|
||||||
|
msgid "HTTP port options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:59
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:107
|
||||||
|
msgid "Mime table"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:66
|
||||||
msgid "Port"
|
msgid "Port"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:21
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:74
|
||||||
|
msgid "SSL DB"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:78
|
||||||
|
msgid "SSL DB options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:43
|
||||||
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
||||||
msgid "Squid"
|
msgid "Squid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:34
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:82
|
||||||
msgid "Visible Hostname"
|
msgid "Visible Hostname"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|||||||
@@ -10,15 +10,36 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Generator: Weblate 5.7-dev\n"
|
"X-Generator: Weblate 5.7-dev\n"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:42
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:50
|
||||||
msgid "Advanced Settings"
|
msgid "Advanced Settings"
|
||||||
msgstr "Haladó beállítások"
|
msgstr "Haladó beállítások"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:38
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:100
|
||||||
|
msgid "Advanced settings grants you direct access to the configuration files."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:93
|
||||||
|
msgid "Can only be set if Squid is compiled with the %s option"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:52
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:106
|
||||||
|
msgid "Config file"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:86
|
||||||
msgid "Coredump files directory"
|
msgid "Coredump files directory"
|
||||||
msgstr "Magkiírási fájlok könyvtára"
|
msgstr "Magkiírási fájlok könyvtára"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:28
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:92
|
||||||
|
msgid "Enable ICMP pinger"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:17
|
||||||
|
msgid "File must be located in directory /etc/squid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:49
|
||||||
msgid "General Settings"
|
msgid "General Settings"
|
||||||
msgstr "Általános beállítások"
|
msgstr "Általános beállítások"
|
||||||
|
|
||||||
@@ -26,15 +47,32 @@ msgstr "Általános beállítások"
|
|||||||
msgid "Grant UCI access for luci-app-squid"
|
msgid "Grant UCI access for luci-app-squid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:30
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:70
|
||||||
|
msgid "HTTP port options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:59
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:107
|
||||||
|
msgid "Mime table"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:66
|
||||||
msgid "Port"
|
msgid "Port"
|
||||||
msgstr "Port"
|
msgstr "Port"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:21
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:74
|
||||||
|
msgid "SSL DB"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:78
|
||||||
|
msgid "SSL DB options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:43
|
||||||
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
||||||
msgid "Squid"
|
msgid "Squid"
|
||||||
msgstr "Squid"
|
msgstr "Squid"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:34
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:82
|
||||||
msgid "Visible Hostname"
|
msgid "Visible Hostname"
|
||||||
msgstr "Látható gépnév"
|
msgstr "Látható gépnév"
|
||||||
|
|||||||
@@ -10,15 +10,36 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Generator: Weblate 5.5-dev\n"
|
"X-Generator: Weblate 5.5-dev\n"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:42
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:50
|
||||||
msgid "Advanced Settings"
|
msgid "Advanced Settings"
|
||||||
msgstr "Impostazioni avanzate"
|
msgstr "Impostazioni avanzate"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:38
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:100
|
||||||
|
msgid "Advanced settings grants you direct access to the configuration files."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:93
|
||||||
|
msgid "Can only be set if Squid is compiled with the %s option"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:52
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:106
|
||||||
|
msgid "Config file"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:86
|
||||||
msgid "Coredump files directory"
|
msgid "Coredump files directory"
|
||||||
msgstr "Cartella dei file coredump"
|
msgstr "Cartella dei file coredump"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:28
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:92
|
||||||
|
msgid "Enable ICMP pinger"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:17
|
||||||
|
msgid "File must be located in directory /etc/squid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:49
|
||||||
msgid "General Settings"
|
msgid "General Settings"
|
||||||
msgstr "Impostazioni Generali"
|
msgstr "Impostazioni Generali"
|
||||||
|
|
||||||
@@ -26,15 +47,32 @@ msgstr "Impostazioni Generali"
|
|||||||
msgid "Grant UCI access for luci-app-squid"
|
msgid "Grant UCI access for luci-app-squid"
|
||||||
msgstr "Concedere l'accesso UCI per luci-app-squid"
|
msgstr "Concedere l'accesso UCI per luci-app-squid"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:30
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:70
|
||||||
|
msgid "HTTP port options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:59
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:107
|
||||||
|
msgid "Mime table"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:66
|
||||||
msgid "Port"
|
msgid "Port"
|
||||||
msgstr "Porta"
|
msgstr "Porta"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:21
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:74
|
||||||
|
msgid "SSL DB"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:78
|
||||||
|
msgid "SSL DB options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:43
|
||||||
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
||||||
msgid "Squid"
|
msgid "Squid"
|
||||||
msgstr "Squid"
|
msgstr "Squid"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:34
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:82
|
||||||
msgid "Visible Hostname"
|
msgid "Visible Hostname"
|
||||||
msgstr "Nome host visibile"
|
msgstr "Nome host visibile"
|
||||||
|
|||||||
@@ -10,15 +10,36 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
"X-Generator: Weblate 4.4-dev\n"
|
"X-Generator: Weblate 4.4-dev\n"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:42
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:50
|
||||||
msgid "Advanced Settings"
|
msgid "Advanced Settings"
|
||||||
msgstr "詳細設定"
|
msgstr "詳細設定"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:38
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:100
|
||||||
|
msgid "Advanced settings grants you direct access to the configuration files."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:93
|
||||||
|
msgid "Can only be set if Squid is compiled with the %s option"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:52
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:106
|
||||||
|
msgid "Config file"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:86
|
||||||
msgid "Coredump files directory"
|
msgid "Coredump files directory"
|
||||||
msgstr "コアダンプファイルのディレクトリ"
|
msgstr "コアダンプファイルのディレクトリ"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:28
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:92
|
||||||
|
msgid "Enable ICMP pinger"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:17
|
||||||
|
msgid "File must be located in directory /etc/squid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:49
|
||||||
msgid "General Settings"
|
msgid "General Settings"
|
||||||
msgstr "一般設定"
|
msgstr "一般設定"
|
||||||
|
|
||||||
@@ -26,15 +47,32 @@ msgstr "一般設定"
|
|||||||
msgid "Grant UCI access for luci-app-squid"
|
msgid "Grant UCI access for luci-app-squid"
|
||||||
msgstr "luci-app-squidのUCIアクセスを許可"
|
msgstr "luci-app-squidのUCIアクセスを許可"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:30
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:70
|
||||||
|
msgid "HTTP port options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:59
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:107
|
||||||
|
msgid "Mime table"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:66
|
||||||
msgid "Port"
|
msgid "Port"
|
||||||
msgstr "ポート"
|
msgstr "ポート"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:21
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:74
|
||||||
|
msgid "SSL DB"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:78
|
||||||
|
msgid "SSL DB options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:43
|
||||||
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
||||||
msgid "Squid"
|
msgid "Squid"
|
||||||
msgstr "Squid"
|
msgstr "Squid"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:34
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:82
|
||||||
msgid "Visible Hostname"
|
msgid "Visible Hostname"
|
||||||
msgstr "表示されるホスト名"
|
msgstr "表示されるホスト名"
|
||||||
|
|||||||
@@ -10,15 +10,36 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
"X-Generator: Weblate 4.15.1-dev\n"
|
"X-Generator: Weblate 4.15.1-dev\n"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:42
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:50
|
||||||
msgid "Advanced Settings"
|
msgid "Advanced Settings"
|
||||||
msgstr "고급 설정"
|
msgstr "고급 설정"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:38
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:100
|
||||||
|
msgid "Advanced settings grants you direct access to the configuration files."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:93
|
||||||
|
msgid "Can only be set if Squid is compiled with the %s option"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:52
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:106
|
||||||
|
msgid "Config file"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:86
|
||||||
msgid "Coredump files directory"
|
msgid "Coredump files directory"
|
||||||
msgstr "코어덤프 파일 디렉터리"
|
msgstr "코어덤프 파일 디렉터리"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:28
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:92
|
||||||
|
msgid "Enable ICMP pinger"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:17
|
||||||
|
msgid "File must be located in directory /etc/squid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:49
|
||||||
msgid "General Settings"
|
msgid "General Settings"
|
||||||
msgstr "기본 설정"
|
msgstr "기본 설정"
|
||||||
|
|
||||||
@@ -26,15 +47,32 @@ msgstr "기본 설정"
|
|||||||
msgid "Grant UCI access for luci-app-squid"
|
msgid "Grant UCI access for luci-app-squid"
|
||||||
msgstr "luci-app-squid에 UCI 접근 권한 허용"
|
msgstr "luci-app-squid에 UCI 접근 권한 허용"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:30
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:70
|
||||||
|
msgid "HTTP port options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:59
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:107
|
||||||
|
msgid "Mime table"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:66
|
||||||
msgid "Port"
|
msgid "Port"
|
||||||
msgstr "포트"
|
msgstr "포트"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:21
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:74
|
||||||
|
msgid "SSL DB"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:78
|
||||||
|
msgid "SSL DB options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:43
|
||||||
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
||||||
msgid "Squid"
|
msgid "Squid"
|
||||||
msgstr "Squid"
|
msgstr "Squid"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:34
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:82
|
||||||
msgid "Visible Hostname"
|
msgid "Visible Hostname"
|
||||||
msgstr "표시되는 호스트네임"
|
msgstr "표시되는 호스트네임"
|
||||||
|
|||||||
@@ -12,15 +12,36 @@ msgstr ""
|
|||||||
"1 : 2);\n"
|
"1 : 2);\n"
|
||||||
"X-Generator: Weblate 5.7-dev\n"
|
"X-Generator: Weblate 5.7-dev\n"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:42
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:50
|
||||||
msgid "Advanced Settings"
|
msgid "Advanced Settings"
|
||||||
msgstr "Pažangūs nustatymai"
|
msgstr "Pažangūs nustatymai"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:38
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:100
|
||||||
|
msgid "Advanced settings grants you direct access to the configuration files."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:93
|
||||||
|
msgid "Can only be set if Squid is compiled with the %s option"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:52
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:106
|
||||||
|
msgid "Config file"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:86
|
||||||
msgid "Coredump files directory"
|
msgid "Coredump files directory"
|
||||||
msgstr "„Coredump“ failų vietovę/kelią"
|
msgstr "„Coredump“ failų vietovę/kelią"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:28
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:92
|
||||||
|
msgid "Enable ICMP pinger"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:17
|
||||||
|
msgid "File must be located in directory /etc/squid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:49
|
||||||
msgid "General Settings"
|
msgid "General Settings"
|
||||||
msgstr "Bendri nustatymai"
|
msgstr "Bendri nustatymai"
|
||||||
|
|
||||||
@@ -28,15 +49,32 @@ msgstr "Bendri nustatymai"
|
|||||||
msgid "Grant UCI access for luci-app-squid"
|
msgid "Grant UCI access for luci-app-squid"
|
||||||
msgstr "Suteikti „UCI“ prieigą – „luci-app-squid“"
|
msgstr "Suteikti „UCI“ prieigą – „luci-app-squid“"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:30
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:70
|
||||||
|
msgid "HTTP port options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:59
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:107
|
||||||
|
msgid "Mime table"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:66
|
||||||
msgid "Port"
|
msgid "Port"
|
||||||
msgstr "Prievadas"
|
msgstr "Prievadas"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:21
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:74
|
||||||
|
msgid "SSL DB"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:78
|
||||||
|
msgid "SSL DB options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:43
|
||||||
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
||||||
msgid "Squid"
|
msgid "Squid"
|
||||||
msgstr "„Squid“"
|
msgstr "„Squid“"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:34
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:82
|
||||||
msgid "Visible Hostname"
|
msgid "Visible Hostname"
|
||||||
msgstr "Matomas Įrenginio (t.y skleidėjo/vedėjo) pavadinimas"
|
msgstr "Matomas Įrenginio (t.y skleidėjo/vedėjo) pavadinimas"
|
||||||
|
|||||||
@@ -10,15 +10,36 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||||
"X-Generator: Weblate 3.10\n"
|
"X-Generator: Weblate 3.10\n"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:42
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:50
|
||||||
msgid "Advanced Settings"
|
msgid "Advanced Settings"
|
||||||
msgstr "प्रगत सेटिंग्ज"
|
msgstr "प्रगत सेटिंग्ज"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:38
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:100
|
||||||
|
msgid "Advanced settings grants you direct access to the configuration files."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:93
|
||||||
|
msgid "Can only be set if Squid is compiled with the %s option"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:52
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:106
|
||||||
|
msgid "Config file"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:86
|
||||||
msgid "Coredump files directory"
|
msgid "Coredump files directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:28
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:92
|
||||||
|
msgid "Enable ICMP pinger"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:17
|
||||||
|
msgid "File must be located in directory /etc/squid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:49
|
||||||
msgid "General Settings"
|
msgid "General Settings"
|
||||||
msgstr "सामान्य सेटिंग्ज"
|
msgstr "सामान्य सेटिंग्ज"
|
||||||
|
|
||||||
@@ -26,15 +47,32 @@ msgstr "सामान्य सेटिंग्ज"
|
|||||||
msgid "Grant UCI access for luci-app-squid"
|
msgid "Grant UCI access for luci-app-squid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:30
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:70
|
||||||
|
msgid "HTTP port options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:59
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:107
|
||||||
|
msgid "Mime table"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:66
|
||||||
msgid "Port"
|
msgid "Port"
|
||||||
msgstr "पोर्ट"
|
msgstr "पोर्ट"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:21
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:74
|
||||||
|
msgid "SSL DB"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:78
|
||||||
|
msgid "SSL DB options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:43
|
||||||
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
||||||
msgid "Squid"
|
msgid "Squid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:34
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:82
|
||||||
msgid "Visible Hostname"
|
msgid "Visible Hostname"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|||||||
@@ -10,15 +10,36 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
"X-Generator: Weblate 5.4-dev\n"
|
"X-Generator: Weblate 5.4-dev\n"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:42
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:50
|
||||||
msgid "Advanced Settings"
|
msgid "Advanced Settings"
|
||||||
msgstr "Tetapan Lanjutan"
|
msgstr "Tetapan Lanjutan"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:38
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:100
|
||||||
|
msgid "Advanced settings grants you direct access to the configuration files."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:93
|
||||||
|
msgid "Can only be set if Squid is compiled with the %s option"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:52
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:106
|
||||||
|
msgid "Config file"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:86
|
||||||
msgid "Coredump files directory"
|
msgid "Coredump files directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:28
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:92
|
||||||
|
msgid "Enable ICMP pinger"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:17
|
||||||
|
msgid "File must be located in directory /etc/squid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:49
|
||||||
msgid "General Settings"
|
msgid "General Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -26,15 +47,32 @@ msgstr ""
|
|||||||
msgid "Grant UCI access for luci-app-squid"
|
msgid "Grant UCI access for luci-app-squid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:30
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:70
|
||||||
|
msgid "HTTP port options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:59
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:107
|
||||||
|
msgid "Mime table"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:66
|
||||||
msgid "Port"
|
msgid "Port"
|
||||||
msgstr "Port"
|
msgstr "Port"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:21
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:74
|
||||||
|
msgid "SSL DB"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:78
|
||||||
|
msgid "SSL DB options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:43
|
||||||
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
||||||
msgid "Squid"
|
msgid "Squid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:34
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:82
|
||||||
msgid "Visible Hostname"
|
msgid "Visible Hostname"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|||||||
@@ -10,16 +10,37 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Generator: Weblate 4.18.1\n"
|
"X-Generator: Weblate 4.18.1\n"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:42
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:50
|
||||||
msgid "Advanced Settings"
|
msgid "Advanced Settings"
|
||||||
msgstr "Avanserte innstillinger"
|
msgstr "Avanserte innstillinger"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:38
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:100
|
||||||
|
msgid "Advanced settings grants you direct access to the configuration files."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:93
|
||||||
|
msgid "Can only be set if Squid is compiled with the %s option"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:52
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:106
|
||||||
|
msgid "Config file"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:86
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Coredump files directory"
|
msgid "Coredump files directory"
|
||||||
msgstr "Coredump-filmappe"
|
msgstr "Coredump-filmappe"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:28
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:92
|
||||||
|
msgid "Enable ICMP pinger"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:17
|
||||||
|
msgid "File must be located in directory /etc/squid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:49
|
||||||
msgid "General Settings"
|
msgid "General Settings"
|
||||||
msgstr "Generelle innstillinger"
|
msgstr "Generelle innstillinger"
|
||||||
|
|
||||||
@@ -27,15 +48,32 @@ msgstr "Generelle innstillinger"
|
|||||||
msgid "Grant UCI access for luci-app-squid"
|
msgid "Grant UCI access for luci-app-squid"
|
||||||
msgstr "Innvilg UCI-tilgang for luci-app-squid"
|
msgstr "Innvilg UCI-tilgang for luci-app-squid"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:30
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:70
|
||||||
|
msgid "HTTP port options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:59
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:107
|
||||||
|
msgid "Mime table"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:66
|
||||||
msgid "Port"
|
msgid "Port"
|
||||||
msgstr "Port"
|
msgstr "Port"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:21
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:74
|
||||||
|
msgid "SSL DB"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:78
|
||||||
|
msgid "SSL DB options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:43
|
||||||
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
||||||
msgid "Squid"
|
msgid "Squid"
|
||||||
msgstr "Squid"
|
msgstr "Squid"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:34
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:82
|
||||||
msgid "Visible Hostname"
|
msgid "Visible Hostname"
|
||||||
msgstr "Synlig vertsnavn"
|
msgstr "Synlig vertsnavn"
|
||||||
|
|||||||
@@ -10,15 +10,36 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Generator: Weblate 4.18-dev\n"
|
"X-Generator: Weblate 4.18-dev\n"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:42
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:50
|
||||||
msgid "Advanced Settings"
|
msgid "Advanced Settings"
|
||||||
msgstr "Geavanceerde instellingen"
|
msgstr "Geavanceerde instellingen"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:38
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:100
|
||||||
|
msgid "Advanced settings grants you direct access to the configuration files."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:93
|
||||||
|
msgid "Can only be set if Squid is compiled with the %s option"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:52
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:106
|
||||||
|
msgid "Config file"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:86
|
||||||
msgid "Coredump files directory"
|
msgid "Coredump files directory"
|
||||||
msgstr "Coredump-bestanden map"
|
msgstr "Coredump-bestanden map"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:28
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:92
|
||||||
|
msgid "Enable ICMP pinger"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:17
|
||||||
|
msgid "File must be located in directory /etc/squid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:49
|
||||||
msgid "General Settings"
|
msgid "General Settings"
|
||||||
msgstr "Algemene instellingen"
|
msgstr "Algemene instellingen"
|
||||||
|
|
||||||
@@ -26,15 +47,32 @@ msgstr "Algemene instellingen"
|
|||||||
msgid "Grant UCI access for luci-app-squid"
|
msgid "Grant UCI access for luci-app-squid"
|
||||||
msgstr "Verleen UCI-toegang voor luci-app-squid"
|
msgstr "Verleen UCI-toegang voor luci-app-squid"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:30
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:70
|
||||||
|
msgid "HTTP port options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:59
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:107
|
||||||
|
msgid "Mime table"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:66
|
||||||
msgid "Port"
|
msgid "Port"
|
||||||
msgstr "Poort"
|
msgstr "Poort"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:21
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:74
|
||||||
|
msgid "SSL DB"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:78
|
||||||
|
msgid "SSL DB options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:43
|
||||||
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
||||||
msgid "Squid"
|
msgid "Squid"
|
||||||
msgstr "Squid"
|
msgstr "Squid"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:34
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:82
|
||||||
msgid "Visible Hostname"
|
msgid "Visible Hostname"
|
||||||
msgstr "Zichtbare hostnaam"
|
msgstr "Zichtbare hostnaam"
|
||||||
|
|||||||
@@ -11,15 +11,36 @@ msgstr ""
|
|||||||
"|| n%100>=20) ? 1 : 2;\n"
|
"|| n%100>=20) ? 1 : 2;\n"
|
||||||
"X-Generator: Weblate 5.2-dev\n"
|
"X-Generator: Weblate 5.2-dev\n"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:42
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:50
|
||||||
msgid "Advanced Settings"
|
msgid "Advanced Settings"
|
||||||
msgstr "Ustawienia zaawansowane"
|
msgstr "Ustawienia zaawansowane"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:38
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:100
|
||||||
|
msgid "Advanced settings grants you direct access to the configuration files."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:93
|
||||||
|
msgid "Can only be set if Squid is compiled with the %s option"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:52
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:106
|
||||||
|
msgid "Config file"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:86
|
||||||
msgid "Coredump files directory"
|
msgid "Coredump files directory"
|
||||||
msgstr "Katalog plików Coredump"
|
msgstr "Katalog plików Coredump"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:28
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:92
|
||||||
|
msgid "Enable ICMP pinger"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:17
|
||||||
|
msgid "File must be located in directory /etc/squid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:49
|
||||||
msgid "General Settings"
|
msgid "General Settings"
|
||||||
msgstr "Ustawienia główne"
|
msgstr "Ustawienia główne"
|
||||||
|
|
||||||
@@ -27,15 +48,32 @@ msgstr "Ustawienia główne"
|
|||||||
msgid "Grant UCI access for luci-app-squid"
|
msgid "Grant UCI access for luci-app-squid"
|
||||||
msgstr "Przyznaj luci-app-squid dostęp do UCI"
|
msgstr "Przyznaj luci-app-squid dostęp do UCI"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:30
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:70
|
||||||
|
msgid "HTTP port options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:59
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:107
|
||||||
|
msgid "Mime table"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:66
|
||||||
msgid "Port"
|
msgid "Port"
|
||||||
msgstr "Port"
|
msgstr "Port"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:21
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:74
|
||||||
|
msgid "SSL DB"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:78
|
||||||
|
msgid "SSL DB options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:43
|
||||||
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
||||||
msgid "Squid"
|
msgid "Squid"
|
||||||
msgstr "Squid"
|
msgstr "Squid"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:34
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:82
|
||||||
msgid "Visible Hostname"
|
msgid "Visible Hostname"
|
||||||
msgstr "Widoczna nazwa hosta"
|
msgstr "Widoczna nazwa hosta"
|
||||||
|
|||||||
@@ -10,15 +10,36 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||||
"X-Generator: Weblate 5.7-dev\n"
|
"X-Generator: Weblate 5.7-dev\n"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:42
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:50
|
||||||
msgid "Advanced Settings"
|
msgid "Advanced Settings"
|
||||||
msgstr "Configurações avançadas"
|
msgstr "Configurações avançadas"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:38
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:100
|
||||||
|
msgid "Advanced settings grants you direct access to the configuration files."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:93
|
||||||
|
msgid "Can only be set if Squid is compiled with the %s option"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:52
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:106
|
||||||
|
msgid "Config file"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:86
|
||||||
msgid "Coredump files directory"
|
msgid "Coredump files directory"
|
||||||
msgstr "Diretório de ficheiros Coredump"
|
msgstr "Diretório de ficheiros Coredump"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:28
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:92
|
||||||
|
msgid "Enable ICMP pinger"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:17
|
||||||
|
msgid "File must be located in directory /etc/squid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:49
|
||||||
msgid "General Settings"
|
msgid "General Settings"
|
||||||
msgstr "Configurações gerais"
|
msgstr "Configurações gerais"
|
||||||
|
|
||||||
@@ -26,15 +47,32 @@ msgstr "Configurações gerais"
|
|||||||
msgid "Grant UCI access for luci-app-squid"
|
msgid "Grant UCI access for luci-app-squid"
|
||||||
msgstr "Conceder UCI acesso ao luci-app-squid"
|
msgstr "Conceder UCI acesso ao luci-app-squid"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:30
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:70
|
||||||
|
msgid "HTTP port options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:59
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:107
|
||||||
|
msgid "Mime table"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:66
|
||||||
msgid "Port"
|
msgid "Port"
|
||||||
msgstr "Porta"
|
msgstr "Porta"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:21
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:74
|
||||||
|
msgid "SSL DB"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:78
|
||||||
|
msgid "SSL DB options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:43
|
||||||
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
||||||
msgid "Squid"
|
msgid "Squid"
|
||||||
msgstr "Squid"
|
msgstr "Squid"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:34
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:82
|
||||||
msgid "Visible Hostname"
|
msgid "Visible Hostname"
|
||||||
msgstr "Nome do host visível"
|
msgstr "Nome do host visível"
|
||||||
|
|||||||
@@ -10,15 +10,36 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||||
"X-Generator: Weblate 4.16.2-dev\n"
|
"X-Generator: Weblate 4.16.2-dev\n"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:42
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:50
|
||||||
msgid "Advanced Settings"
|
msgid "Advanced Settings"
|
||||||
msgstr "Configurações avançadas"
|
msgstr "Configurações avançadas"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:38
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:100
|
||||||
|
msgid "Advanced settings grants you direct access to the configuration files."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:93
|
||||||
|
msgid "Can only be set if Squid is compiled with the %s option"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:52
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:106
|
||||||
|
msgid "Config file"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:86
|
||||||
msgid "Coredump files directory"
|
msgid "Coredump files directory"
|
||||||
msgstr "Diretório de arquivos Coredump"
|
msgstr "Diretório de arquivos Coredump"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:28
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:92
|
||||||
|
msgid "Enable ICMP pinger"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:17
|
||||||
|
msgid "File must be located in directory /etc/squid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:49
|
||||||
msgid "General Settings"
|
msgid "General Settings"
|
||||||
msgstr "Configurações gerais"
|
msgstr "Configurações gerais"
|
||||||
|
|
||||||
@@ -26,15 +47,32 @@ msgstr "Configurações gerais"
|
|||||||
msgid "Grant UCI access for luci-app-squid"
|
msgid "Grant UCI access for luci-app-squid"
|
||||||
msgstr "Conceda acesso UCI ao luci-app-squid"
|
msgstr "Conceda acesso UCI ao luci-app-squid"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:30
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:70
|
||||||
|
msgid "HTTP port options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:59
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:107
|
||||||
|
msgid "Mime table"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:66
|
||||||
msgid "Port"
|
msgid "Port"
|
||||||
msgstr "Porta"
|
msgstr "Porta"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:21
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:74
|
||||||
|
msgid "SSL DB"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:78
|
||||||
|
msgid "SSL DB options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:43
|
||||||
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
||||||
msgid "Squid"
|
msgid "Squid"
|
||||||
msgstr "Squid"
|
msgstr "Squid"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:34
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:82
|
||||||
msgid "Visible Hostname"
|
msgid "Visible Hostname"
|
||||||
msgstr "Nome de Host Visível"
|
msgstr "Nome de Host Visível"
|
||||||
|
|||||||
@@ -11,15 +11,36 @@ msgstr ""
|
|||||||
"20)) ? 1 : 2;\n"
|
"20)) ? 1 : 2;\n"
|
||||||
"X-Generator: Weblate 4.9.1-dev\n"
|
"X-Generator: Weblate 4.9.1-dev\n"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:42
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:50
|
||||||
msgid "Advanced Settings"
|
msgid "Advanced Settings"
|
||||||
msgstr "Setări avansate"
|
msgstr "Setări avansate"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:38
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:100
|
||||||
|
msgid "Advanced settings grants you direct access to the configuration files."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:93
|
||||||
|
msgid "Can only be set if Squid is compiled with the %s option"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:52
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:106
|
||||||
|
msgid "Config file"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:86
|
||||||
msgid "Coredump files directory"
|
msgid "Coredump files directory"
|
||||||
msgstr "Director de fișiere Coredump"
|
msgstr "Director de fișiere Coredump"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:28
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:92
|
||||||
|
msgid "Enable ICMP pinger"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:17
|
||||||
|
msgid "File must be located in directory /etc/squid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:49
|
||||||
msgid "General Settings"
|
msgid "General Settings"
|
||||||
msgstr "Setări generale"
|
msgstr "Setări generale"
|
||||||
|
|
||||||
@@ -27,15 +48,32 @@ msgstr "Setări generale"
|
|||||||
msgid "Grant UCI access for luci-app-squid"
|
msgid "Grant UCI access for luci-app-squid"
|
||||||
msgstr "Acordă acces UCI pentru luci-app-squid"
|
msgstr "Acordă acces UCI pentru luci-app-squid"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:30
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:70
|
||||||
|
msgid "HTTP port options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:59
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:107
|
||||||
|
msgid "Mime table"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:66
|
||||||
msgid "Port"
|
msgid "Port"
|
||||||
msgstr "Port"
|
msgstr "Port"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:21
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:74
|
||||||
|
msgid "SSL DB"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:78
|
||||||
|
msgid "SSL DB options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:43
|
||||||
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
||||||
msgid "Squid"
|
msgid "Squid"
|
||||||
msgstr "Calmar"
|
msgstr "Calmar"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:34
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:82
|
||||||
msgid "Visible Hostname"
|
msgid "Visible Hostname"
|
||||||
msgstr "Numele de gazdă vizibil"
|
msgstr "Numele de gazdă vizibil"
|
||||||
|
|||||||
@@ -11,15 +11,36 @@ msgstr ""
|
|||||||
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||||
"X-Generator: Weblate 5.4-dev\n"
|
"X-Generator: Weblate 5.4-dev\n"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:42
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:50
|
||||||
msgid "Advanced Settings"
|
msgid "Advanced Settings"
|
||||||
msgstr "Дополнительные настройки"
|
msgstr "Дополнительные настройки"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:38
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:100
|
||||||
|
msgid "Advanced settings grants you direct access to the configuration files."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:93
|
||||||
|
msgid "Can only be set if Squid is compiled with the %s option"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:52
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:106
|
||||||
|
msgid "Config file"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:86
|
||||||
msgid "Coredump files directory"
|
msgid "Coredump files directory"
|
||||||
msgstr "Каталог файлов Coredump"
|
msgstr "Каталог файлов Coredump"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:28
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:92
|
||||||
|
msgid "Enable ICMP pinger"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:17
|
||||||
|
msgid "File must be located in directory /etc/squid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:49
|
||||||
msgid "General Settings"
|
msgid "General Settings"
|
||||||
msgstr "Основные настройки"
|
msgstr "Основные настройки"
|
||||||
|
|
||||||
@@ -27,15 +48,32 @@ msgstr "Основные настройки"
|
|||||||
msgid "Grant UCI access for luci-app-squid"
|
msgid "Grant UCI access for luci-app-squid"
|
||||||
msgstr "Предоставить UCI доступ для luci-app-squid"
|
msgstr "Предоставить UCI доступ для luci-app-squid"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:30
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:70
|
||||||
|
msgid "HTTP port options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:59
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:107
|
||||||
|
msgid "Mime table"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:66
|
||||||
msgid "Port"
|
msgid "Port"
|
||||||
msgstr "Порт"
|
msgstr "Порт"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:21
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:74
|
||||||
|
msgid "SSL DB"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:78
|
||||||
|
msgid "SSL DB options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:43
|
||||||
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
||||||
msgid "Squid"
|
msgid "Squid"
|
||||||
msgstr "Squid"
|
msgstr "Squid"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:34
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:82
|
||||||
msgid "Visible Hostname"
|
msgid "Visible Hostname"
|
||||||
msgstr "Отображаемое имя хоста"
|
msgstr "Отображаемое имя хоста"
|
||||||
|
|||||||
@@ -10,15 +10,36 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||||
"X-Generator: Weblate 4.0-dev\n"
|
"X-Generator: Weblate 4.0-dev\n"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:42
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:50
|
||||||
msgid "Advanced Settings"
|
msgid "Advanced Settings"
|
||||||
msgstr "Pokročilé nastavenia"
|
msgstr "Pokročilé nastavenia"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:38
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:100
|
||||||
|
msgid "Advanced settings grants you direct access to the configuration files."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:93
|
||||||
|
msgid "Can only be set if Squid is compiled with the %s option"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:52
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:106
|
||||||
|
msgid "Config file"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:86
|
||||||
msgid "Coredump files directory"
|
msgid "Coredump files directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:28
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:92
|
||||||
|
msgid "Enable ICMP pinger"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:17
|
||||||
|
msgid "File must be located in directory /etc/squid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:49
|
||||||
msgid "General Settings"
|
msgid "General Settings"
|
||||||
msgstr "Všeobecné nastavenia"
|
msgstr "Všeobecné nastavenia"
|
||||||
|
|
||||||
@@ -26,15 +47,32 @@ msgstr "Všeobecné nastavenia"
|
|||||||
msgid "Grant UCI access for luci-app-squid"
|
msgid "Grant UCI access for luci-app-squid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:30
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:70
|
||||||
|
msgid "HTTP port options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:59
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:107
|
||||||
|
msgid "Mime table"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:66
|
||||||
msgid "Port"
|
msgid "Port"
|
||||||
msgstr "Port"
|
msgstr "Port"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:21
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:74
|
||||||
|
msgid "SSL DB"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:78
|
||||||
|
msgid "SSL DB options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:43
|
||||||
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
||||||
msgid "Squid"
|
msgid "Squid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:34
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:82
|
||||||
msgid "Visible Hostname"
|
msgid "Visible Hostname"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|||||||
@@ -10,15 +10,36 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Generator: Weblate 4.6-dev\n"
|
"X-Generator: Weblate 4.6-dev\n"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:42
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:50
|
||||||
msgid "Advanced Settings"
|
msgid "Advanced Settings"
|
||||||
msgstr "Avancerade inställningar"
|
msgstr "Avancerade inställningar"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:38
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:100
|
||||||
|
msgid "Advanced settings grants you direct access to the configuration files."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:93
|
||||||
|
msgid "Can only be set if Squid is compiled with the %s option"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:52
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:106
|
||||||
|
msgid "Config file"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:86
|
||||||
msgid "Coredump files directory"
|
msgid "Coredump files directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:28
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:92
|
||||||
|
msgid "Enable ICMP pinger"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:17
|
||||||
|
msgid "File must be located in directory /etc/squid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:49
|
||||||
msgid "General Settings"
|
msgid "General Settings"
|
||||||
msgstr "Generella inställningar"
|
msgstr "Generella inställningar"
|
||||||
|
|
||||||
@@ -26,15 +47,32 @@ msgstr "Generella inställningar"
|
|||||||
msgid "Grant UCI access for luci-app-squid"
|
msgid "Grant UCI access for luci-app-squid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:30
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:70
|
||||||
|
msgid "HTTP port options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:59
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:107
|
||||||
|
msgid "Mime table"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:66
|
||||||
msgid "Port"
|
msgid "Port"
|
||||||
msgstr "Port"
|
msgstr "Port"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:21
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:74
|
||||||
|
msgid "SSL DB"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:78
|
||||||
|
msgid "SSL DB options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:43
|
||||||
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
||||||
msgid "Squid"
|
msgid "Squid"
|
||||||
msgstr "Squid"
|
msgstr "Squid"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:34
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:82
|
||||||
msgid "Visible Hostname"
|
msgid "Visible Hostname"
|
||||||
msgstr "Synligt värdnamn"
|
msgstr "Synligt värdnamn"
|
||||||
|
|||||||
@@ -1,15 +1,36 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr "Content-Type: text/plain; charset=UTF-8"
|
msgstr "Content-Type: text/plain; charset=UTF-8"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:42
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:50
|
||||||
msgid "Advanced Settings"
|
msgid "Advanced Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:38
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:100
|
||||||
|
msgid "Advanced settings grants you direct access to the configuration files."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:93
|
||||||
|
msgid "Can only be set if Squid is compiled with the %s option"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:52
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:106
|
||||||
|
msgid "Config file"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:86
|
||||||
msgid "Coredump files directory"
|
msgid "Coredump files directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:28
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:92
|
||||||
|
msgid "Enable ICMP pinger"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:17
|
||||||
|
msgid "File must be located in directory /etc/squid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:49
|
||||||
msgid "General Settings"
|
msgid "General Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -17,15 +38,32 @@ msgstr ""
|
|||||||
msgid "Grant UCI access for luci-app-squid"
|
msgid "Grant UCI access for luci-app-squid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:30
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:70
|
||||||
|
msgid "HTTP port options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:59
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:107
|
||||||
|
msgid "Mime table"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:66
|
||||||
msgid "Port"
|
msgid "Port"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:21
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:74
|
||||||
|
msgid "SSL DB"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:78
|
||||||
|
msgid "SSL DB options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:43
|
||||||
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
||||||
msgid "Squid"
|
msgid "Squid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:34
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:82
|
||||||
msgid "Visible Hostname"
|
msgid "Visible Hostname"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|||||||
@@ -10,15 +10,36 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Generator: Weblate 5.5-dev\n"
|
"X-Generator: Weblate 5.5-dev\n"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:42
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:50
|
||||||
msgid "Advanced Settings"
|
msgid "Advanced Settings"
|
||||||
msgstr "Gelişmiş Ayarlar"
|
msgstr "Gelişmiş Ayarlar"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:38
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:100
|
||||||
|
msgid "Advanced settings grants you direct access to the configuration files."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:93
|
||||||
|
msgid "Can only be set if Squid is compiled with the %s option"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:52
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:106
|
||||||
|
msgid "Config file"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:86
|
||||||
msgid "Coredump files directory"
|
msgid "Coredump files directory"
|
||||||
msgstr "Bellek dökümü dosyaları dizini"
|
msgstr "Bellek dökümü dosyaları dizini"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:28
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:92
|
||||||
|
msgid "Enable ICMP pinger"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:17
|
||||||
|
msgid "File must be located in directory /etc/squid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:49
|
||||||
msgid "General Settings"
|
msgid "General Settings"
|
||||||
msgstr "Genel Ayarlar"
|
msgstr "Genel Ayarlar"
|
||||||
|
|
||||||
@@ -26,15 +47,32 @@ msgstr "Genel Ayarlar"
|
|||||||
msgid "Grant UCI access for luci-app-squid"
|
msgid "Grant UCI access for luci-app-squid"
|
||||||
msgstr "luci-app-squid için UCI erişimi verin"
|
msgstr "luci-app-squid için UCI erişimi verin"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:30
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:70
|
||||||
|
msgid "HTTP port options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:59
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:107
|
||||||
|
msgid "Mime table"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:66
|
||||||
msgid "Port"
|
msgid "Port"
|
||||||
msgstr "Bağlantı Noktası"
|
msgstr "Bağlantı Noktası"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:21
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:74
|
||||||
|
msgid "SSL DB"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:78
|
||||||
|
msgid "SSL DB options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:43
|
||||||
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
||||||
msgid "Squid"
|
msgid "Squid"
|
||||||
msgstr "Squid"
|
msgstr "Squid"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:34
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:82
|
||||||
msgid "Visible Hostname"
|
msgid "Visible Hostname"
|
||||||
msgstr "Görünür Ana Makine Adı"
|
msgstr "Görünür Ana Makine Adı"
|
||||||
|
|||||||
@@ -11,15 +11,36 @@ msgstr ""
|
|||||||
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||||
"X-Generator: Weblate 5.5-dev\n"
|
"X-Generator: Weblate 5.5-dev\n"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:42
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:50
|
||||||
msgid "Advanced Settings"
|
msgid "Advanced Settings"
|
||||||
msgstr "Розширені налаштування"
|
msgstr "Розширені налаштування"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:38
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:100
|
||||||
|
msgid "Advanced settings grants you direct access to the configuration files."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:93
|
||||||
|
msgid "Can only be set if Squid is compiled with the %s option"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:52
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:106
|
||||||
|
msgid "Config file"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:86
|
||||||
msgid "Coredump files directory"
|
msgid "Coredump files directory"
|
||||||
msgstr "Каталог файлів Coredump"
|
msgstr "Каталог файлів Coredump"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:28
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:92
|
||||||
|
msgid "Enable ICMP pinger"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:17
|
||||||
|
msgid "File must be located in directory /etc/squid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:49
|
||||||
msgid "General Settings"
|
msgid "General Settings"
|
||||||
msgstr "Загальні налаштування"
|
msgstr "Загальні налаштування"
|
||||||
|
|
||||||
@@ -27,15 +48,32 @@ msgstr "Загальні налаштування"
|
|||||||
msgid "Grant UCI access for luci-app-squid"
|
msgid "Grant UCI access for luci-app-squid"
|
||||||
msgstr "Надати доступ до UCI для luci-app-squid"
|
msgstr "Надати доступ до UCI для luci-app-squid"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:30
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:70
|
||||||
|
msgid "HTTP port options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:59
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:107
|
||||||
|
msgid "Mime table"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:66
|
||||||
msgid "Port"
|
msgid "Port"
|
||||||
msgstr "Порт"
|
msgstr "Порт"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:21
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:74
|
||||||
|
msgid "SSL DB"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:78
|
||||||
|
msgid "SSL DB options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:43
|
||||||
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
||||||
msgid "Squid"
|
msgid "Squid"
|
||||||
msgstr "Squid"
|
msgstr "Squid"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:34
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:82
|
||||||
msgid "Visible Hostname"
|
msgid "Visible Hostname"
|
||||||
msgstr "Видиме ім’я хосту"
|
msgstr "Видиме ім’я хосту"
|
||||||
|
|||||||
@@ -10,15 +10,36 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
"X-Generator: Weblate 5.4-dev\n"
|
"X-Generator: Weblate 5.4-dev\n"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:42
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:50
|
||||||
msgid "Advanced Settings"
|
msgid "Advanced Settings"
|
||||||
msgstr "Cài đặt Nâng cao"
|
msgstr "Cài đặt Nâng cao"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:38
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:100
|
||||||
|
msgid "Advanced settings grants you direct access to the configuration files."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:93
|
||||||
|
msgid "Can only be set if Squid is compiled with the %s option"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:52
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:106
|
||||||
|
msgid "Config file"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:86
|
||||||
msgid "Coredump files directory"
|
msgid "Coredump files directory"
|
||||||
msgstr "Thư mục chứa các tệp coredump (tệp dump lõi)"
|
msgstr "Thư mục chứa các tệp coredump (tệp dump lõi)"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:28
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:92
|
||||||
|
msgid "Enable ICMP pinger"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:17
|
||||||
|
msgid "File must be located in directory /etc/squid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:49
|
||||||
msgid "General Settings"
|
msgid "General Settings"
|
||||||
msgstr "Các cài đặt chung"
|
msgstr "Các cài đặt chung"
|
||||||
|
|
||||||
@@ -26,15 +47,32 @@ msgstr "Các cài đặt chung"
|
|||||||
msgid "Grant UCI access for luci-app-squid"
|
msgid "Grant UCI access for luci-app-squid"
|
||||||
msgstr "Cấp quyền truy cập UCI cho luci-app-squid"
|
msgstr "Cấp quyền truy cập UCI cho luci-app-squid"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:30
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:70
|
||||||
|
msgid "HTTP port options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:59
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:107
|
||||||
|
msgid "Mime table"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:66
|
||||||
msgid "Port"
|
msgid "Port"
|
||||||
msgstr "Cổng"
|
msgstr "Cổng"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:21
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:74
|
||||||
|
msgid "SSL DB"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:78
|
||||||
|
msgid "SSL DB options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:43
|
||||||
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
||||||
msgid "Squid"
|
msgid "Squid"
|
||||||
msgstr "Squid"
|
msgstr "Squid"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:34
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:82
|
||||||
msgid "Visible Hostname"
|
msgid "Visible Hostname"
|
||||||
msgstr "Hiện thị tên máy chủ (Hostname)"
|
msgstr "Hiện thị tên máy chủ (Hostname)"
|
||||||
|
|||||||
@@ -10,15 +10,36 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Generator: Weblate 5.8-dev\n"
|
"X-Generator: Weblate 5.8-dev\n"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:42
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:50
|
||||||
msgid "Advanced Settings"
|
msgid "Advanced Settings"
|
||||||
msgstr "Ajustes avanzados"
|
msgstr "Ajustes avanzados"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:38
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:100
|
||||||
|
msgid "Advanced settings grants you direct access to the configuration files."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:93
|
||||||
|
msgid "Can only be set if Squid is compiled with the %s option"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:52
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:106
|
||||||
|
msgid "Config file"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:86
|
||||||
msgid "Coredump files directory"
|
msgid "Coredump files directory"
|
||||||
msgstr "Directorio de archivos de Coredump"
|
msgstr "Directorio de archivos de Coredump"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:28
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:92
|
||||||
|
msgid "Enable ICMP pinger"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:17
|
||||||
|
msgid "File must be located in directory /etc/squid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:49
|
||||||
msgid "General Settings"
|
msgid "General Settings"
|
||||||
msgstr "Ajustes generales"
|
msgstr "Ajustes generales"
|
||||||
|
|
||||||
@@ -26,15 +47,32 @@ msgstr "Ajustes generales"
|
|||||||
msgid "Grant UCI access for luci-app-squid"
|
msgid "Grant UCI access for luci-app-squid"
|
||||||
msgstr "Conceder acceso UCI para luci-app-squid"
|
msgstr "Conceder acceso UCI para luci-app-squid"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:30
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:70
|
||||||
|
msgid "HTTP port options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:59
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:107
|
||||||
|
msgid "Mime table"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:66
|
||||||
msgid "Port"
|
msgid "Port"
|
||||||
msgstr "Puerto"
|
msgstr "Puerto"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:21
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:74
|
||||||
|
msgid "SSL DB"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:78
|
||||||
|
msgid "SSL DB options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:43
|
||||||
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
||||||
msgid "Squid"
|
msgid "Squid"
|
||||||
msgstr "Squid"
|
msgstr "Squid"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:34
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:82
|
||||||
msgid "Visible Hostname"
|
msgid "Visible Hostname"
|
||||||
msgstr "Nombre de host visible"
|
msgstr "Nombre de host visible"
|
||||||
|
|||||||
@@ -10,15 +10,36 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
"X-Generator: Weblate 4.16.2-dev\n"
|
"X-Generator: Weblate 4.16.2-dev\n"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:42
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:50
|
||||||
msgid "Advanced Settings"
|
msgid "Advanced Settings"
|
||||||
msgstr "高级设置"
|
msgstr "高级设置"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:38
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:100
|
||||||
|
msgid "Advanced settings grants you direct access to the configuration files."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:93
|
||||||
|
msgid "Can only be set if Squid is compiled with the %s option"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:52
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:106
|
||||||
|
msgid "Config file"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:86
|
||||||
msgid "Coredump files directory"
|
msgid "Coredump files directory"
|
||||||
msgstr "核心转储文件目录"
|
msgstr "核心转储文件目录"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:28
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:92
|
||||||
|
msgid "Enable ICMP pinger"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:17
|
||||||
|
msgid "File must be located in directory /etc/squid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:49
|
||||||
msgid "General Settings"
|
msgid "General Settings"
|
||||||
msgstr "常规设置"
|
msgstr "常规设置"
|
||||||
|
|
||||||
@@ -26,15 +47,32 @@ msgstr "常规设置"
|
|||||||
msgid "Grant UCI access for luci-app-squid"
|
msgid "Grant UCI access for luci-app-squid"
|
||||||
msgstr "授予 UCI 访问 luci-app-squid 的权限"
|
msgstr "授予 UCI 访问 luci-app-squid 的权限"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:30
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:70
|
||||||
|
msgid "HTTP port options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:59
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:107
|
||||||
|
msgid "Mime table"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:66
|
||||||
msgid "Port"
|
msgid "Port"
|
||||||
msgstr "端口"
|
msgstr "端口"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:21
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:74
|
||||||
|
msgid "SSL DB"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:78
|
||||||
|
msgid "SSL DB options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:43
|
||||||
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
||||||
msgid "Squid"
|
msgid "Squid"
|
||||||
msgstr "Squid"
|
msgstr "Squid"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:34
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:82
|
||||||
msgid "Visible Hostname"
|
msgid "Visible Hostname"
|
||||||
msgstr "可见的主机名"
|
msgstr "可见的主机名"
|
||||||
|
|||||||
@@ -10,15 +10,36 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
"X-Generator: Weblate 5.4-dev\n"
|
"X-Generator: Weblate 5.4-dev\n"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:42
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:50
|
||||||
msgid "Advanced Settings"
|
msgid "Advanced Settings"
|
||||||
msgstr "進階設定"
|
msgstr "進階設定"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:38
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:100
|
||||||
|
msgid "Advanced settings grants you direct access to the configuration files."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:93
|
||||||
|
msgid "Can only be set if Squid is compiled with the %s option"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:52
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:106
|
||||||
|
msgid "Config file"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:86
|
||||||
msgid "Coredump files directory"
|
msgid "Coredump files directory"
|
||||||
msgstr "磁芯傾印檔案目錄"
|
msgstr "磁芯傾印檔案目錄"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:28
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:92
|
||||||
|
msgid "Enable ICMP pinger"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:17
|
||||||
|
msgid "File must be located in directory /etc/squid"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:49
|
||||||
msgid "General Settings"
|
msgid "General Settings"
|
||||||
msgstr "一般設定"
|
msgstr "一般設定"
|
||||||
|
|
||||||
@@ -26,15 +47,32 @@ msgstr "一般設定"
|
|||||||
msgid "Grant UCI access for luci-app-squid"
|
msgid "Grant UCI access for luci-app-squid"
|
||||||
msgstr "授予 luci-app-squid 擁有 UCI 存取的權限"
|
msgstr "授予 luci-app-squid 擁有 UCI 存取的權限"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:30
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:70
|
||||||
|
msgid "HTTP port options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:59
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:107
|
||||||
|
msgid "Mime table"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:66
|
||||||
msgid "Port"
|
msgid "Port"
|
||||||
msgstr "連接埠"
|
msgstr "連接埠"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:21
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:74
|
||||||
|
msgid "SSL DB"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:78
|
||||||
|
msgid "SSL DB options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:43
|
||||||
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
#: applications/luci-app-squid/root/usr/share/luci/menu.d/luci-app-squid.json:3
|
||||||
msgid "Squid"
|
msgid "Squid"
|
||||||
msgstr "Squid"
|
msgstr "Squid"
|
||||||
|
|
||||||
#: applications/luci-app-squid/luasrc/model/cbi/squid.lua:34
|
#: applications/luci-app-squid/htdocs/luci-static/resources/view/squid.js:82
|
||||||
msgid "Visible Hostname"
|
msgid "Visible Hostname"
|
||||||
msgstr "可見的主機名"
|
msgstr "可見的主機名"
|
||||||
|
|||||||
39
applications/luci-app-squid/root/usr/libexec/rpcd/luci.squid
Normal file
39
applications/luci-app-squid/root/usr/libexec/rpcd/luci.squid
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
# Reference: https://openwrt.org/docs/techref/rpcd
|
||||||
|
|
||||||
|
. /usr/share/libubox/jshn.sh
|
||||||
|
|
||||||
|
get_compile_time_options() {
|
||||||
|
# Extract all options that begins with '--' as a comma-separated string
|
||||||
|
source="$(squid -v)"
|
||||||
|
options="$(echo $source | grep -o "'--[^']*'" | sed "s/'//g")"
|
||||||
|
|
||||||
|
json_init
|
||||||
|
json_add_array 'options'
|
||||||
|
# For each option, add it to the array
|
||||||
|
set -- $options
|
||||||
|
for option; do
|
||||||
|
json_add_string '' "$option"
|
||||||
|
done
|
||||||
|
json_close_array
|
||||||
|
json_dump
|
||||||
|
json_cleanup
|
||||||
|
}
|
||||||
|
|
||||||
|
case "$1" in
|
||||||
|
list)
|
||||||
|
json_init
|
||||||
|
json_add_object 'getCompileTimeOptions'
|
||||||
|
json_close_object
|
||||||
|
json_dump
|
||||||
|
json_cleanup
|
||||||
|
;;
|
||||||
|
call)
|
||||||
|
case "$2" in
|
||||||
|
getCompileTimeOptions)
|
||||||
|
get_compile_time_options
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
;;
|
||||||
|
esac
|
||||||
@@ -2,9 +2,8 @@
|
|||||||
"admin/services/squid": {
|
"admin/services/squid": {
|
||||||
"title": "Squid",
|
"title": "Squid",
|
||||||
"action": {
|
"action": {
|
||||||
"type": "cbi",
|
"type": "view",
|
||||||
"path": "squid",
|
"path": "squid"
|
||||||
"post": { "cbi.submit": true }
|
|
||||||
},
|
},
|
||||||
"depends": {
|
"depends": {
|
||||||
"acl": [ "luci-app-squid" ]
|
"acl": [ "luci-app-squid" ]
|
||||||
|
|||||||
@@ -2,9 +2,18 @@
|
|||||||
"luci-app-squid": {
|
"luci-app-squid": {
|
||||||
"description": "Grant UCI access for luci-app-squid",
|
"description": "Grant UCI access for luci-app-squid",
|
||||||
"read": {
|
"read": {
|
||||||
|
"file": {
|
||||||
|
"/etc/squid/*": [ "read" ]
|
||||||
|
},
|
||||||
|
"ubus": {
|
||||||
|
"luci.squid": [ "getCompileTimeOptions" ]
|
||||||
|
},
|
||||||
"uci": [ "squid" ]
|
"uci": [ "squid" ]
|
||||||
},
|
},
|
||||||
"write": {
|
"write": {
|
||||||
|
"file": {
|
||||||
|
"/etc/squid/*": [ "write" ]
|
||||||
|
},
|
||||||
"uci": [ "squid" ]
|
"uci": [ "squid" ]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user