luci-app-privoxy: convert to JS

Signed-off-by: Paul Donald <newtwen+github@gmail.com>
This commit is contained in:
Paul Donald
2025-04-26 03:59:29 +02:00
parent 2604b5532f
commit 93dad92afb
44 changed files with 12857 additions and 16085 deletions

View File

@@ -8,22 +8,15 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=luci-app-privoxy PKG_NAME:=luci-app-privoxy
PKG_VERSION:=1.0.6
PKG_RELEASE:=2
PKG_LICENSE:=Apache-2.0 PKG_LICENSE:=Apache-2.0
PKG_MAINTAINER:=Christian Schoenebeck <christian.schoenebeck@gmail.com>
LUCI_TITLE:=LuCI Support for Privoxy WEB proxy LUCI_TITLE:=LuCI Support for Privoxy WEB proxy
LUCI_DEPENDS:=+luci-compat +luci-lib-ipkg +luci-base +privoxy LUCI_DEPENDS:=+luci-base +privoxy
define Package/$(PKG_NAME)/config define Package/$(PKG_NAME)/config
# shown in make menuconfig <Help> # shown in make menuconfig <Help>
help help
$(LUCI_TITLE) $(LUCI_TITLE)
.
Version: $(PKG_VERSION)-$(PKG_RELEASE)
endef endef
include ../../luci.mk include ../../luci.mk

View File

@@ -0,0 +1,342 @@
'use strict';
'require uci';
'require form';
'require rpc';
'require tools.widgets as widgets';
'require fs';
'require view';
return view.extend({
render: function(data) {
const m = new form.Map('privoxy', _('Privoxy'),
_('Configure the Privoxy proxy daemon settings.'));
const s = m.section(form.NamedSection, 'privoxy', 'privoxy', _('Privoxy Settings'));
// Tab: System
s.tab('sys', _('System'));
s.taboption('sys', form.Flag, '_enabled', _('Enabled'), _('Enable/Disable autostart of Privoxy'))
let bootDelay = s.taboption('sys', form.Value, 'boot_delay', _('Boot delay'),
_('Delay (in seconds) during system boot before Privoxy starts.'));
bootDelay.datatype = 'uinteger';
bootDelay.placeholder = '10';
bootDelay.default = '10';
// Tab: Documentation
s.tab('doc', _('Documentation'), _("If you intend to operate Privoxy for more users than just yourself, "
+ "it might be a good idea to let them know how to reach you, what you block "
+ "and why you do that, your policies, etc."));
s.taboption('doc', form.Value, 'hostname', _('Hostname'),
_('The hostname shown on the CGI pages.'))
//.placeholder = sys.hostname();
s.taboption('doc', form.Value, 'user_manual', _('User Manual'),
_('Location of the Privoxy User Manual.')).placeholder = 'http://www.privoxy.org/user-manual/';
let adminEmail = s.taboption('doc', form.Value, 'admin_address', _('Admin Email'),
_('Email address for the Privoxy administrator.'));
adminEmail.datatype = 'email';
adminEmail.placeholder = 'privoxy.admin@example.com';
s.taboption('doc', form.Value, 'proxy_info_url', _('Proxy Info URL'),
_('URL to documentation about the local Privoxy setup.'));
s.taboption('doc', form.Value, 'trust_info_url', _('Trust Info URL'),
_('URL shown if access to an untrusted page is denied. Only applies if trust mechanism is enabled.'));
// Tab: Filter
s.tab('filtering', _('Files and Directories'), _("Privoxy can (and normally does) use a number of other files "
+ "for additional configuration, help and logging. This section of "
+ "the configuration file tells Privoxy where to find those other files."));
// LOGDIR
let logdir = s.taboption('filtering', form.Value, 'logdir', _('Log Directory'),
_('The directory where all logging takes place (i.e. where the logfile is located).<br />No trailing "/", please.'));
logdir.default = '/var/log';
logdir.rmempty = false;
// LOGFILE
let logfile = s.taboption('filtering', form.Value, 'logfile', _('Log File'),
_('The log file to use. File name, relative to log directory.'));
logfile.default = 'privoxy.log';
logfile.rmempty = false;
logfile.validate = function(section_id, value) {
if (!value || value.trim() === '')
return _('Mandatory Input: No File given!');
return true;
};
// CONFDIR
let confdir = s.taboption('filtering', form.Value, 'confdir', _('Configuration Directory'),
_('The directory where the other configuration files are located.'));
confdir.default = '/var/etc/privoxy';
confdir.rmempty = false;
// TEMPLDIR
let templdir = s.taboption('filtering', form.Value, 'templdir', _('Template Directory'),
_('An alternative directory where the templates are loaded from.<br />No trailing "/", please.'));
templdir.placeholder = '/etc/privoxy/templates';
templdir.rmempty = true;
// TEMPORARY DIRECTORY
let tmpdir = s.taboption('filtering', form.Value, 'temporary_directory', _('Temporary Directory'),
_("A directory where Privoxy can create temporary files.<br /><strong>Only when using 'external filters', Privoxy has to create temporary files.</strong>"));
tmpdir.rmempty = true;
tmpdir.placeholder = '/tmp';
tmpdir.default = '/tmp';
// ACTIONSFILE
let actionsfile = s.taboption('filtering', form.DynamicList, 'actionsfile', _('Action Files'),
_('The actions file(s) to use. Multiple actionsfile lines are permitted, and are in fact recommended!') +
'<br /><strong>match-all.action := </strong>' + _('Actions that are applied to all sites and maybe overruled later on.') +
'<br /><strong>default.action := </strong>' + _('Main actions file') +
'<br /><strong>user.action := </strong>' + _('User customizations'));
actionsfile.rmempty = true;
// FILTERFILE
let filterfile = s.taboption('filtering', form.DynamicList, 'filterfile', _('Filter files'),
_('The filter files contain content modification rules that use regular expressions.'));
filterfile.rmempty = true;
// TRUSTFILE
let trustfile = s.taboption('filtering', form.Value, 'trustfile', _('Trust file'),
_('The trust mechanism is an experimental feature for building white-lists and should be used with care.') +
'<br /><strong>' + _('It is NOT recommended for the casual user.') + '</strong>');
trustfile.placeholder = 'user.trust';
trustfile.rmempty = true;
// Tab: Access
s.tab('access', _('Access Control'), _("This tab controls the security-relevant aspects of Privoxy's configuration."));
// LISTEN ADDRESS
let listen = s.taboption('access', form.DynamicList, 'listen_address', _('Listen addresses'),
_('The address and TCP port on which Privoxy will listen for client requests.') + '<br />' +
_('Syntax: ') + 'IPv4:Port / [IPv6]:Port / Host:Port');
listen.default = '127.0.0.1:8118';
listen.rmempty = false;
listen.datatype = 'or(hostport,ipaddrport(1))';
// PERMIT ACCESS
let permit = s.taboption('access', form.DynamicList, 'permit_access', _('Permit access'),
_('Who can access what.') + '<br /><strong>' + _('Please read Privoxy manual for details!') + '</strong>');
permit.rmempty = true;
permit.datatype = 'ipmask';
// DENY ACCESS
let deny = s.taboption('access', form.DynamicList, 'deny_access', _('Deny access'),
_('Who can access what.') + '<br /><strong>' + _('Please read Privoxy manual for details!') + '</strong>');
deny.rmempty = true;
deny.datatype = 'ipmask';
// BUFFER LIMIT
let buffer = s.taboption('access', form.Value, 'buffer_limit', _('Buffer Limit'),
_('Maximum size (in KB) of the buffer for content filtering.') + '<br />' +
_('Value range 1 to 4096, no entry defaults to 4096'));
buffer.default = 4096;
buffer.rmempty = true;
buffer.datatype = 'and(uinteger,min(1),max(4096))'
// TOGGLE
let toggle = s.taboption('access', form.Flag, 'toggle', _('Toggle Status'),
_('Enable/Disable filtering when Privoxy starts.') + '<br />' +
_('Disabled == Transparent Proxy Mode'));
toggle.default = '1';
toggle.rmempty = false;
// ENABLE REMOTE TOGGLE
let remoteToggle = s.taboption('access', form.Flag, 'enable_remote_toggle', _('Enable remote toggle'),
_('Whether or not the web-based toggle feature may be used.'));
remoteToggle.rmempty = true;
// ENABLE REMOTE HTTP TOGGLE
let httpToggle = s.taboption('access', form.Flag, 'enable_remote_http_toggle', _('Enable remote toggle via HTTP'),
_('Whether or not Privoxy recognizes special HTTP headers to change toggle state.') + '<br /><strong>' +
_('This option will be removed in future releases as it has been obsoleted by the more general header taggers.') + '</strong>');
httpToggle.rmempty = true;
// ENABLE EDIT ACTIONS
let editActions = s.taboption('access', form.Flag, 'enable_edit_actions', _('Enable action file editor'),
_('Whether or not the web-based actions file editor may be used.'));
editActions.rmempty = true;
// ENFORCE BLOCKS
let enforce = s.taboption('access', form.Flag, 'enforce_blocks', _('Enforce page blocking'),
_('If enabled, Privoxy hides the "go there anyway" link. The user obviously should not be able to bypass any blocks.'));
enforce.rmempty = true;
// Tab: Forward
s.tab('forward', _('Forwarding'), ("Configure here the routing of HTTP requests through a chain of multiple proxies. "
+ "Note that parent proxies can severely decrease your privacy level. "
+ "Also specified here are SOCKS proxies."));
let o = s.taboption("forward", form.Flag, "enable_proxy_authentication_forwarding", _("Enable proxy authentication forwarding"));
o.description = _("Whether or not proxy authentication through Privoxy should work.") +
"<br /><strong>" + _("Enabling this option is NOT recommended if there is no parent proxy that requires authentication!") + "</strong>";
o = s.taboption("forward", form.DynamicList, "forward", _("Forward HTTP"));
o.description = _("To which parent HTTP proxy specific requests should be routed.") +
"<br />" + _("Syntax: target_pattern http_parent[:port]");
o = s.taboption("forward", form.DynamicList, "forward_socks4", _("Forward SOCKS 4"));
o.description = _("Through which SOCKS proxy (and optionally to which parent HTTP proxy) specific requests should be routed.") +
"<br />" + _("Syntax: target_pattern socks_proxy[:port] http_parent[:port]");
o = s.taboption("forward", form.DynamicList, "forward_socks4a", _("Forward SOCKS 4A"));
o.description = _("Through which SOCKS proxy (and optionally to which parent HTTP proxy) specific requests should be routed.") +
"<br />" + _("Syntax: target_pattern socks_proxy[:port] http_parent[:port]");
o = s.taboption("forward", form.DynamicList, "forward_socks5", _("Forward SOCKS 5"));
o.description = _("Through which SOCKS proxy (and optionally to which parent HTTP proxy) specific requests should be routed.") +
"<br />" + _("Syntax: target_pattern [user:pass@]socks_proxy[:port] http_parent[:port]");
o = s.taboption("forward", form.DynamicList, "forward_socks5t", _("Forward SOCKS 5t"));
o.description = _("Through which SOCKS proxy (and optionally to which parent HTTP proxy) specific requests should be routed.") +
"<br />" + _("Syntax: target_pattern [user:pass@]socks_proxy[:port] http_parent[:port]");
// Tab: Misc
s.tab('misc', _('Misc'));
o = s.taboption("misc", form.Flag, "accept_intercepted_requests", _("Accept intercepted requests"));
o.description = _("Whether intercepted requests should be treated as valid.");
o.orientation = "horizontal";
o = s.taboption("misc", form.Flag, "allow_cgi_request_crunching", _("Allow CGI request crunching"));
o.description = _("Whether requests to Privoxy's CGI pages can be blocked or redirected.");
o.orientation = "horizontal";
o = s.taboption("misc", form.Flag, "split_large_forms", _("Split large forms"));
o.description = _("Whether the CGI interface should stay compatible with broken HTTP clients.");
o.orientation = "horizontal";
o = s.taboption("misc", form.Value, "keep_alive_timeout", _("Keep-alive timeout"));
o.description = _("Number of seconds after which an open connection will no longer be reused.");
o.datatype = 'uinteger';
o = s.taboption("misc", form.Flag, "tolerate_pipelining", _("Tolerate pipelining"));
o.description = _("Whether or not pipelined requests should be served.");
o.orientation = "horizontal";
o = s.taboption("misc", form.Value, "default_server_timeout", _("Default server timeout"));
o.description = _("Assumed server-side keep-alive timeout (in seconds) if not specified by the server.");
o.datatype = 'uinteger';
o = s.taboption("misc", form.Flag, "connection_sharing", _("Connection sharing"));
o.description = _("Whether or not outgoing connections that have been kept alive should be shared between different incoming connections.");
o.orientation = "horizontal";
o = s.taboption("misc", form.Value, "socket_timeout", _("Socket timeout"));
o.default = 300;
o.description = _("Number of seconds after which a socket times out if no data is received.");
o.datatype = 'and(uinteger,min(1),max(300))'
o = s.taboption("misc", form.Value, "max_client_connections", _("Max. client connections"));
o.default = 128;
o.description = _("Maximum number of client connections that will be served.");
o.datatype = 'uinteger';
o = s.taboption("misc", form.Flag, "handle_as_empty_doc_returns_ok", _("Handle as empty doc returns ok"));
o.description = _("The status code Privoxy returns for pages blocked with +handle-as-empty-document.");
o.orientation = "horizontal";
o = s.taboption("misc", form.Flag, "enable_compression", _("Enable compression"));
o.description = _("Whether or not buffered content is compressed before delivery.");
o.orientation = "horizontal";
o = s.taboption("misc", form.Value, "compression_level", _("Compression level"));
o.default = 1;
o.description = _("The compression level that is passed to the zlib library when compressing buffered content.");
o.datatype = 'and(uinteger,min(1),max(9))'
o = s.taboption("misc", form.Value, "client_header_order", _("Client header order"));
o.description = _("The order in which client headers are sorted before forwarding them.") +
"<br />" + _("Syntax: Client header names delimited by spaces.");
// Tab: Debug
s.tab('debug', _('Debug'));
o = s.taboption("debug", form.Flag, "single_threaded", _("Single Threaded"));
o.description = _("Whether to run only one server thread.") +
"<br /><strong>" + _("This option is only there for debugging purposes. It will drastically reduce performance.") + "</strong>";
o.orientation = "horizontal";
o = s.taboption("debug", form.Flag, "debug_1", _("Debug 1"));
o.description = _("Log the destination for each request Privoxy let through. See also 'Debug 1024'.");
o.orientation = "horizontal";
o = s.taboption("debug", form.Flag, "debug_2", _("Debug 2"));
o.description = _("Show each connection status");
o.orientation = "horizontal";
o = s.taboption("debug", form.Flag, "debug_4", _("Debug 4"));
o.description = _("Show I/O status");
o.orientation = "horizontal";
o = s.taboption("debug", form.Flag, "debug_8", _("Debug 8"));
o.description = _("Show header parsing");
o.orientation = "horizontal";
o = s.taboption("debug", form.Flag, "debug_16", _("Debug 16"));
o.description = _("Log all data written to the network");
o.orientation = "horizontal";
o = s.taboption("debug", form.Flag, "debug_32", _("Debug 32"));
o.description = _("Debug force feature");
o.orientation = "horizontal";
o = s.taboption("debug", form.Flag, "debug_64", _("Debug 64"));
o.description = _("Debug regular expression filters");
o.orientation = "horizontal";
o = s.taboption("debug", form.Flag, "debug_128", _("Debug 128"));
o.description = _("Debug redirects");
o.orientation = "horizontal";
o = s.taboption("debug", form.Flag, "debug_256", _("Debug 256"));
o.description = _("Debug GIF de-animation");
o.orientation = "horizontal";
o = s.taboption("debug", form.Flag, "debug_512", _("Debug 512"));
o.description = _("Common Log Format");
o.orientation = "horizontal";
o = s.taboption("debug", form.Flag, "debug_1024", _("Debug 1024"));
o.description = _("Log the destination for requests Privoxy didn't let through, and the reason why.");
o.orientation = "horizontal";
o = s.taboption("debug", form.Flag, "debug_2048", _("Debug 2048"));
o.description = _("CGI user interface");
o.orientation = "horizontal";
o = s.taboption("debug", form.Flag, "debug_4096", _("Debug 4096"));
o.description = _("Startup banner and warnings.");
o.orientation = "horizontal";
o = s.taboption("debug", form.Flag, "debug_8192", _("Debug 8192"));
o.description = _("Non-fatal errors - *we highly recommended enabling this*");
o.orientation = "horizontal";
// debug_16384 is skipped
o = s.taboption("debug", form.Flag, "debug_32768", _("Debug 32768"));
o.description = _("Log all data read from the network");
o.orientation = "horizontal";
o = s.taboption("debug", form.Flag, "debug_65536", _("Debug 65536"));
o.description = _("Log the applying actions");
o.orientation = "horizontal";
return m.render();
}
});

View File

@@ -1,241 +0,0 @@
-- Copyright 2014-2016 Christian Schoenebeck <christian dot schoenebeck at gmail dot com>
-- Licensed under the Apache License, Version 2.0
module("luci.controller.privoxy", package.seeall)
local NX = require "nixio"
local NXFS = require "nixio.fs"
local DISP = require "luci.dispatcher"
local HTTP = require "luci.http"
local I18N = require "luci.i18n" -- not globally avalible here
local IPKG = require "luci.model.ipkg"
local UCI = require "luci.model.uci"
local UTIL = require "luci.util"
local SYS = require "luci.sys"
local srv_name = "privoxy"
local srv_ver_min = "3.0.23" -- minimum version of service required
local srv_ver_cmd = [[/usr/sbin/privoxy --version | awk {'print $3'}]]
local app_name = "luci-app-privoxy"
local app_title = "Privoxy WEB proxy"
local app_version = "1.0.6-1"
function index()
entry( {"admin", "services", "privoxy"}, cbi("privoxy"), _("Privoxy WEB proxy"), 59).acl_depends = { "luci-app-privoxy" }
entry( {"admin", "services", "privoxy", "logview"}, call("logread") ).leaf = true
entry( {"admin", "services", "privoxy", "startstop"}, post("startstop") ).leaf = true
entry( {"admin", "services", "privoxy", "status"}, call("get_pid") ).leaf = true
end
-- Application specific information functions
function app_description()
return I18N.translate("Privoxy is a non-caching web proxy with advanced filtering "
.. "capabilities for enhancing privacy, modifying web page data and HTTP headers, "
.. "controlling access, and removing ads and other obnoxious Internet junk.")
.. [[<br /><strong>]]
.. I18N.translate("For help use link at the relevant option")
.. [[</strong>]]
end
-- Standardized application/service functions
function app_title_main()
return [[<a href="javascript:alert(']]
.. I18N.translate("Version Information")
.. [[\n\n]] .. app_name
.. [[\n\t]] .. I18N.translate("Version") .. [[:\t]] .. app_version
.. [[\n\n]] .. srv_name .. [[ ]] .. I18N.translate("required") .. [[:]]
.. [[\n\t]] .. I18N.translate("Version") .. [[:\t]]
.. srv_ver_min .. [[ ]] .. I18N.translate("or higher")
.. [[\n\n]] .. srv_name .. [[ ]] .. I18N.translate("installed") .. [[:]]
.. [[\n\t]] .. I18N.translate("Version") .. [[:\t]]
.. (service_version() or I18N.translate("NOT installed"))
.. [[\n\n]]
.. [[')">]]
.. I18N.translate(app_title)
.. [[</a>]]
end
function service_version()
local ver = nil
IPKG.list_installed(srv_name, function(n, v, d)
if v and (#v > 0) then ver = v end
end
)
if not ver or (#ver == 0) then
ver = UTIL.exec(srv_ver_cmd)
if #ver == 0 then ver = nil end
end
return ver
end
function service_ok()
return IPKG.compare_versions((service_version() or "0"), ">=", srv_ver_min)
end
function service_update()
local url = DISP.build_url("admin", "system", "packages")
if not service_version() then
return [[<h3><strong><br /><font color="red">&#160;&#160;&#160;&#160;]]
.. I18N.translate("Software package '%s' is not installed." % srv_name)
.. [[</font><br /><br />&#160;&#160;&#160;&#160;]]
.. I18N.translate("required") .. [[: ]] .. srv_name .. [[ ]] .. srv_ver_min .. " " .. I18N.translate("or higher")
.. [[<br /><br />&#160;&#160;&#160;&#160;]]
.. [[<a href="]] .. url ..[[">]]
.. I18N.translate("Please install current version !")
.. [[</a><br />&#160;</strong></h3>]]
else
return [[<h3><strong><br /><br /><font color="red">&#160;&#160;&#160;&#160;]]
.. I18N.translate("Software package '%s' is outdated." % srv_name)
.. [[</font><br /><br />&#160;&#160;&#160;&#160;]]
.. I18N.translate("installed") .. ": " .. service_version()
.. [[<br /><br />&#160;&#160;&#160;&#160;]]
.. I18N.translate("required") .. ": " .. srv_ver_min .. " " .. I18N.translate("or higher")
.. [[<br /><br />&#160;&#160;&#160;&#160;]]
.. [[<a href="]] .. url ..[[">]]
.. I18N.translate("Please update to the current version!")
.. [[</a><br /><br />&#160;</strong></h3>]]
end
end
-- called by XHR.get from detail_logview.htm
function logread()
-- read application settings
local uci = UCI.cursor()
local logdir = uci:get("privoxy", "privoxy", "logdir") or "/var/log"
local logfile = uci:get("privoxy", "privoxy", "logfile") or "privoxy.log"
uci:unload("privoxy")
local ldata=NXFS.readfile(logdir .. "/" .. logfile)
if not ldata or #ldata == 0 then
ldata="_nodata_"
end
HTTP.write(ldata)
end
-- called by XHR.get from detail_startstop.htm
function startstop()
local pid = get_pid(true)
if pid > 0 then
SYS.call("/etc/init.d/privoxy stop")
NX.nanosleep(1) -- sleep a second
if NX.kill(pid, 0) then -- still running
NX.kill(pid, 9) -- send SIGKILL
end
pid = 0
else
SYS.call("/etc/init.d/privoxy start")
NX.nanosleep(1) -- sleep a second
pid = tonumber(NXFS.readfile("/var/run/privoxy.pid") or 0 )
if pid > 0 and not NX.kill(pid, 0) then
pid = 0 -- process did not start
end
end
HTTP.write(tostring(pid)) -- HTTP needs string not number
end
-- called by XHR.poll from detail_startstop.htm
-- and from lua (with parameter "true")
function get_pid(from_lua)
local pid = tonumber(NXFS.readfile("/var/run/privoxy.pid") or 0 )
if pid > 0 and not NX.kill(pid, 0) then
pid = 0
end
if from_lua then
return pid
else
HTTP.write(tostring(pid)) -- HTTP needs string not number
end
end
-- replacement of build-in parse of UCI option
-- modified AbstractValue.parse(self, section, novld) from cbi.lua
-- validate is called if rmempty/optional true or false
-- write is called if rmempty/optional true or false
function value_parse(self, section, novld)
local fvalue = self:formvalue(section)
local fexist = ( fvalue and (#fvalue > 0) ) -- not "nil" and "not empty"
local cvalue = self:cfgvalue(section)
local rm_opt = ( self.rmempty or self.optional )
local eq_cfg -- flag: equal cfgvalue
-- If favlue and cvalue are both tables and have the same content
-- make them identical
if type(fvalue) == "table" and type(cvalue) == "table" then
eq_cfg = (#fvalue == #cvalue)
if eq_cfg then
for i=1, #fvalue do
if cvalue[i] ~= fvalue[i] then
eq_cfg = false
end
end
end
if eq_cfg then
fvalue = cvalue
end
end
-- removed parameter "section" from function call because used/accepted nowhere
-- also removed call to function "transfer"
local vvalue, errtxt = self:validate(fvalue)
-- error handling; validate return "nil"
if not vvalue then
if novld then -- and "novld" set
return -- then exit without raising an error
end
if fexist then -- and there is a formvalue
self:add_error(section, "invalid", errtxt or self.title .. ": invalid")
return -- so data are invalid
elseif not rm_opt then -- and empty formvalue but NOT (rmempty or optional) set
self:add_error(section, "missing", errtxt or self.title .. ": missing")
return -- so data is missing
elseif errtxt then
self:add_error(section, "invalid", errtxt)
return
end
-- error ("\n option: " .. self.option ..
-- "\n fvalue: " .. tostring(fvalue) ..
-- "\n fexist: " .. tostring(fexist) ..
-- "\n cvalue: " .. tostring(cvalue) ..
-- "\n vvalue: " .. tostring(vvalue) ..
-- "\n vexist: " .. tostring(vexist) ..
-- "\n rm_opt: " .. tostring(rm_opt) ..
-- "\n eq_cfg: " .. tostring(eq_cfg) ..
-- "\n eq_def: " .. tostring(eq_def) ..
-- "\n novld : " .. tostring(novld) ..
-- "\n errtxt: " .. tostring(errtxt) )
end
-- lets continue with value returned from validate
eq_cfg = ( vvalue == cvalue ) -- update equal_config flag
local vexist = ( vvalue and (#vvalue > 0) ) and true or false -- not "nil" and "not empty"
local eq_def = ( vvalue == self.default ) -- equal_default flag
-- (rmempty or optional) and (no data or equal_default)
if rm_opt and (not vexist or eq_def) then
if self:remove(section) then -- remove data from UCI
self.section.changed = true -- and push events
end
return
end
-- not forcewrite and no changes, so nothing to write
if not self.forcewrite and eq_cfg then
return
end
-- we should have a valid value here
assert (vvalue, "\n option: " .. self.option ..
"\n fvalue: " .. tostring(fvalue) ..
"\n fexist: " .. tostring(fexist) ..
"\n cvalue: " .. tostring(cvalue) ..
"\n vvalue: " .. tostring(vvalue) ..
"\n vexist: " .. tostring(vexist) ..
"\n rm_opt: " .. tostring(rm_opt) ..
"\n eq_cfg: " .. tostring(eq_cfg) ..
"\n eq_def: " .. tostring(eq_def) ..
"\n errtxt: " .. tostring(errtxt) )
-- write data to UCI; raise event only on changes
if self:write(section, vvalue) and not eq_cfg then
self.section.changed = true
end
end

View File

@@ -1,922 +0,0 @@
-- Copyright 2014-2015 Christian Schoenebeck <christian dot schoenebeck at gmail dot com>
-- Licensed under the Apache License, Version 2.0
local NXFS = require "nixio.fs"
local SYS = require "luci.sys"
local UTIL = require "luci.util"
local DISP = require "luci.dispatcher"
local DTYP = require "luci.cbi.datatypes"
local CTRL = require "luci.controller.privoxy" -- this application's controller
local HELP = [[<a href="http://www.privoxy.org/user-manual/config.html#%s" target="_blank">%s</a>]]
-- Error handling if wrong privoxy version installed -- ########################
if not CTRL.service_ok() then
local f = SimpleForm("_sf")
f.title = CTRL.app_title_main()
f.description = CTRL.app_description()
f.embedded = true
f.submit = false
f.reset = false
local s = f:section(SimpleSection)
local v = s:option(DummyValue, "_dv")
v.titleref = DISP.build_url("admin", "system", "packages")
v.rawhtml = true
v.value = CTRL.service_update()
return f
end
-- #################################################################################################
-- Error handling if no config, create an empty one -- #########################
if not NXFS.access("/etc/config/privoxy") then
NXFS.writefile("/etc/config/privoxy", "")
end
-- cbi-map -- ##################################################################
local m = Map("privoxy")
m.title = CTRL.app_title_main()
m.description = CTRL.app_description()
function m.commit_handler(self)
if self.changed then -- changes ?
os.execute("/etc/init.d/privoxy reload &") -- reload configuration
end
end
-- cbi-section -- ##############################################################
local ns = m:section( NamedSection, "privoxy", "privoxy")
function ns.cfgvalue(self, section)
if not self.map:get("system") then -- section might not exist
self.map:set("system", nil, "system")
end
if not self.map:get(section) then -- section might not exist
self.map:set(section, nil, self.sectiontype)
end
return self.map:get(section)
end
ns:tab("sys",
translate("System"),
nil )
local function err_tab_sys(title, msg)
return string.format(translate("System") .. " - %s: %s", title, msg )
end
ns:tab("doc",
translate("Documentation"),
translate("If you intend to operate Privoxy for more users than just yourself, "
.. "it might be a good idea to let them know how to reach you, what you block "
.. "and why you do that, your policies, etc.") )
local function err_tab_doc(title, msg)
return string.format(translate("Documentation") .. " - %s: %s", title, msg )
end
ns:tab("filter",
translate("Files and Directories"),
translate("Privoxy can (and normally does) use a number of other files "
.. "for additional configuration, help and logging. This section of "
.. "the configuration file tells Privoxy where to find those other files.") )
local function err_tab_filter(title, msg)
return string.format(translate("Files and Directories") .. " - %s: %s", title, msg )
end
ns:tab("access",
translate("Access Control"),
translate("This tab controls the security-relevant aspects of Privoxy's configuration.") )
local function err_tab_access(title, msg)
return string.format(translate("Access Control") .. " - %s: %s", title, msg )
end
ns:tab("forward",
translate("Forwarding"),
translate("Configure here the routing of HTTP requests through a chain of multiple proxies. "
.. "Note that parent proxies can severely decrease your privacy level. "
.. "Also specified here are SOCKS proxies.") )
ns:tab("misc",
translate("Miscellaneous"),
nil)
local function err_tab_misc(self, msg)
return string.format(translate("Miscellaneous") .. " - %s: %s", self.title_base, msg )
end
ns:tab("debug",
translate("Logging"),
nil )
ns:tab("logview",
translate("Log File Viewer"),
nil )
-- tab: local -- ###############################################################
-- start/stop button -----------------------------------------------------------
local btn = ns:taboption("sys", Button, "_startstop")
btn.title = translate("Start / Stop")
btn.description = translate("Start/Stop Privoxy WEB Proxy")
btn.template = "privoxy/detail_startstop"
function btn.cfgvalue(self, section)
local pid = CTRL.get_pid(true)
if pid > 0 then
btn.inputtitle = "PID: " .. pid
btn.inputstyle = "reset"
btn.disabled = false
else
btn.inputtitle = translate("Start")
btn.inputstyle = "apply"
btn.disabled = false
end
return true
end
-- enabled ---------------------------------------------------------------------
local ena = ns:taboption("sys", Flag, "_enabled")
ena.title = translate("Enabled")
ena.description = translate("Enable/Disable autostart of Privoxy on system startup and interface events")
ena.orientation = "horizontal" -- put description under the checkbox
ena.rmempty = false
function ena.cfgvalue(self, section)
return (SYS.init.enabled("privoxy")) and "1" or "0"
end
function ena.write(self, section, value)
if value == "1" then
return SYS.init.enable("privoxy")
else
return SYS.init.disable("privoxy")
end
end
-- boot_delay ------------------------------------------------------------------
local bd = ns:taboption("sys", Value, "boot_delay")
bd.title = translate("Boot delay")
bd.description = translate("Delay (in seconds) during system boot before Privoxy start")
.. [[<br />]]
.. translate("During delay ifup-events are not monitored !")
bd.default = "10"
bd.rmempty = false
-- value is in a separate section so we need to do by hand
function bd.cfgvalue(self, section)
local value = tonumber(self.map:get("system", "boot_delay") )
if not value then return nil end
return tostring(value)
end
function bd.validate(self, value)
local val = tonumber(value)
if not val then
return nil, err_tab_sys(self.title, translate("Value is not a number") )
elseif val < 0 or val > 300 then
return nil, err_tab_sys(self.title, translate("Value not between 0 and 300") )
end
return value
end
function bd.write(self, section, value)
local fvalue = self:formvalue(section)
local cvalue = self:cfgvalue(section)
if (fvalue ~= cvalue) then
self.map:set("system", "boot_delay", value)
end
end
-- hostname --------------------------------------------------------------------
local hn = ns:taboption("doc", Value, "hostname")
hn.title = string.format(HELP, "HOSTNAME", "Hostname" )
hn.description = translate("The hostname shown on the CGI pages.")
hn.placeholder = SYS.hostname()
hn.optional = true
hn.rmempty = true
function hn.parse(self, section, novld)
CTRL.value_parse(self, section, novld)
end
-- user-manual -----------------------------------------------------------------
local um = ns:taboption("doc", Value, "user_manual")
um.title = string.format(HELP, "USER-MANUAL", "User Manual" )
um.description = translate("Location of the Privoxy User Manual.")
um.placeholder = "http://www.privoxy.org/user-manual/"
um.optional = true
um.rmempty = true
function um.parse(self, section, novld)
CTRL.value_parse(self, section, novld)
end
-- admin-address ---------------------------------------------------------------
local aa = ns:taboption("doc", Value, "admin_address")
aa.title_base = "Admin Email"
aa.title = string.format(HELP, "ADMIN-ADDRESS", aa.title_base )
aa.description = translate("An email address to reach the Privoxy administrator.")
aa.placeholder = "privoxy.admin@example.com"
aa.optional = true
aa.rmempty = true
function aa.validate(self, value)
if not value or #value == 0 then
return ""
end
if not (value:match("[A-Za-z0-9%.%%%+%-]+@[A-Za-z0-9%.%%%+%-]+%.%w%w%w?%w?")) then
return nil, err_tab_doc(self.title_base, translate("Invalid email address") )
end
return value
end
function aa.parse(self, section, novld)
CTRL.value_parse(self, section, novld)
end
-- proxy-info-url --------------------------------------------------------------
local piu = ns:taboption("doc", Value, "proxy_info_url")
piu.title = string.format(HELP, "PROXY-INFO-URL", "Proxy Info URL" )
piu.description = translate("A URL to documentation about the local Privoxy setup, configuration or policies.")
piu.optional = true
piu.rmempty = true
function piu.parse(self, section, novld)
CTRL.value_parse(self, section, novld)
end
-- trust-info-url --------------------------------------------------------------
local tiu = ns:taboption("doc", Value, "trust_info_url")
tiu.title = string.format(HELP, "TRUST-INFO-URL", "Trust Info URLs" )
tiu.description = translate("A URL to be displayed in the error page that users will see if access to an untrusted page is denied.")
.. [[<br /><strong>]]
.. translate("The value of this option only matters if the experimental trust mechanism has been activated.")
.. [[</strong>]]
tiu.optional = true
tiu.rmepty = true
function tiu.parse(self, section, novld)
CTRL.value_parse(self, section, novld)
end
-- tab: filter -- ##############################################################
-- logdir ----------------------------------------------------------------------
local ld = ns:taboption("filter", Value, "logdir")
ld.title_base = "Log Directory"
ld.title = string.format(HELP, "LOGDIR", ld.title_base )
ld.description = translate("The directory where all logging takes place (i.e. where the logfile is located).")
.. [[<br />]]
.. translate("No trailing '/', please.")
ld.default = "/var/log"
ld.rmempty = false
function ld.validate(self, value)
if not value or #value == 0 then
return nil, err_tab_filter(self.title_base, translate("Mandatory Input: No Directory given!") )
elseif not NXFS.access(value) then
return nil, err_tab_filter(self.title_base, translate("Directory does not exist!") )
else
return value
end
end
function ld.parse(self, section, novld)
CTRL.value_parse(self, section, novld)
end
-- logfile ---------------------------------------------------------------------
local lf = ns:taboption("filter", Value, "logfile")
lf.title_base = "Log File"
lf.title = string.format(HELP, "LOGFILE", lf.title_base )
lf.description = translate("The log file to use. File name, relative to log directory.")
lf.default = "privoxy.log"
lf.rmempty = false
function lf.validate(self, value)
if not value or #value == 0 then
return nil, err_tab_filter(self.title_base, translate("Mandatory Input: No File given!") )
else
return value
end
end
-- confdir ---------------------------------------------------------------------
local cd = ns:taboption("filter", Value, "confdir")
cd.title_base = "Configuration Directory"
cd.title = string.format(HELP, "CONFDIR", cd.title_base )
cd.description = translate("The directory where the other configuration files are located.")
.. [[<br />]]
.. translate("No trailing '/', please.")
cd.default = "/etc/privoxy"
cd.rmempty = false
function cd.validate(self, value)
if not value or #value == 0 then
return nil, err_tab_filter(self.title_base, translate("Mandatory Input: No Directory given!") )
elseif not NXFS.access(value) then
return nil, err_tab_filter(self.title_base, translate("Directory does not exist!") )
else
return value
end
end
-- templdir --------------------------------------------------------------------
local tld = ns:taboption("filter", Value, "templdir")
tld.title_base = "Template Directory"
tld.title = string.format(HELP, "TEMPLDIR", tld.title_base )
tld.description = translate("An alternative directory where the templates are loaded from.")
.. [[<br />]]
.. translate("No trailing '/', please.")
tld.placeholder = "/etc/privoxy/templates"
tld.rmempty = true
function tld.validate(self, value)
if not NXFS.access(value) then
return nil, err_tab_filter(self.title_base, translate("Directory does not exist!") )
else
return value
end
end
-- temporary-directory ---------------------------------------------------------
local td = ns:taboption("filter", Value, "temporary_directory")
td.title_base = "Temporary Directory"
td.title = string.format(HELP, "TEMPORARY-DIRECTORY", td.title_base )
td.description = translate("A directory where Privoxy can create temporary files.")
.. [[<br /><strong>]]
.. translate("Only when using 'external filters', Privoxy has to create temporary files.")
.. [[</strong>]]
td.rmempty = true
-- actionsfile -----------------------------------------------------------------
local af = ns:taboption("filter", DynamicList, "actionsfile")
af.title_base = "Action Files"
af.title = string.format(HELP, "ACTIONSFILE", af.title_base)
af.description = translate("The actions file(s) to use. Multiple actionsfile lines are permitted, and are in fact recommended!")
.. [[<br /><strong>match-all.action := </strong>]]
.. translate("Actions that are applied to all sites and maybe overruled later on.")
.. [[<br /><strong>default.action := </strong>]]
.. translate("Main actions file")
.. [[<br /><strong>user.action := </strong>]]
.. translate("User customizations")
af.rmempty = false
function af.validate(self, value)
if not value or #value == 0 then
return nil, err_tab_access(self.title_base, translate("Mandatory Input: No files given!") )
end
local confdir = cd:formvalue(ns.section)
local err = false
local file = ""
if type(value) == "table" then
local x
for _, x in ipairs(value) do
if x and #x > 0 then
if not NXFS.access(confdir .."/".. x) then
err = true
file = x
break -- break/leave for on error
end
end
end
else
if not NXFS.access(confdir .."/".. value) then
err = true
file = value
end
end
if err then
return nil, string.format(err_tab_filter(self.title_base, translate("File '%s' not found inside Configuration Directory") ), file)
end
return value
end
-- filterfile ------------------------------------------------------------------
local ff = ns:taboption("filter", DynamicList, "filterfile")
ff.title_base = "Filter files"
ff.title = string.format(HELP, "FILTERFILE", ff.title_base )
ff.description = translate("The filter files contain content modification rules that use regular expressions.")
ff.rmempty = false
function ff.validate(self, value)
if not value or #value == 0 then
return nil, err_tab_access(self.title_base, translate("Mandatory Input: No files given!") )
end
local confdir = cd:formvalue(ns.section)
local err = false
local file = ""
if type(value) == "table" then
local x
for _, x in ipairs(value) do
if x and #x > 0 then
if not NXFS.access(confdir .."/".. x) then
err = true
file = x
break -- break/leave for on error
end
end
end
else
if not NXFS.access(confdir .."/".. value) then
err = true
file = value
end
end
if err then
return nil, string.format(err_tab_filter(self.title_base, translate("File '%s' not found inside Configuration Directory") ), file )
end
return value
end
-- trustfile -------------------------------------------------------------------
local tf = ns:taboption("filter", Value, "trustfile")
tf.title_base = "Trust file"
tf.title = string.format(HELP, "TRUSTFILE", tf.title_base )
tf.description = translate("The trust mechanism is an experimental feature for building white-lists "
.."and should be used with care.")
.. [[<br /><strong>]]
.. translate("It is NOT recommended for the casual user.")
.. [[</strong>]]
tf.placeholder = "user.trust"
tf.rmempty = true
function tf.validate(self, value)
local confdir = cd:formvalue(ns.section)
local err = false
local file = ""
if type(value) == "table" then
local x
for _, x in ipairs(value) do
if x and #x > 0 then
if not NCFS.access(confdir .."/".. x) then
err = true
file = x
break -- break/leave for on error
end
end
end
else
if not NXFS.access(confdir .."/".. value) then
err = true
file = value
end
end
if err then
return nil, string.format(err_tab_filter(self.title_base, translate("File '%s' not found inside Configuration Directory") ), file )
end
return value
end
-- tab: access -- ##############################################################
-- listen-address --------------------------------------------------------------
local la = ns:taboption("access", DynamicList, "listen_address")
la.title_base = "Listen addresses"
la.title = string.format(HELP, "LISTEN-ADDRESS", la.title_base )
la.description = translate("The address and TCP port on which Privoxy will listen for client requests.")
.. [[<br />]]
.. translate("Syntax: ")
.. "IPv4:Port / [IPv6]:Port / Host:Port"
la.default = "127.0.0.1:8118"
la.rmempty = false
function la.validate(self, value)
if not value or #value == 0 then
return nil, err_tab_access(self.title_base, translate("Mandatory Input: No Data given!") )
end
local function check_value(v)
local _ret = UTIL.split(v, "]:")
local _ip
if _ret[2] then -- ip6 with port
_ip = string.gsub(_ret[1], "%[", "") -- remove "[" at beginning
if not DTYP.ip6addr(_ip) then
return translate("Mandatory Input: No valid IPv6 address given!")
elseif not DTYP.port(_ret[2]) then
return translate("Mandatory Input: No valid Port given!")
else
return nil
end
end
_ret = UTIL.split(v, ":")
if not _ret[2] then
return translate("Mandatory Input: No Port given!")
end
if #_ret[1] > 0 and not DTYP.host(_ret[1]) then -- :8118 is valid address
return translate("Mandatory Input: No valid IPv4 address or host given!")
elseif not DTYP.port(_ret[2]) then
return translate("Mandatory Input: No valid Port given!")
else
return nil
end
end
local err = ""
local entry = ""
if type(value) == "table" then
local x
for _, x in ipairs(value) do
if x and #x > 0 then
err = check_value(x)
if err then
entry = x
break
end
end
end
else
err = check_value(value)
entry = value
end
if err then
return nil, string.format(err_tab_access(self.title_base, err .. " - %s"), entry )
end
return value
end
-- permit-access ---------------------------------------------------------------
local pa = ns:taboption("access", DynamicList, "permit_access")
pa.title = string.format(HELP, "ACLS", "Permit access" )
pa.description = translate("Who can access what.")
.. [[<br /><strong>]]
.. translate("Please read Privoxy manual for details!")
.. [[</strong>]]
pa.rmempty = true
-- deny-access -----------------------------------------------------------------
local da = ns:taboption("access", DynamicList, "deny_access")
da.title = string.format(HELP, "ACLS", "Deny Access" )
da.description = translate("Who can access what.")
.. [[<br /><strong>]]
.. translate("Please read Privoxy manual for details!")
.. [[</strong>]]
da.rmempty = true
-- buffer-limit ----------------------------------------------------------------
local bl = ns:taboption("access", Value, "buffer_limit")
bl.title_base = "Buffer Limit"
bl.title = string.format(HELP, "BUFFER-LIMIT", bl.title_base )
bl.description = translate("Maximum size (in KB) of the buffer for content filtering.")
.. [[<br />]]
.. translate("Value range 1 to 4096, no entry defaults to 4096")
bl.default = 4096
bl.rmempty = true
function bl.validate(self, value)
local v = tonumber(value)
if not v then
return nil, err_tab_access(self.title_base, translate("Value is not a number") )
elseif v < 1 or v > 4096 then
return nil, err_tab_access(self.title_base, translate("Value not between 1 and 4096") )
elseif v == self.default then
return "" -- don't need to save default
end
return value
end
-- toggle ----------------------------------------------------------------------
local tgl = ns:taboption("access", Flag, "toggle")
tgl.title = string.format(HELP, "TOGGLE", "Toggle Status" )
tgl.description = translate("Enable/Disable filtering when Privoxy starts.")
.. [[<br />]]
.. translate("Disabled == Transparent Proxy Mode")
tgl.orientation = "horizontal"
tgl.default = "1"
tgl.rmempty = false
-- enable-remote-toggle --------------------------------------------------------
local ert = ns:taboption("access", Flag, "enable_remote_toggle")
ert.title = string.format(HELP, "ENABLE-REMOTE-TOGGLE", "Enable remote toggle" )
ert.description = translate("Whether or not the web-based toggle feature may be used.")
ert.orientation = "horizontal"
ert.rmempty = true
-- enable-remote-http-toggle ---------------------------------------------------
local eht = ns:taboption("access", Flag, "enable_remote_http_toggle")
eht.title = string.format(HELP, "ENABLE-REMOTE-HTTP-TOGGLE", "Enable remote toggle via HTTP" )
eht.description = translate("Whether or not Privoxy recognizes special HTTP headers to change toggle state.")
.. [[<br /><strong>]]
.. translate("This option will be removed in future releases as it has been obsoleted by the more general header taggers.")
.. [[</strong>]]
eht.orientation = "horizontal"
eht.rmempty = true
-- enable-edit-actions ---------------------------------------------------------
local eea = ns:taboption("access", Flag, "enable_edit_actions")
eea.title = string.format(HELP, "ENABLE-EDIT-ACTIONS", "Enable action file editor" )
eea.description = translate("Whether or not the web-based actions file editor may be used.")
eea.orientation = "horizontal"
eea.rmempty = true
-- enforce-blocks --------------------------------------------------------------
local eb = ns:taboption("access", Flag, "enforce_blocks")
eb.title = string.format(HELP, "ENFORCE-BLOCKS", "Enforce page blocking" )
eb.description = translate("If enabled, Privoxy hides the 'go there anyway' link. "
.. "The user obviously should not be able to bypass any blocks.")
eb.orientation = "horizontal"
eb.rmempty = true
-- tab: forward -- #############################################################
-- enable-proxy-authentication-forwarding --------------------------------------
local paf = ns:taboption("forward", Flag, "enable_proxy_authentication_forwarding")
paf.title = string.format(HELP, "ENABLE-PROXY-AUTHENTICATION-FORWARDING",
translate("Enable proxy authentication forwarding") )
paf.description = translate("Whether or not proxy authentication through Privoxy should work.")
.. [[<br /><strong>]]
.. translate("Enabling this option is NOT recommended if there is no parent proxy that requires authentication!")
.. [[</strong>]]
--paf.orientation = "horizontal"
paf.rmempty = true
-- forward ---------------------------------------------------------------------
local fwd = ns:taboption("forward", DynamicList, "forward")
fwd.title = string.format(HELP, "FORWARD", "Forward HTTP" )
fwd.description = translate("To which parent HTTP proxy specific requests should be routed.")
.. [[<br />]]
.. translate("Syntax: target_pattern http_parent[:port]")
fwd.rmempty = true
-- forward-socks4 --------------------------------------------------------------
local fs4 = ns:taboption("forward", DynamicList, "forward_socks4")
fs4.title = string.format(HELP, "SOCKS", "Forward SOCKS 4" )
fs4.description = translate("Through which SOCKS proxy (and optionally to which parent HTTP proxy) specific requests should be routed.")
.. [[<br />]]
.. translate("Syntax:")
.. " target_pattern socks_proxy[:port] http_parent[:port]"
fs4.rmempty = true
-- forward-socks4a -------------------------------------------------------------
local f4a = ns:taboption("forward", DynamicList, "forward_socks4a")
f4a.title = string.format(HELP, "SOCKS", "Forward SOCKS 4A" )
f4a.description = fs4.description
f4a.rmempty = true
-- forward-socks5 --------------------------------------------------------------
local fs5 = ns:taboption("forward", DynamicList, "forward_socks5")
fs5.title = string.format(HELP, "SOCKS", "Forward SOCKS 5" )
fs5.description = translate("Through which SOCKS proxy (and optionally to which parent HTTP proxy) specific requests should be routed.")
.. [[<br />]]
.. translate("Syntax:")
.. " target_pattern [user:pass@]socks_proxy[:port] http_parent[:port]"
fs5.rmempty = true
-- forward-socks5t -------------------------------------------------------------
local f5t = ns:taboption("forward", DynamicList, "forward_socks5t")
f5t.title = string.format(HELP, "SOCKS", "Forward SOCKS 5t" )
f5t.description = fs5.description
f5t.rmempty = true
-- tab: misc -- ################################################################
-- accept-intercepted-requests -------------------------------------------------
local air = ns:taboption("misc", Flag, "accept_intercepted_requests")
air.title = string.format(HELP, "ACCEPT-INTERCEPTED-REQUESTS", "Accept intercepted requests" )
air.description = translate("Whether intercepted requests should be treated as valid.")
air.orientation = "horizontal"
air.rmempty = true
-- allow-cgi-request-crunching -------------------------------------------------
local crc = ns:taboption("misc", Flag, "allow_cgi_request_crunching")
crc.title = string.format(HELP, "ALLOW-CGI-REQUEST-CRUNCHING", "Allow CGI request crunching" )
crc.description = translate("Whether requests to Privoxy's CGI pages can be blocked or redirected.")
crc.orientation = "horizontal"
crc.rmempty = true
-- split-large-forms -----------------------------------------------------------
local slf = ns:taboption("misc", Flag, "split_large_forms")
slf.title = string.format(HELP, "SPLIT-LARGE-FORMS", "Split large forms" )
slf.description = translate("Whether the CGI interface should stay compatible with broken HTTP clients.")
slf.orientation = "horizontal"
slf.rmempty = true
-- keep-alive-timeout ----------------------------------------------------------
local kat = ns:taboption("misc", Value, "keep_alive_timeout")
kat.title_base = "Keep-alive timeout"
kat.title = string.format(HELP, "KEEP-ALIVE-TIMEOUT", kat.title_base)
kat.description = translate("Number of seconds after which an open connection will no longer be reused.")
kat.rmempty = true
function kat.validate(self, value)
local v = tonumber(value)
if not v then
return nil, err_tab_misc(self.title_base, translate("Value is not a number") )
elseif v < 1 then
return nil, err_tab_misc(self.title_base, translate("Value not greater 0 or empty") )
end
return value
end
-- tolerate-pipelining ---------------------------------------------------------
local tp = ns:taboption("misc", Flag, "tolerate_pipelining")
tp.title = string.format(HELP, "TOLERATE-PIPELINING", "Tolerate pipelining" )
tp.description = translate("Whether or not pipelined requests should be served.")
tp.orientation = "horizontal"
tp.rmempty = true
-- default-server-timeout ------------------------------------------------------
local dst = ns:taboption("misc", Value, "default_server_timeout")
dst.title_base = "Default server timeout"
dst.title = string.format(HELP, "DEFAULT-SERVER-TIMEOUT", dst.title_base)
dst.description = translate("Assumed server-side keep-alive timeout (in seconds) if not specified by the server.")
dst.rmempty = true
function dst.validate(self, value)
local v = tonumber(value)
if not v then
return nil, err_tab_misc(self.title_base, translate("Value is not a number") )
elseif v < 1 then
return nil, err_tab_misc(self.title_base, translate("Value not greater 0 or empty") )
end
return value
end
-- connection-sharing ----------------------------------------------------------
local cs = ns:taboption("misc", Flag, "connection_sharing")
cs.title = string.format(HELP, "CONNECTION-SHARING", "Connection sharing" )
cs.description = translate("Whether or not outgoing connections that have been kept alive should be shared between different incoming connections.")
cs.orientation = "horizontal"
cs.rmempty = true
-- socket-timeout --------------------------------------------------------------
local st = ns:taboption("misc", Value, "socket_timeout")
st.title_base = "Socket timeout"
st.title = string.format(HELP, "SOCKET-TIMEOUT", st.title_base )
st.description = translate("Number of seconds after which a socket times out if no data is received.")
st.default = 300
st.rmempty = true
function st.validate(self, value)
local v = tonumber(value)
if not v then
return nil, err_tab_misc(self.title_base, translate("Value is not a number") )
elseif v < 1 then
return nil, err_tab_misc(self.title_base, translate("Value not greater 0 or empty") )
elseif v == self.default then
return "" -- don't need to save default
end
return value
end
-- max-client-connections ------------------------------------------------------
local mcc = ns:taboption("misc", Value, "max_client_connections")
mcc.title_base = "Max. client connections"
mcc.title = string.format(HELP, "MAX-CLIENT-CONNECTIONS", mcc.title_base )
mcc.description = translate("Maximum number of client connections that will be served.")
mcc.default = 128
mcc.rmempty = true
function mcc.validate(self, value)
local v = tonumber(value)
if not v then
return nil, err_tab_misc(self.title_base, translate("Value is not a number") )
elseif v < 1 then
return nil, err_tab_misc(self.title_base, translate("Value not greater 0 or empty") )
elseif v == self.default then
return "" -- don't need to save default
end
return value
end
-- handle-as-empty-doc-returns-ok ----------------------------------------------
local her = ns:taboption("misc", Flag, "handle_as_empty_doc_returns_ok")
her.title = string.format(HELP, "HANDLE-AS-EMPTY-DOC-RETURNS-OK", "Handle as empty doc returns ok" )
her.description = translate("The status code Privoxy returns for pages blocked with +handle-as-empty-document.")
her.orientation = "horizontal"
her.rmempty = true
-- enable-compression ----------------------------------------------------------
local ec = ns:taboption("misc", Flag, "enable_compression")
ec.title = string.format(HELP, "ENABLE-COMPRESSION", "Enable compression" )
ec.description = translate("Whether or not buffered content is compressed before delivery.")
ec.orientation = "horizontal"
ec.rmempty = true
-- compression-level -----------------------------------------------------------
local cl = ns:taboption("misc", Value, "compression_level")
cl.title_base = "Compression level"
cl.title = string.format(HELP, "COMPRESSION-LEVEL", cl.title_base )
cl.description = translate("The compression level that is passed to the zlib library when compressing buffered content.")
cl.default = 1
cl.rmempty = true
function cl.validate(self, value)
local v = tonumber(value)
if not v then
return nil, err_tab_misc(self.title_base, translate("Value is not a number") )
elseif v < 0 or v > 9 then
return nil, err_tab_misc(self.title_base, translate("Value not between 0 and 9") )
elseif v == self.default then
return "" -- don't need to save default
end
return value
end
-- client-header-order ---------------------------------------------------------
local cho = ns:taboption("misc", Value, "client_header_order")
cho.title = string.format(HELP, "CLIENT-HEADER-ORDER", "Client header order" )
cho.description = translate("The order in which client headers are sorted before forwarding them.")
.. [[<br />]]
.. translate("Syntax: Client header names delimited by spaces.")
cho.rmempty = true
-- "debug"-tab definition -- ###################################################
-- single-threaded -------------------------------------------------------------
local st = ns:taboption("debug", Flag, "single_threaded")
st.title = string.format(HELP, "SINGLE-THREADED", "Single Threaded" )
st.description = translate("Whether to run only one server thread.")
.. [[<br /><strong>]]
.. translate("This option is only there for debugging purposes. It will drastically reduce performance.")
.. [[</strong>]]
st.rmempty = true
-- debug 1 ---------------------------------------------------------------------
local d0 = ns:taboption("debug", Flag, "debug_1")
d0.title = string.format(HELP, "DEBUG", "Debug 1" )
d0.description = translate("Log the destination for each request Privoxy let through. See also 'Debug 1024'.")
d0.rmempty = true
-- debug 2 ---------------------------------------------------------------------
local d1 = ns:taboption("debug", Flag, "debug_2")
d1.title = string.format(HELP, "DEBUG", "Debug 2" )
d1.description = translate("Show each connection status")
d1.rmempty = true
-- debug 4 ---------------------------------------------------------------------
local d2 = ns:taboption("debug", Flag, "debug_4")
d2.title = string.format(HELP, "DEBUG", "Debug 4" )
d2.description = translate("Show I/O status")
d2.rmempty = true
-- debug 8 ---------------------------------------------------------------------
local d3 = ns:taboption("debug", Flag, "debug_8")
d3.title = string.format(HELP, "DEBUG", "Debug 8" )
d3.description = translate("Show header parsing")
d3.rmempty = true
-- debug 16 --------------------------------------------------------------------
local d4 = ns:taboption("debug", Flag, "debug_16")
d4.title = string.format(HELP, "DEBUG", "Debug 16" )
d4.description = translate("Log all data written to the network")
d4.rmempty = true
-- debug 32 --------------------------------------------------------------------
local d5 = ns:taboption("debug", Flag, "debug_32")
d5.title = string.format(HELP, "DEBUG", "Debug 32" )
d5.description = translate("Debug force feature")
d5.rmempty = true
-- debug 64 --------------------------------------------------------------------
local d6 = ns:taboption("debug", Flag, "debug_64")
d6.title = string.format(HELP, "DEBUG", "Debug 64" )
d6.description = translate("Debug regular expression filters")
d6.rmempty = true
-- debug 128 -------------------------------------------------------------------
local d7 = ns:taboption("debug", Flag, "debug_128")
d7.title = string.format(HELP, "DEBUG", "Debug 128" )
d7.description = translate("Debug redirects")
d7.rmempty = true
-- debug 256 -------------------------------------------------------------------
local d8 = ns:taboption("debug", Flag, "debug_256")
d8.title = string.format(HELP, "DEBUG", "Debug 256" )
d8.description = translate("Debug GIF de-animation")
d8.rmempty = true
-- debug 512 -------------------------------------------------------------------
local d9 = ns:taboption("debug", Flag, "debug_512")
d9.title = string.format(HELP, "DEBUG", "Debug 512" )
d9.description = translate("Common Log Format")
d9.rmempty = true
-- debug 1024 ------------------------------------------------------------------
local d10 = ns:taboption("debug", Flag, "debug_1024")
d10.title = string.format(HELP, "DEBUG", "Debug 1024" )
d10.description = translate("Log the destination for requests Privoxy didn't let through, and the reason why.")
d10.rmempty = true
-- debug 2048 ------------------------------------------------------------------
local d11 = ns:taboption("debug", Flag, "debug_2048")
d11.title = string.format(HELP, "DEBUG", "Debug 2048" )
d11.description = translate("CGI user interface")
d11.rmempty = true
-- debug 4096 ------------------------------------------------------------------
local d12 = ns:taboption("debug", Flag, "debug_4096")
d12.title = string.format(HELP, "DEBUG", "Debug 4096" )
d12.description = translate("Startup banner and warnings.")
d12.rmempty = true
-- debug 8192 ------------------------------------------------------------------
local d13 = ns:taboption("debug", Flag, "debug_8192")
d13.title = string.format(HELP, "DEBUG", "Debug 8192" )
d13.description = translate("Non-fatal errors - *we highly recommended enabling this*")
d13.rmempty = true
-- debug 16384 -----------------------------------------------------------------
--[[ TODO ???
local d14 = ns:taboption("debug", Flag, "debug_16384")
d14.title = string.format(HELP, "DEBUG", "Debug 16384" )
d14.description = translate("")
d14.rmempty = true
]]--
-- debug 32768 -----------------------------------------------------------------
local d15 = ns:taboption("debug", Flag, "debug_32768")
d15.title = string.format(HELP, "DEBUG", "Debug 32768" )
d15.description = translate("Log all data read from the network")
d15.rmempty = true
-- debug 65536 -----------------------------------------------------------------
local d16 = ns:taboption("debug", Flag, "debug_65536")
d16.title = string.format(HELP, "DEBUG", "Debug 65536" )
d16.description = translate("Log the applying actions")
d16.rmempty = true
-- tab: logview -- #############################################################
local lv = ns:taboption("logview", DummyValue, "_logview")
lv.template = "privoxy/detail_logview"
lv.inputtitle = translate("Read / Reread log file")
lv.rows = 50
function lv.cfgvalue(self, section)
local lfile=self.map:get(ns.section, "logdir") .. "/" .. self.map:get(ns.section, "logfile")
if NXFS.access(lfile) then
return lfile .. "\n" .. translate("Please press [Read] button")
end
return lfile .. "\n" .. translate("File not found or empty")
end
return m

View File

@@ -1,56 +0,0 @@
<!-- ++ BEGIN ++ Privoxy ++ detail_logview.htm ++ -->
<script>
function onclick_logview(section, bottom) {
// get elements
var txt = document.getElementById("cbid.privoxy.privoxy._logview.txt"); // TextArea
if ( !txt ) { return; } // security check
var lvXHR = new XHR();
lvXHR.get('<%=url('admin/services/privoxy/logview')%>', null,
function(x) {
if (x.responseText == "_nodata_")
txt.value = "<%:File not found or empty%>";
else
txt.value = x.responseText;
if (bottom)
txt.scrollTop = txt.scrollHeight;
else
txt.scrollTop = 0; }
);
}
</script>
<%+cbi/valueheader%>
<br />
<%
-- one button on top, one at the buttom
%>
<input class="cbi-button cbi-input-button" style="align: center; width: 100%" type="button" onclick="onclick_logview(this.name, false)"
<%=
attr("name", section) .. attr("id", cbid .. ".btn1") .. attr("value", self.inputtitle)
%> />
<br /><br />
<%
-- set a readable style taken from openwrt theme for textarea#syslog
-- in openwrt theme there are problems with a width of 100 so we check for theme and set to lower value
%>
<textarea style="width: <%if media == "/luci-static/openwrt.org" then%>98.7%<%else%>100%<%end%> ; min-height: 500px; border: 3px solid #cccccc; padding: 5px; font-family: monospace; resize: none;" wrap="off" readonly="readonly"
<%=
attr("name", cbid .. ".txt") .. attr("id", cbid .. ".txt") .. ifattr(self.rows, "rows")
%> >
<%-=pcdata(self:cfgvalue(section))-%>
</textarea>
<br /><br />
<%
-- one button on top, one at the buttom
%>
<input class="cbi-button cbi-input-button" style="align: center; width: 100%" type="button" onclick="onclick_logview(this.name, true)"
<%= attr("name", section) .. attr("id", cbid .. ".btn2") .. attr("value", self.inputtitle) %> />
<%+cbi/valuefooter%>
<!-- ++ END ++ Privoxy ++ detail_logview.htm ++ -->

View File

@@ -1,49 +0,0 @@
<!-- ++ BEGIN ++ Privoxy ++ detail_startstop.htm ++ -->
<script>
// show XHR.poll/XHR.get response on button
function _data2elements(x) {
var btn = document.getElementById("cbid.privoxy.privoxy._startstop");
if ( ! btn ) { return; } // security check
if (x.responseText == "0") {
btn.value = "<%:Start%>";
btn.className = "cbi-button cbi-button-apply";
btn.disabled = false;
} else {
btn.value = "PID: " + x.responseText;
btn.className = "cbi-button cbi-button-reset";
btn.disabled = false;
}
}
// event handler for start/stop button
function onclick_startstop(id) {
// do start/stop
var btnXHR = new XHR();
btnXHR.post('<%=url('admin/services/privoxy/startstop')%>', { token: '<%=token%>' },
function(x) { _data2elements(x); }
);
}
XHR.poll(-1, '<%=url('admin/services/privoxy/status')%>', null,
function(x, data) { _data2elements(x); }
);
</script>
<%+cbi/valueheader%>
<% if self:cfgvalue(section) ~= false then
-- We need to garantie that function cfgvalue run first to set missing parameters
%>
<!-- style="font-size: 100%;" needed for openwrt theme to fix font size -->
<!-- type="button" onclick="..." enable standard onclick functionalty -->
<input class="cbi-button cbi-input-<%=self.inputstyle or "button" %>" style="font-size: 100%;" type="button" onclick="onclick_startstop(this.id)"
<%=
attr("name", section) .. attr("id", cbid) .. attr("value", self.inputtitle) .. ifattr(self.disabled, "disabled")
%> />
<% end %>
<%+cbi/valuefooter%>
<!-- ++ END ++ Privoxy ++ detail_startstop.htm ++ -->

View File

@@ -1,602 +0,0 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2024-07-15 20:49+0000\n"
"Last-Translator: Rex_sa <rex.sa@pm.me>\n"
"Language-Team: Arabic <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsprivoxy/ar/>\n"
"Language: ar\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Generator: Weblate 5.7-dev\n"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:236
msgid ""
"A URL to be displayed in the error page that users will see if access to an "
"untrusted page is denied."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:226
msgid ""
"A URL to documentation about the local Privoxy setup, configuration or "
"policies."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:325
msgid "A directory where Privoxy can create temporary files."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:84
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:87
msgid "Access Control"
msgstr "صلاحية الدخول"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:337
msgid "Actions that are applied to all sites and maybe overruled later on."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:308
msgid "An alternative directory where the templates are loaded from."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:206
msgid "An email address to reach the Privoxy administrator."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:695
msgid ""
"Assumed server-side keep-alive timeout (in seconds) if not specified by the "
"server."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:151
msgid "Boot delay"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:873
msgid "CGI user interface"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:861
msgid "Common Log Format"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:92
msgid ""
"Configure here the routing of HTTP requests through a chain of multiple "
"proxies. Note that parent proxies can severely decrease your privacy level. "
"Also specified here are SOCKS proxies."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:855
msgid "Debug GIF de-animation"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:837
msgid "Debug force feature"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:849
msgid "Debug redirects"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:843
msgid "Debug regular expression filters"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:152
msgid "Delay (in seconds) during system boot before Privoxy start"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:261
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:298
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:315
msgid "Directory does not exist!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:557
msgid "Disabled == Transparent Proxy Mode"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:66
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:71
msgid "Documentation"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:154
msgid "During delay ifup-events are not monitored !"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:599
msgid "Enable proxy authentication forwarding"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:135
msgid ""
"Enable/Disable autostart of Privoxy on system startup and interface events"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:555
msgid "Enable/Disable filtering when Privoxy starts."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:134
msgid "Enabled"
msgstr "مفعَّل"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:602
msgid ""
"Enabling this option is NOT recommended if there is no parent proxy that "
"requires authentication!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:368
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:404
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:442
msgid "File '%s' not found inside Configuration Directory"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:919
#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_logview.htm:12
msgid "File not found or empty"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:75
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:80
msgid "Files and Directories"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:36
msgid "For help use link at the relevant option"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:91
msgid "Forwarding"
msgstr ""
#: applications/luci-app-privoxy/root/usr/share/rpcd/acl.d/luci-app-privoxy.json:3
msgid "Grant UCI access for luci-app-privoxy"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:589
msgid ""
"If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
"should not be able to bypass any blocks."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:67
msgid ""
"If you intend to operate Privoxy for more users than just yourself, it might "
"be a good idea to let them know how to reach you, what you block and why you "
"do that, your policies, etc."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:215
msgid "Invalid email address"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:416
msgid "It is NOT recommended for the casual user."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:194
msgid "Location of the Privoxy User Manual."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:108
msgid "Log File Viewer"
msgstr "عارض ملف السجل"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:899
msgid "Log all data read from the network"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:831
msgid "Log all data written to the network"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:905
msgid "Log the applying actions"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:807
msgid ""
"Log the destination for each request Privoxy let through. See also 'Debug "
"1024'."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:867
msgid ""
"Log the destination for requests Privoxy didn't let through, and the reason "
"why."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:104
msgid "Logging"
msgstr "تسجيل"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:339
msgid "Main actions file"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:461
msgid "Mandatory Input: No Data given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:259
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:296
msgid "Mandatory Input: No Directory given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:279
msgid "Mandatory Input: No File given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:479
msgid "Mandatory Input: No Port given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:345
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:381
msgid "Mandatory Input: No files given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:482
msgid "Mandatory Input: No valid IPv4 address or host given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:470
msgid "Mandatory Input: No valid IPv6 address given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:472
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:484
msgid "Mandatory Input: No valid Port given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:737
msgid "Maximum number of client connections that will be served."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:535
msgid "Maximum size (in KB) of the buffer for content filtering."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:97
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:100
msgid "Miscellaneous"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:51
msgid "NOT installed"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:254
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:291
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:310
msgid "No trailing '/', please."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:885
msgid "Non-fatal errors - *we highly recommended enabling this*"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:718
msgid ""
"Number of seconds after which a socket times out if no data is received."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:672
msgid ""
"Number of seconds after which an open connection will no longer be reused."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:327
msgid ""
"Only when using 'external filters', Privoxy has to create temporary files."
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:81
msgid "Please install current version !"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:917
msgid "Please press [Read] button"
msgstr "الرجاء الضغط على زر [قراءة]"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:518
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:527
msgid "Please read Privoxy manual for details!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:92
msgid "Please update to the current version!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:24
msgid "Privoxy WEB proxy"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:76
msgid ""
"Privoxy can (and normally does) use a number of other files for additional "
"configuration, help and logging. This section of the configuration file "
"tells Privoxy where to find those other files."
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:32
msgid ""
"Privoxy is a non-caching web proxy with advanced filtering capabilities for "
"enhancing privacy, modifying web page data and HTTP headers, controlling "
"access, and removing ads and other obnoxious Internet junk."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:912
msgid "Read / Reread log file"
msgstr "قراءة / إعادة قراءة ملف السجل"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:819
msgid "Show I/O status"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:813
msgid "Show each connection status"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:825
msgid "Show header parsing"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:76
msgid "Software package '%s' is not installed."
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:85
msgid "Software package '%s' is outdated."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:125
#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_startstop.htm:10
msgid "Start"
msgstr "بداية"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:115
msgid "Start / Stop"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:116
msgid "Start/Stop Privoxy WEB Proxy"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:879
msgid "Startup banner and warnings."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:455
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:620
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:635
msgid "Syntax:"
msgstr "بناء الجملة:"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:790
msgid "Syntax: Client header names delimited by spaces."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:612
msgid "Syntax: target_pattern http_parent[:port]"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:59
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:62
msgid "System"
msgstr "نظام"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:335
msgid ""
"The actions file(s) to use. Multiple actionsfile lines are permitted, and "
"are in fact recommended!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:453
msgid ""
"The address and TCP port on which Privoxy will listen for client requests."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:770
msgid ""
"The compression level that is passed to the zlib library when compressing "
"buffered content."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:252
msgid ""
"The directory where all logging takes place (i.e. where the logfile is "
"located)."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:289
msgid "The directory where the other configuration files are located."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:377
msgid ""
"The filter files contain content modification rules that use regular "
"expressions."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:183
msgid "The hostname shown on the CGI pages."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:274
msgid "The log file to use. File name, relative to log directory."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:788
msgid "The order in which client headers are sorted before forwarding them."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:755
msgid ""
"The status code Privoxy returns for pages blocked with +handle-as-empty-"
"document."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:413
msgid ""
"The trust mechanism is an experimental feature for building white-lists and "
"should be used with care."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:238
msgid ""
"The value of this option only matters if the experimental trust mechanism "
"has been activated."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:800
msgid ""
"This option is only there for debugging purposes. It will drastically reduce "
"performance."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:574
msgid ""
"This option will be removed in future releases as it has been obsoleted by "
"the more general header taggers."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:85
msgid ""
"This tab controls the security-relevant aspects of Privoxy's configuration."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:618
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:633
msgid ""
"Through which SOCKS proxy (and optionally to which parent HTTP proxy) "
"specific requests should be routed."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:610
msgid "To which parent HTTP proxy specific requests should be routed."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:341
msgid "User customizations"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:166
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:543
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:677
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:700
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:724
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:743
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:776
msgid "Value is not a number"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:168
msgid "Value not between 0 and 300"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:778
msgid "Value not between 0 and 9"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:545
msgid "Value not between 1 and 4096"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:679
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:702
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:726
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:745
msgid "Value not greater 0 or empty"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:537
msgid "Value range 1 to 4096, no entry defaults to 4096"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:45
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:47
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:50
msgid "Version"
msgstr "الإصدار"
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:43
msgid "Version Information"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:650
msgid "Whether intercepted requests should be treated as valid."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:572
msgid ""
"Whether or not Privoxy recognizes special HTTP headers to change toggle "
"state."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:762
msgid "Whether or not buffered content is compressed before delivery."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:710
msgid ""
"Whether or not outgoing connections that have been kept alive should be "
"shared between different incoming connections."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:687
msgid "Whether or not pipelined requests should be served."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:600
msgid "Whether or not proxy authentication through Privoxy should work."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:582
msgid "Whether or not the web-based actions file editor may be used."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:565
msgid "Whether or not the web-based toggle feature may be used."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:657
msgid "Whether requests to Privoxy's CGI pages can be blocked or redirected."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:664
msgid ""
"Whether the CGI interface should stay compatible with broken HTTP clients."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:798
msgid "Whether to run only one server thread."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:516
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:525
msgid "Who can access what."
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:49
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:87
msgid "installed"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:48
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
msgid "or higher"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:46
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
msgid "required"
msgstr ""

View File

@@ -1,604 +0,0 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2025-05-30 02:35+0000\n"
"Last-Translator: 109247019824 <109247019824@users.noreply.hosted.weblate.org>"
"\n"
"Language-Team: Bulgarian <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsprivoxy/bg/>\n"
"Language: bg\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.12-dev\n"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:236
msgid ""
"A URL to be displayed in the error page that users will see if access to an "
"untrusted page is denied."
msgstr ""
"URL адрес, който да се показва в страницата за грешка, ако бъде отказан "
"достъп до ненадеждна страница."
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:226
msgid ""
"A URL to documentation about the local Privoxy setup, configuration or "
"policies."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:325
msgid "A directory where Privoxy can create temporary files."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:84
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:87
msgid "Access Control"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:337
msgid "Actions that are applied to all sites and maybe overruled later on."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:308
msgid "An alternative directory where the templates are loaded from."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:206
msgid "An email address to reach the Privoxy administrator."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:695
msgid ""
"Assumed server-side keep-alive timeout (in seconds) if not specified by the "
"server."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:151
msgid "Boot delay"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:873
msgid "CGI user interface"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:861
msgid "Common Log Format"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:92
msgid ""
"Configure here the routing of HTTP requests through a chain of multiple "
"proxies. Note that parent proxies can severely decrease your privacy level. "
"Also specified here are SOCKS proxies."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:855
msgid "Debug GIF de-animation"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:837
msgid "Debug force feature"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:849
msgid "Debug redirects"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:843
msgid "Debug regular expression filters"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:152
msgid "Delay (in seconds) during system boot before Privoxy start"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:261
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:298
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:315
msgid "Directory does not exist!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:557
msgid "Disabled == Transparent Proxy Mode"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:66
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:71
msgid "Documentation"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:154
msgid "During delay ifup-events are not monitored !"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:599
msgid "Enable proxy authentication forwarding"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:135
msgid ""
"Enable/Disable autostart of Privoxy on system startup and interface events"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:555
msgid "Enable/Disable filtering when Privoxy starts."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:134
msgid "Enabled"
msgstr "Включено"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:602
msgid ""
"Enabling this option is NOT recommended if there is no parent proxy that "
"requires authentication!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:368
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:404
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:442
msgid "File '%s' not found inside Configuration Directory"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:919
#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_logview.htm:12
msgid "File not found or empty"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:75
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:80
msgid "Files and Directories"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:36
msgid "For help use link at the relevant option"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:91
msgid "Forwarding"
msgstr ""
#: applications/luci-app-privoxy/root/usr/share/rpcd/acl.d/luci-app-privoxy.json:3
msgid "Grant UCI access for luci-app-privoxy"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:589
msgid ""
"If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
"should not be able to bypass any blocks."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:67
msgid ""
"If you intend to operate Privoxy for more users than just yourself, it might "
"be a good idea to let them know how to reach you, what you block and why you "
"do that, your policies, etc."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:215
msgid "Invalid email address"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:416
msgid "It is NOT recommended for the casual user."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:194
msgid "Location of the Privoxy User Manual."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:108
msgid "Log File Viewer"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:899
msgid "Log all data read from the network"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:831
msgid "Log all data written to the network"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:905
msgid "Log the applying actions"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:807
msgid ""
"Log the destination for each request Privoxy let through. See also 'Debug "
"1024'."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:867
msgid ""
"Log the destination for requests Privoxy didn't let through, and the reason "
"why."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:104
msgid "Logging"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:339
msgid "Main actions file"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:461
msgid "Mandatory Input: No Data given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:259
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:296
msgid "Mandatory Input: No Directory given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:279
msgid "Mandatory Input: No File given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:479
msgid "Mandatory Input: No Port given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:345
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:381
msgid "Mandatory Input: No files given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:482
msgid "Mandatory Input: No valid IPv4 address or host given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:470
msgid "Mandatory Input: No valid IPv6 address given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:472
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:484
msgid "Mandatory Input: No valid Port given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:737
msgid "Maximum number of client connections that will be served."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:535
msgid "Maximum size (in KB) of the buffer for content filtering."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:97
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:100
msgid "Miscellaneous"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:51
msgid "NOT installed"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:254
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:291
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:310
msgid "No trailing '/', please."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:885
msgid "Non-fatal errors - *we highly recommended enabling this*"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:718
msgid ""
"Number of seconds after which a socket times out if no data is received."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:672
msgid ""
"Number of seconds after which an open connection will no longer be reused."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:327
msgid ""
"Only when using 'external filters', Privoxy has to create temporary files."
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:81
msgid "Please install current version !"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:917
msgid "Please press [Read] button"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:518
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:527
msgid "Please read Privoxy manual for details!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:92
msgid "Please update to the current version!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:24
msgid "Privoxy WEB proxy"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:76
msgid ""
"Privoxy can (and normally does) use a number of other files for additional "
"configuration, help and logging. This section of the configuration file "
"tells Privoxy where to find those other files."
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:32
msgid ""
"Privoxy is a non-caching web proxy with advanced filtering capabilities for "
"enhancing privacy, modifying web page data and HTTP headers, controlling "
"access, and removing ads and other obnoxious Internet junk."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:912
msgid "Read / Reread log file"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:819
msgid "Show I/O status"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:813
msgid "Show each connection status"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:825
msgid "Show header parsing"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:76
msgid "Software package '%s' is not installed."
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:85
msgid "Software package '%s' is outdated."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:125
#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_startstop.htm:10
msgid "Start"
msgstr "Начало"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:115
msgid "Start / Stop"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:116
msgid "Start/Stop Privoxy WEB Proxy"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:879
msgid "Startup banner and warnings."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:455
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:620
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:635
msgid "Syntax:"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:790
msgid "Syntax: Client header names delimited by spaces."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:612
msgid "Syntax: target_pattern http_parent[:port]"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:59
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:62
msgid "System"
msgstr "Система"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:335
msgid ""
"The actions file(s) to use. Multiple actionsfile lines are permitted, and "
"are in fact recommended!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:453
msgid ""
"The address and TCP port on which Privoxy will listen for client requests."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:770
msgid ""
"The compression level that is passed to the zlib library when compressing "
"buffered content."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:252
msgid ""
"The directory where all logging takes place (i.e. where the logfile is "
"located)."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:289
msgid "The directory where the other configuration files are located."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:377
msgid ""
"The filter files contain content modification rules that use regular "
"expressions."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:183
msgid "The hostname shown on the CGI pages."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:274
msgid "The log file to use. File name, relative to log directory."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:788
msgid "The order in which client headers are sorted before forwarding them."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:755
msgid ""
"The status code Privoxy returns for pages blocked with +handle-as-empty-"
"document."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:413
msgid ""
"The trust mechanism is an experimental feature for building white-lists and "
"should be used with care."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:238
msgid ""
"The value of this option only matters if the experimental trust mechanism "
"has been activated."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:800
msgid ""
"This option is only there for debugging purposes. It will drastically reduce "
"performance."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:574
msgid ""
"This option will be removed in future releases as it has been obsoleted by "
"the more general header taggers."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:85
msgid ""
"This tab controls the security-relevant aspects of Privoxy's configuration."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:618
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:633
msgid ""
"Through which SOCKS proxy (and optionally to which parent HTTP proxy) "
"specific requests should be routed."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:610
msgid "To which parent HTTP proxy specific requests should be routed."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:341
msgid "User customizations"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:166
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:543
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:677
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:700
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:724
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:743
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:776
msgid "Value is not a number"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:168
msgid "Value not between 0 and 300"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:778
msgid "Value not between 0 and 9"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:545
msgid "Value not between 1 and 4096"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:679
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:702
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:726
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:745
msgid "Value not greater 0 or empty"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:537
msgid "Value range 1 to 4096, no entry defaults to 4096"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:45
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:47
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:50
msgid "Version"
msgstr "Версия"
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:43
msgid "Version Information"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:650
msgid "Whether intercepted requests should be treated as valid."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:572
msgid ""
"Whether or not Privoxy recognizes special HTTP headers to change toggle "
"state."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:762
msgid "Whether or not buffered content is compressed before delivery."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:710
msgid ""
"Whether or not outgoing connections that have been kept alive should be "
"shared between different incoming connections."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:687
msgid "Whether or not pipelined requests should be served."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:600
msgid "Whether or not proxy authentication through Privoxy should work."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:582
msgid "Whether or not the web-based actions file editor may be used."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:565
msgid "Whether or not the web-based toggle feature may be used."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:657
msgid "Whether requests to Privoxy's CGI pages can be blocked or redirected."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:664
msgid ""
"Whether the CGI interface should stay compatible with broken HTTP clients."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:798
msgid "Whether to run only one server thread."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:516
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:525
msgid "Who can access what."
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:49
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:87
msgid "installed"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:48
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
msgid "or higher"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:46
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
msgid "required"
msgstr ""

File diff suppressed because it is too large Load Diff

View File

@@ -1,601 +0,0 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2024-03-18 11:11+0000\n"
"Last-Translator: \"S. Barj.\" <sbarjola@proton.me>\n"
"Language-Team: Catalan <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsprivoxy/ca/>\n"
"Language: ca\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.5-dev\n"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:236
msgid ""
"A URL to be displayed in the error page that users will see if access to an "
"untrusted page is denied."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:226
msgid ""
"A URL to documentation about the local Privoxy setup, configuration or "
"policies."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:325
msgid "A directory where Privoxy can create temporary files."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:84
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:87
msgid "Access Control"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:337
msgid "Actions that are applied to all sites and maybe overruled later on."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:308
msgid "An alternative directory where the templates are loaded from."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:206
msgid "An email address to reach the Privoxy administrator."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:695
msgid ""
"Assumed server-side keep-alive timeout (in seconds) if not specified by the "
"server."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:151
msgid "Boot delay"
msgstr "Retard d'arrencada"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:873
msgid "CGI user interface"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:861
msgid "Common Log Format"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:92
msgid ""
"Configure here the routing of HTTP requests through a chain of multiple "
"proxies. Note that parent proxies can severely decrease your privacy level. "
"Also specified here are SOCKS proxies."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:855
msgid "Debug GIF de-animation"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:837
msgid "Debug force feature"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:849
msgid "Debug redirects"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:843
msgid "Debug regular expression filters"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:152
msgid "Delay (in seconds) during system boot before Privoxy start"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:261
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:298
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:315
msgid "Directory does not exist!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:557
msgid "Disabled == Transparent Proxy Mode"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:66
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:71
msgid "Documentation"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:154
msgid "During delay ifup-events are not monitored !"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:599
msgid "Enable proxy authentication forwarding"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:135
msgid ""
"Enable/Disable autostart of Privoxy on system startup and interface events"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:555
msgid "Enable/Disable filtering when Privoxy starts."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:134
msgid "Enabled"
msgstr "Activat"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:602
msgid ""
"Enabling this option is NOT recommended if there is no parent proxy that "
"requires authentication!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:368
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:404
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:442
msgid "File '%s' not found inside Configuration Directory"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:919
#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_logview.htm:12
msgid "File not found or empty"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:75
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:80
msgid "Files and Directories"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:36
msgid "For help use link at the relevant option"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:91
msgid "Forwarding"
msgstr ""
#: applications/luci-app-privoxy/root/usr/share/rpcd/acl.d/luci-app-privoxy.json:3
msgid "Grant UCI access for luci-app-privoxy"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:589
msgid ""
"If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
"should not be able to bypass any blocks."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:67
msgid ""
"If you intend to operate Privoxy for more users than just yourself, it might "
"be a good idea to let them know how to reach you, what you block and why you "
"do that, your policies, etc."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:215
msgid "Invalid email address"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:416
msgid "It is NOT recommended for the casual user."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:194
msgid "Location of the Privoxy User Manual."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:108
msgid "Log File Viewer"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:899
msgid "Log all data read from the network"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:831
msgid "Log all data written to the network"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:905
msgid "Log the applying actions"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:807
msgid ""
"Log the destination for each request Privoxy let through. See also 'Debug "
"1024'."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:867
msgid ""
"Log the destination for requests Privoxy didn't let through, and the reason "
"why."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:104
msgid "Logging"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:339
msgid "Main actions file"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:461
msgid "Mandatory Input: No Data given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:259
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:296
msgid "Mandatory Input: No Directory given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:279
msgid "Mandatory Input: No File given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:479
msgid "Mandatory Input: No Port given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:345
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:381
msgid "Mandatory Input: No files given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:482
msgid "Mandatory Input: No valid IPv4 address or host given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:470
msgid "Mandatory Input: No valid IPv6 address given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:472
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:484
msgid "Mandatory Input: No valid Port given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:737
msgid "Maximum number of client connections that will be served."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:535
msgid "Maximum size (in KB) of the buffer for content filtering."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:97
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:100
msgid "Miscellaneous"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:51
msgid "NOT installed"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:254
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:291
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:310
msgid "No trailing '/', please."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:885
msgid "Non-fatal errors - *we highly recommended enabling this*"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:718
msgid ""
"Number of seconds after which a socket times out if no data is received."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:672
msgid ""
"Number of seconds after which an open connection will no longer be reused."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:327
msgid ""
"Only when using 'external filters', Privoxy has to create temporary files."
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:81
msgid "Please install current version !"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:917
msgid "Please press [Read] button"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:518
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:527
msgid "Please read Privoxy manual for details!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:92
msgid "Please update to the current version!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:24
msgid "Privoxy WEB proxy"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:76
msgid ""
"Privoxy can (and normally does) use a number of other files for additional "
"configuration, help and logging. This section of the configuration file "
"tells Privoxy where to find those other files."
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:32
msgid ""
"Privoxy is a non-caching web proxy with advanced filtering capabilities for "
"enhancing privacy, modifying web page data and HTTP headers, controlling "
"access, and removing ads and other obnoxious Internet junk."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:912
msgid "Read / Reread log file"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:819
msgid "Show I/O status"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:813
msgid "Show each connection status"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:825
msgid "Show header parsing"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:76
msgid "Software package '%s' is not installed."
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:85
msgid "Software package '%s' is outdated."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:125
#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_startstop.htm:10
msgid "Start"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:115
msgid "Start / Stop"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:116
msgid "Start/Stop Privoxy WEB Proxy"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:879
msgid "Startup banner and warnings."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:455
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:620
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:635
msgid "Syntax:"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:790
msgid "Syntax: Client header names delimited by spaces."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:612
msgid "Syntax: target_pattern http_parent[:port]"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:59
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:62
msgid "System"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:335
msgid ""
"The actions file(s) to use. Multiple actionsfile lines are permitted, and "
"are in fact recommended!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:453
msgid ""
"The address and TCP port on which Privoxy will listen for client requests."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:770
msgid ""
"The compression level that is passed to the zlib library when compressing "
"buffered content."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:252
msgid ""
"The directory where all logging takes place (i.e. where the logfile is "
"located)."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:289
msgid "The directory where the other configuration files are located."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:377
msgid ""
"The filter files contain content modification rules that use regular "
"expressions."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:183
msgid "The hostname shown on the CGI pages."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:274
msgid "The log file to use. File name, relative to log directory."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:788
msgid "The order in which client headers are sorted before forwarding them."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:755
msgid ""
"The status code Privoxy returns for pages blocked with +handle-as-empty-"
"document."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:413
msgid ""
"The trust mechanism is an experimental feature for building white-lists and "
"should be used with care."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:238
msgid ""
"The value of this option only matters if the experimental trust mechanism "
"has been activated."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:800
msgid ""
"This option is only there for debugging purposes. It will drastically reduce "
"performance."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:574
msgid ""
"This option will be removed in future releases as it has been obsoleted by "
"the more general header taggers."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:85
msgid ""
"This tab controls the security-relevant aspects of Privoxy's configuration."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:618
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:633
msgid ""
"Through which SOCKS proxy (and optionally to which parent HTTP proxy) "
"specific requests should be routed."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:610
msgid "To which parent HTTP proxy specific requests should be routed."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:341
msgid "User customizations"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:166
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:543
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:677
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:700
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:724
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:743
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:776
msgid "Value is not a number"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:168
msgid "Value not between 0 and 300"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:778
msgid "Value not between 0 and 9"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:545
msgid "Value not between 1 and 4096"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:679
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:702
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:726
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:745
msgid "Value not greater 0 or empty"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:537
msgid "Value range 1 to 4096, no entry defaults to 4096"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:45
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:47
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:50
msgid "Version"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:43
msgid "Version Information"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:650
msgid "Whether intercepted requests should be treated as valid."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:572
msgid ""
"Whether or not Privoxy recognizes special HTTP headers to change toggle "
"state."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:762
msgid "Whether or not buffered content is compressed before delivery."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:710
msgid ""
"Whether or not outgoing connections that have been kept alive should be "
"shared between different incoming connections."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:687
msgid "Whether or not pipelined requests should be served."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:600
msgid "Whether or not proxy authentication through Privoxy should work."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:582
msgid "Whether or not the web-based actions file editor may be used."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:565
msgid "Whether or not the web-based toggle feature may be used."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:657
msgid "Whether requests to Privoxy's CGI pages can be blocked or redirected."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:664
msgid ""
"Whether the CGI interface should stay compatible with broken HTTP clients."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:798
msgid "Whether to run only one server thread."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:516
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:525
msgid "Who can access what."
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:49
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:87
msgid "installed"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:48
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
msgid "or higher"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:46
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
msgid "required"
msgstr ""

File diff suppressed because it is too large Load Diff

View File

@@ -1,605 +0,0 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2024-01-25 02:53+0000\n"
"Last-Translator: drax red <drax@outlook.dk>\n"
"Language-Team: Danish <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsprivoxy/da/>\n"
"Language: da\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.4-dev\n"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:236
msgid ""
"A URL to be displayed in the error page that users will see if access to an "
"untrusted page is denied."
msgstr ""
"En URL-adresse, der skal vises på den fejlside, som brugerne får vist, hvis "
"adgangen til en side, der ikke er tillid til, nægtes."
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:226
msgid ""
"A URL to documentation about the local Privoxy setup, configuration or "
"policies."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:325
msgid "A directory where Privoxy can create temporary files."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:84
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:87
msgid "Access Control"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:337
msgid "Actions that are applied to all sites and maybe overruled later on."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:308
msgid "An alternative directory where the templates are loaded from."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:206
msgid "An email address to reach the Privoxy administrator."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:695
msgid ""
"Assumed server-side keep-alive timeout (in seconds) if not specified by the "
"server."
msgstr ""
"Antaget server-side holde i live timeout (i sekunder), hvis den ikke er "
"angivet af serveren."
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:151
msgid "Boot delay"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:873
msgid "CGI user interface"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:861
msgid "Common Log Format"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:92
msgid ""
"Configure here the routing of HTTP requests through a chain of multiple "
"proxies. Note that parent proxies can severely decrease your privacy level. "
"Also specified here are SOCKS proxies."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:855
msgid "Debug GIF de-animation"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:837
msgid "Debug force feature"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:849
msgid "Debug redirects"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:843
msgid "Debug regular expression filters"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:152
msgid "Delay (in seconds) during system boot before Privoxy start"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:261
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:298
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:315
msgid "Directory does not exist!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:557
msgid "Disabled == Transparent Proxy Mode"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:66
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:71
msgid "Documentation"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:154
msgid "During delay ifup-events are not monitored !"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:599
msgid "Enable proxy authentication forwarding"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:135
msgid ""
"Enable/Disable autostart of Privoxy on system startup and interface events"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:555
msgid "Enable/Disable filtering when Privoxy starts."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:134
msgid "Enabled"
msgstr "Aktiveret"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:602
msgid ""
"Enabling this option is NOT recommended if there is no parent proxy that "
"requires authentication!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:368
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:404
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:442
msgid "File '%s' not found inside Configuration Directory"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:919
#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_logview.htm:12
msgid "File not found or empty"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:75
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:80
msgid "Files and Directories"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:36
msgid "For help use link at the relevant option"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:91
msgid "Forwarding"
msgstr ""
#: applications/luci-app-privoxy/root/usr/share/rpcd/acl.d/luci-app-privoxy.json:3
msgid "Grant UCI access for luci-app-privoxy"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:589
msgid ""
"If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
"should not be able to bypass any blocks."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:67
msgid ""
"If you intend to operate Privoxy for more users than just yourself, it might "
"be a good idea to let them know how to reach you, what you block and why you "
"do that, your policies, etc."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:215
msgid "Invalid email address"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:416
msgid "It is NOT recommended for the casual user."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:194
msgid "Location of the Privoxy User Manual."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:108
msgid "Log File Viewer"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:899
msgid "Log all data read from the network"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:831
msgid "Log all data written to the network"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:905
msgid "Log the applying actions"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:807
msgid ""
"Log the destination for each request Privoxy let through. See also 'Debug "
"1024'."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:867
msgid ""
"Log the destination for requests Privoxy didn't let through, and the reason "
"why."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:104
msgid "Logging"
msgstr "Logning"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:339
msgid "Main actions file"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:461
msgid "Mandatory Input: No Data given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:259
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:296
msgid "Mandatory Input: No Directory given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:279
msgid "Mandatory Input: No File given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:479
msgid "Mandatory Input: No Port given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:345
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:381
msgid "Mandatory Input: No files given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:482
msgid "Mandatory Input: No valid IPv4 address or host given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:470
msgid "Mandatory Input: No valid IPv6 address given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:472
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:484
msgid "Mandatory Input: No valid Port given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:737
msgid "Maximum number of client connections that will be served."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:535
msgid "Maximum size (in KB) of the buffer for content filtering."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:97
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:100
msgid "Miscellaneous"
msgstr "Diverse"
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:51
msgid "NOT installed"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:254
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:291
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:310
msgid "No trailing '/', please."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:885
msgid "Non-fatal errors - *we highly recommended enabling this*"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:718
msgid ""
"Number of seconds after which a socket times out if no data is received."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:672
msgid ""
"Number of seconds after which an open connection will no longer be reused."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:327
msgid ""
"Only when using 'external filters', Privoxy has to create temporary files."
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:81
msgid "Please install current version !"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:917
msgid "Please press [Read] button"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:518
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:527
msgid "Please read Privoxy manual for details!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:92
msgid "Please update to the current version!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:24
msgid "Privoxy WEB proxy"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:76
msgid ""
"Privoxy can (and normally does) use a number of other files for additional "
"configuration, help and logging. This section of the configuration file "
"tells Privoxy where to find those other files."
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:32
msgid ""
"Privoxy is a non-caching web proxy with advanced filtering capabilities for "
"enhancing privacy, modifying web page data and HTTP headers, controlling "
"access, and removing ads and other obnoxious Internet junk."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:912
msgid "Read / Reread log file"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:819
msgid "Show I/O status"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:813
msgid "Show each connection status"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:825
msgid "Show header parsing"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:76
msgid "Software package '%s' is not installed."
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:85
msgid "Software package '%s' is outdated."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:125
#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_startstop.htm:10
msgid "Start"
msgstr "Start"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:115
msgid "Start / Stop"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:116
msgid "Start/Stop Privoxy WEB Proxy"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:879
msgid "Startup banner and warnings."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:455
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:620
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:635
msgid "Syntax:"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:790
msgid "Syntax: Client header names delimited by spaces."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:612
msgid "Syntax: target_pattern http_parent[:port]"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:59
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:62
msgid "System"
msgstr "System"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:335
msgid ""
"The actions file(s) to use. Multiple actionsfile lines are permitted, and "
"are in fact recommended!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:453
msgid ""
"The address and TCP port on which Privoxy will listen for client requests."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:770
msgid ""
"The compression level that is passed to the zlib library when compressing "
"buffered content."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:252
msgid ""
"The directory where all logging takes place (i.e. where the logfile is "
"located)."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:289
msgid "The directory where the other configuration files are located."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:377
msgid ""
"The filter files contain content modification rules that use regular "
"expressions."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:183
msgid "The hostname shown on the CGI pages."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:274
msgid "The log file to use. File name, relative to log directory."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:788
msgid "The order in which client headers are sorted before forwarding them."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:755
msgid ""
"The status code Privoxy returns for pages blocked with +handle-as-empty-"
"document."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:413
msgid ""
"The trust mechanism is an experimental feature for building white-lists and "
"should be used with care."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:238
msgid ""
"The value of this option only matters if the experimental trust mechanism "
"has been activated."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:800
msgid ""
"This option is only there for debugging purposes. It will drastically reduce "
"performance."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:574
msgid ""
"This option will be removed in future releases as it has been obsoleted by "
"the more general header taggers."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:85
msgid ""
"This tab controls the security-relevant aspects of Privoxy's configuration."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:618
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:633
msgid ""
"Through which SOCKS proxy (and optionally to which parent HTTP proxy) "
"specific requests should be routed."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:610
msgid "To which parent HTTP proxy specific requests should be routed."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:341
msgid "User customizations"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:166
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:543
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:677
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:700
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:724
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:743
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:776
msgid "Value is not a number"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:168
msgid "Value not between 0 and 300"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:778
msgid "Value not between 0 and 9"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:545
msgid "Value not between 1 and 4096"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:679
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:702
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:726
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:745
msgid "Value not greater 0 or empty"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:537
msgid "Value range 1 to 4096, no entry defaults to 4096"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:45
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:47
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:50
msgid "Version"
msgstr "Version"
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:43
msgid "Version Information"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:650
msgid "Whether intercepted requests should be treated as valid."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:572
msgid ""
"Whether or not Privoxy recognizes special HTTP headers to change toggle "
"state."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:762
msgid "Whether or not buffered content is compressed before delivery."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:710
msgid ""
"Whether or not outgoing connections that have been kept alive should be "
"shared between different incoming connections."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:687
msgid "Whether or not pipelined requests should be served."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:600
msgid "Whether or not proxy authentication through Privoxy should work."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:582
msgid "Whether or not the web-based actions file editor may be used."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:565
msgid "Whether or not the web-based toggle feature may be used."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:657
msgid "Whether requests to Privoxy's CGI pages can be blocked or redirected."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:664
msgid ""
"Whether the CGI interface should stay compatible with broken HTTP clients."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:798
msgid "Whether to run only one server thread."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:516
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:525
msgid "Who can access what."
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:49
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:87
msgid "installed"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:48
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
msgid "or higher"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:46
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
msgid "required"
msgstr ""

File diff suppressed because it is too large Load Diff

View File

@@ -1,601 +0,0 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2021-01-23 03:57+0000\n"
"Last-Translator: Savvas Sfantos <savvassfa@gmail.com>\n"
"Language-Team: Greek <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsprivoxy/el/>\n"
"Language: el\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.5-dev\n"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:236
msgid ""
"A URL to be displayed in the error page that users will see if access to an "
"untrusted page is denied."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:226
msgid ""
"A URL to documentation about the local Privoxy setup, configuration or "
"policies."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:325
msgid "A directory where Privoxy can create temporary files."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:84
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:87
msgid "Access Control"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:337
msgid "Actions that are applied to all sites and maybe overruled later on."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:308
msgid "An alternative directory where the templates are loaded from."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:206
msgid "An email address to reach the Privoxy administrator."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:695
msgid ""
"Assumed server-side keep-alive timeout (in seconds) if not specified by the "
"server."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:151
msgid "Boot delay"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:873
msgid "CGI user interface"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:861
msgid "Common Log Format"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:92
msgid ""
"Configure here the routing of HTTP requests through a chain of multiple "
"proxies. Note that parent proxies can severely decrease your privacy level. "
"Also specified here are SOCKS proxies."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:855
msgid "Debug GIF de-animation"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:837
msgid "Debug force feature"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:849
msgid "Debug redirects"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:843
msgid "Debug regular expression filters"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:152
msgid "Delay (in seconds) during system boot before Privoxy start"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:261
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:298
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:315
msgid "Directory does not exist!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:557
msgid "Disabled == Transparent Proxy Mode"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:66
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:71
msgid "Documentation"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:154
msgid "During delay ifup-events are not monitored !"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:599
msgid "Enable proxy authentication forwarding"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:135
msgid ""
"Enable/Disable autostart of Privoxy on system startup and interface events"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:555
msgid "Enable/Disable filtering when Privoxy starts."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:134
msgid "Enabled"
msgstr "Ενεργοποιήθηκε"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:602
msgid ""
"Enabling this option is NOT recommended if there is no parent proxy that "
"requires authentication!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:368
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:404
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:442
msgid "File '%s' not found inside Configuration Directory"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:919
#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_logview.htm:12
msgid "File not found or empty"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:75
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:80
msgid "Files and Directories"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:36
msgid "For help use link at the relevant option"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:91
msgid "Forwarding"
msgstr ""
#: applications/luci-app-privoxy/root/usr/share/rpcd/acl.d/luci-app-privoxy.json:3
msgid "Grant UCI access for luci-app-privoxy"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:589
msgid ""
"If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
"should not be able to bypass any blocks."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:67
msgid ""
"If you intend to operate Privoxy for more users than just yourself, it might "
"be a good idea to let them know how to reach you, what you block and why you "
"do that, your policies, etc."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:215
msgid "Invalid email address"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:416
msgid "It is NOT recommended for the casual user."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:194
msgid "Location of the Privoxy User Manual."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:108
msgid "Log File Viewer"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:899
msgid "Log all data read from the network"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:831
msgid "Log all data written to the network"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:905
msgid "Log the applying actions"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:807
msgid ""
"Log the destination for each request Privoxy let through. See also 'Debug "
"1024'."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:867
msgid ""
"Log the destination for requests Privoxy didn't let through, and the reason "
"why."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:104
msgid "Logging"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:339
msgid "Main actions file"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:461
msgid "Mandatory Input: No Data given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:259
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:296
msgid "Mandatory Input: No Directory given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:279
msgid "Mandatory Input: No File given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:479
msgid "Mandatory Input: No Port given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:345
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:381
msgid "Mandatory Input: No files given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:482
msgid "Mandatory Input: No valid IPv4 address or host given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:470
msgid "Mandatory Input: No valid IPv6 address given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:472
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:484
msgid "Mandatory Input: No valid Port given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:737
msgid "Maximum number of client connections that will be served."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:535
msgid "Maximum size (in KB) of the buffer for content filtering."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:97
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:100
msgid "Miscellaneous"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:51
msgid "NOT installed"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:254
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:291
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:310
msgid "No trailing '/', please."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:885
msgid "Non-fatal errors - *we highly recommended enabling this*"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:718
msgid ""
"Number of seconds after which a socket times out if no data is received."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:672
msgid ""
"Number of seconds after which an open connection will no longer be reused."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:327
msgid ""
"Only when using 'external filters', Privoxy has to create temporary files."
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:81
msgid "Please install current version !"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:917
msgid "Please press [Read] button"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:518
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:527
msgid "Please read Privoxy manual for details!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:92
msgid "Please update to the current version!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:24
msgid "Privoxy WEB proxy"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:76
msgid ""
"Privoxy can (and normally does) use a number of other files for additional "
"configuration, help and logging. This section of the configuration file "
"tells Privoxy where to find those other files."
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:32
msgid ""
"Privoxy is a non-caching web proxy with advanced filtering capabilities for "
"enhancing privacy, modifying web page data and HTTP headers, controlling "
"access, and removing ads and other obnoxious Internet junk."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:912
msgid "Read / Reread log file"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:819
msgid "Show I/O status"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:813
msgid "Show each connection status"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:825
msgid "Show header parsing"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:76
msgid "Software package '%s' is not installed."
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:85
msgid "Software package '%s' is outdated."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:125
#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_startstop.htm:10
msgid "Start"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:115
msgid "Start / Stop"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:116
msgid "Start/Stop Privoxy WEB Proxy"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:879
msgid "Startup banner and warnings."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:455
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:620
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:635
msgid "Syntax:"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:790
msgid "Syntax: Client header names delimited by spaces."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:612
msgid "Syntax: target_pattern http_parent[:port]"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:59
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:62
msgid "System"
msgstr "Σύστημα"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:335
msgid ""
"The actions file(s) to use. Multiple actionsfile lines are permitted, and "
"are in fact recommended!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:453
msgid ""
"The address and TCP port on which Privoxy will listen for client requests."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:770
msgid ""
"The compression level that is passed to the zlib library when compressing "
"buffered content."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:252
msgid ""
"The directory where all logging takes place (i.e. where the logfile is "
"located)."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:289
msgid "The directory where the other configuration files are located."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:377
msgid ""
"The filter files contain content modification rules that use regular "
"expressions."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:183
msgid "The hostname shown on the CGI pages."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:274
msgid "The log file to use. File name, relative to log directory."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:788
msgid "The order in which client headers are sorted before forwarding them."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:755
msgid ""
"The status code Privoxy returns for pages blocked with +handle-as-empty-"
"document."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:413
msgid ""
"The trust mechanism is an experimental feature for building white-lists and "
"should be used with care."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:238
msgid ""
"The value of this option only matters if the experimental trust mechanism "
"has been activated."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:800
msgid ""
"This option is only there for debugging purposes. It will drastically reduce "
"performance."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:574
msgid ""
"This option will be removed in future releases as it has been obsoleted by "
"the more general header taggers."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:85
msgid ""
"This tab controls the security-relevant aspects of Privoxy's configuration."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:618
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:633
msgid ""
"Through which SOCKS proxy (and optionally to which parent HTTP proxy) "
"specific requests should be routed."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:610
msgid "To which parent HTTP proxy specific requests should be routed."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:341
msgid "User customizations"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:166
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:543
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:677
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:700
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:724
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:743
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:776
msgid "Value is not a number"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:168
msgid "Value not between 0 and 300"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:778
msgid "Value not between 0 and 9"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:545
msgid "Value not between 1 and 4096"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:679
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:702
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:726
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:745
msgid "Value not greater 0 or empty"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:537
msgid "Value range 1 to 4096, no entry defaults to 4096"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:45
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:47
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:50
msgid "Version"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:43
msgid "Version Information"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:650
msgid "Whether intercepted requests should be treated as valid."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:572
msgid ""
"Whether or not Privoxy recognizes special HTTP headers to change toggle "
"state."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:762
msgid "Whether or not buffered content is compressed before delivery."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:710
msgid ""
"Whether or not outgoing connections that have been kept alive should be "
"shared between different incoming connections."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:687
msgid "Whether or not pipelined requests should be served."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:600
msgid "Whether or not proxy authentication through Privoxy should work."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:582
msgid "Whether or not the web-based actions file editor may be used."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:565
msgid "Whether or not the web-based toggle feature may be used."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:657
msgid "Whether requests to Privoxy's CGI pages can be blocked or redirected."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:664
msgid ""
"Whether the CGI interface should stay compatible with broken HTTP clients."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:798
msgid "Whether to run only one server thread."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:516
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:525
msgid "Who can access what."
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:49
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:87
msgid "installed"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:48
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
msgid "or higher"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:46
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
msgid "required"
msgstr ""

File diff suppressed because it is too large Load Diff

View File

@@ -1,601 +0,0 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2025-04-30 09:26+0000\n"
"Last-Translator: Ricky Tigg <ricky.tigg@gmail.com>\n"
"Language-Team: Finnish <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsprivoxy/fi/>\n"
"Language: fi\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.12-dev\n"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:236
msgid ""
"A URL to be displayed in the error page that users will see if access to an "
"untrusted page is denied."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:226
msgid ""
"A URL to documentation about the local Privoxy setup, configuration or "
"policies."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:325
msgid "A directory where Privoxy can create temporary files."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:84
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:87
msgid "Access Control"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:337
msgid "Actions that are applied to all sites and maybe overruled later on."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:308
msgid "An alternative directory where the templates are loaded from."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:206
msgid "An email address to reach the Privoxy administrator."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:695
msgid ""
"Assumed server-side keep-alive timeout (in seconds) if not specified by the "
"server."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:151
msgid "Boot delay"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:873
msgid "CGI user interface"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:861
msgid "Common Log Format"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:92
msgid ""
"Configure here the routing of HTTP requests through a chain of multiple "
"proxies. Note that parent proxies can severely decrease your privacy level. "
"Also specified here are SOCKS proxies."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:855
msgid "Debug GIF de-animation"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:837
msgid "Debug force feature"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:849
msgid "Debug redirects"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:843
msgid "Debug regular expression filters"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:152
msgid "Delay (in seconds) during system boot before Privoxy start"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:261
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:298
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:315
msgid "Directory does not exist!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:557
msgid "Disabled == Transparent Proxy Mode"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:66
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:71
msgid "Documentation"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:154
msgid "During delay ifup-events are not monitored !"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:599
msgid "Enable proxy authentication forwarding"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:135
msgid ""
"Enable/Disable autostart of Privoxy on system startup and interface events"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:555
msgid "Enable/Disable filtering when Privoxy starts."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:134
msgid "Enabled"
msgstr "Otettu käyttöön"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:602
msgid ""
"Enabling this option is NOT recommended if there is no parent proxy that "
"requires authentication!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:368
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:404
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:442
msgid "File '%s' not found inside Configuration Directory"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:919
#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_logview.htm:12
msgid "File not found or empty"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:75
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:80
msgid "Files and Directories"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:36
msgid "For help use link at the relevant option"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:91
msgid "Forwarding"
msgstr ""
#: applications/luci-app-privoxy/root/usr/share/rpcd/acl.d/luci-app-privoxy.json:3
msgid "Grant UCI access for luci-app-privoxy"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:589
msgid ""
"If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
"should not be able to bypass any blocks."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:67
msgid ""
"If you intend to operate Privoxy for more users than just yourself, it might "
"be a good idea to let them know how to reach you, what you block and why you "
"do that, your policies, etc."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:215
msgid "Invalid email address"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:416
msgid "It is NOT recommended for the casual user."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:194
msgid "Location of the Privoxy User Manual."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:108
msgid "Log File Viewer"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:899
msgid "Log all data read from the network"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:831
msgid "Log all data written to the network"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:905
msgid "Log the applying actions"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:807
msgid ""
"Log the destination for each request Privoxy let through. See also 'Debug "
"1024'."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:867
msgid ""
"Log the destination for requests Privoxy didn't let through, and the reason "
"why."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:104
msgid "Logging"
msgstr "Kirjaaminen"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:339
msgid "Main actions file"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:461
msgid "Mandatory Input: No Data given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:259
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:296
msgid "Mandatory Input: No Directory given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:279
msgid "Mandatory Input: No File given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:479
msgid "Mandatory Input: No Port given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:345
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:381
msgid "Mandatory Input: No files given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:482
msgid "Mandatory Input: No valid IPv4 address or host given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:470
msgid "Mandatory Input: No valid IPv6 address given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:472
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:484
msgid "Mandatory Input: No valid Port given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:737
msgid "Maximum number of client connections that will be served."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:535
msgid "Maximum size (in KB) of the buffer for content filtering."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:97
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:100
msgid "Miscellaneous"
msgstr "Sekalaiset"
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:51
msgid "NOT installed"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:254
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:291
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:310
msgid "No trailing '/', please."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:885
msgid "Non-fatal errors - *we highly recommended enabling this*"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:718
msgid ""
"Number of seconds after which a socket times out if no data is received."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:672
msgid ""
"Number of seconds after which an open connection will no longer be reused."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:327
msgid ""
"Only when using 'external filters', Privoxy has to create temporary files."
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:81
msgid "Please install current version !"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:917
msgid "Please press [Read] button"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:518
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:527
msgid "Please read Privoxy manual for details!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:92
msgid "Please update to the current version!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:24
msgid "Privoxy WEB proxy"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:76
msgid ""
"Privoxy can (and normally does) use a number of other files for additional "
"configuration, help and logging. This section of the configuration file "
"tells Privoxy where to find those other files."
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:32
msgid ""
"Privoxy is a non-caching web proxy with advanced filtering capabilities for "
"enhancing privacy, modifying web page data and HTTP headers, controlling "
"access, and removing ads and other obnoxious Internet junk."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:912
msgid "Read / Reread log file"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:819
msgid "Show I/O status"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:813
msgid "Show each connection status"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:825
msgid "Show header parsing"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:76
msgid "Software package '%s' is not installed."
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:85
msgid "Software package '%s' is outdated."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:125
#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_startstop.htm:10
msgid "Start"
msgstr "Aloita"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:115
msgid "Start / Stop"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:116
msgid "Start/Stop Privoxy WEB Proxy"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:879
msgid "Startup banner and warnings."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:455
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:620
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:635
msgid "Syntax:"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:790
msgid "Syntax: Client header names delimited by spaces."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:612
msgid "Syntax: target_pattern http_parent[:port]"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:59
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:62
msgid "System"
msgstr "Järjestelmä"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:335
msgid ""
"The actions file(s) to use. Multiple actionsfile lines are permitted, and "
"are in fact recommended!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:453
msgid ""
"The address and TCP port on which Privoxy will listen for client requests."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:770
msgid ""
"The compression level that is passed to the zlib library when compressing "
"buffered content."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:252
msgid ""
"The directory where all logging takes place (i.e. where the logfile is "
"located)."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:289
msgid "The directory where the other configuration files are located."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:377
msgid ""
"The filter files contain content modification rules that use regular "
"expressions."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:183
msgid "The hostname shown on the CGI pages."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:274
msgid "The log file to use. File name, relative to log directory."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:788
msgid "The order in which client headers are sorted before forwarding them."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:755
msgid ""
"The status code Privoxy returns for pages blocked with +handle-as-empty-"
"document."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:413
msgid ""
"The trust mechanism is an experimental feature for building white-lists and "
"should be used with care."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:238
msgid ""
"The value of this option only matters if the experimental trust mechanism "
"has been activated."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:800
msgid ""
"This option is only there for debugging purposes. It will drastically reduce "
"performance."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:574
msgid ""
"This option will be removed in future releases as it has been obsoleted by "
"the more general header taggers."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:85
msgid ""
"This tab controls the security-relevant aspects of Privoxy's configuration."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:618
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:633
msgid ""
"Through which SOCKS proxy (and optionally to which parent HTTP proxy) "
"specific requests should be routed."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:610
msgid "To which parent HTTP proxy specific requests should be routed."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:341
msgid "User customizations"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:166
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:543
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:677
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:700
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:724
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:743
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:776
msgid "Value is not a number"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:168
msgid "Value not between 0 and 300"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:778
msgid "Value not between 0 and 9"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:545
msgid "Value not between 1 and 4096"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:679
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:702
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:726
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:745
msgid "Value not greater 0 or empty"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:537
msgid "Value range 1 to 4096, no entry defaults to 4096"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:45
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:47
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:50
msgid "Version"
msgstr "Versio"
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:43
msgid "Version Information"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:650
msgid "Whether intercepted requests should be treated as valid."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:572
msgid ""
"Whether or not Privoxy recognizes special HTTP headers to change toggle "
"state."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:762
msgid "Whether or not buffered content is compressed before delivery."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:710
msgid ""
"Whether or not outgoing connections that have been kept alive should be "
"shared between different incoming connections."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:687
msgid "Whether or not pipelined requests should be served."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:600
msgid "Whether or not proxy authentication through Privoxy should work."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:582
msgid "Whether or not the web-based actions file editor may be used."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:565
msgid "Whether or not the web-based toggle feature may be used."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:657
msgid "Whether requests to Privoxy's CGI pages can be blocked or redirected."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:664
msgid ""
"Whether the CGI interface should stay compatible with broken HTTP clients."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:798
msgid "Whether to run only one server thread."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:516
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:525
msgid "Who can access what."
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:49
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:87
msgid "installed"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:48
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
msgid "or higher"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:46
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
msgid "required"
msgstr ""

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -1,595 +0,0 @@
msgid ""
msgstr ""
"Language: he\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:236
msgid ""
"A URL to be displayed in the error page that users will see if access to an "
"untrusted page is denied."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:226
msgid ""
"A URL to documentation about the local Privoxy setup, configuration or "
"policies."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:325
msgid "A directory where Privoxy can create temporary files."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:84
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:87
msgid "Access Control"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:337
msgid "Actions that are applied to all sites and maybe overruled later on."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:308
msgid "An alternative directory where the templates are loaded from."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:206
msgid "An email address to reach the Privoxy administrator."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:695
msgid ""
"Assumed server-side keep-alive timeout (in seconds) if not specified by the "
"server."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:151
msgid "Boot delay"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:873
msgid "CGI user interface"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:861
msgid "Common Log Format"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:92
msgid ""
"Configure here the routing of HTTP requests through a chain of multiple "
"proxies. Note that parent proxies can severely decrease your privacy level. "
"Also specified here are SOCKS proxies."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:855
msgid "Debug GIF de-animation"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:837
msgid "Debug force feature"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:849
msgid "Debug redirects"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:843
msgid "Debug regular expression filters"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:152
msgid "Delay (in seconds) during system boot before Privoxy start"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:261
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:298
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:315
msgid "Directory does not exist!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:557
msgid "Disabled == Transparent Proxy Mode"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:66
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:71
msgid "Documentation"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:154
msgid "During delay ifup-events are not monitored !"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:599
msgid "Enable proxy authentication forwarding"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:135
msgid ""
"Enable/Disable autostart of Privoxy on system startup and interface events"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:555
msgid "Enable/Disable filtering when Privoxy starts."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:134
msgid "Enabled"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:602
msgid ""
"Enabling this option is NOT recommended if there is no parent proxy that "
"requires authentication!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:368
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:404
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:442
msgid "File '%s' not found inside Configuration Directory"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:919
#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_logview.htm:12
msgid "File not found or empty"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:75
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:80
msgid "Files and Directories"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:36
msgid "For help use link at the relevant option"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:91
msgid "Forwarding"
msgstr ""
#: applications/luci-app-privoxy/root/usr/share/rpcd/acl.d/luci-app-privoxy.json:3
msgid "Grant UCI access for luci-app-privoxy"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:589
msgid ""
"If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
"should not be able to bypass any blocks."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:67
msgid ""
"If you intend to operate Privoxy for more users than just yourself, it might "
"be a good idea to let them know how to reach you, what you block and why you "
"do that, your policies, etc."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:215
msgid "Invalid email address"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:416
msgid "It is NOT recommended for the casual user."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:194
msgid "Location of the Privoxy User Manual."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:108
msgid "Log File Viewer"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:899
msgid "Log all data read from the network"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:831
msgid "Log all data written to the network"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:905
msgid "Log the applying actions"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:807
msgid ""
"Log the destination for each request Privoxy let through. See also 'Debug "
"1024'."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:867
msgid ""
"Log the destination for requests Privoxy didn't let through, and the reason "
"why."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:104
msgid "Logging"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:339
msgid "Main actions file"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:461
msgid "Mandatory Input: No Data given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:259
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:296
msgid "Mandatory Input: No Directory given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:279
msgid "Mandatory Input: No File given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:479
msgid "Mandatory Input: No Port given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:345
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:381
msgid "Mandatory Input: No files given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:482
msgid "Mandatory Input: No valid IPv4 address or host given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:470
msgid "Mandatory Input: No valid IPv6 address given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:472
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:484
msgid "Mandatory Input: No valid Port given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:737
msgid "Maximum number of client connections that will be served."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:535
msgid "Maximum size (in KB) of the buffer for content filtering."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:97
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:100
msgid "Miscellaneous"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:51
msgid "NOT installed"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:254
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:291
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:310
msgid "No trailing '/', please."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:885
msgid "Non-fatal errors - *we highly recommended enabling this*"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:718
msgid ""
"Number of seconds after which a socket times out if no data is received."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:672
msgid ""
"Number of seconds after which an open connection will no longer be reused."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:327
msgid ""
"Only when using 'external filters', Privoxy has to create temporary files."
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:81
msgid "Please install current version !"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:917
msgid "Please press [Read] button"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:518
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:527
msgid "Please read Privoxy manual for details!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:92
msgid "Please update to the current version!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:24
msgid "Privoxy WEB proxy"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:76
msgid ""
"Privoxy can (and normally does) use a number of other files for additional "
"configuration, help and logging. This section of the configuration file "
"tells Privoxy where to find those other files."
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:32
msgid ""
"Privoxy is a non-caching web proxy with advanced filtering capabilities for "
"enhancing privacy, modifying web page data and HTTP headers, controlling "
"access, and removing ads and other obnoxious Internet junk."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:912
msgid "Read / Reread log file"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:819
msgid "Show I/O status"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:813
msgid "Show each connection status"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:825
msgid "Show header parsing"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:76
msgid "Software package '%s' is not installed."
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:85
msgid "Software package '%s' is outdated."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:125
#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_startstop.htm:10
msgid "Start"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:115
msgid "Start / Stop"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:116
msgid "Start/Stop Privoxy WEB Proxy"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:879
msgid "Startup banner and warnings."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:455
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:620
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:635
msgid "Syntax:"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:790
msgid "Syntax: Client header names delimited by spaces."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:612
msgid "Syntax: target_pattern http_parent[:port]"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:59
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:62
msgid "System"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:335
msgid ""
"The actions file(s) to use. Multiple actionsfile lines are permitted, and "
"are in fact recommended!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:453
msgid ""
"The address and TCP port on which Privoxy will listen for client requests."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:770
msgid ""
"The compression level that is passed to the zlib library when compressing "
"buffered content."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:252
msgid ""
"The directory where all logging takes place (i.e. where the logfile is "
"located)."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:289
msgid "The directory where the other configuration files are located."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:377
msgid ""
"The filter files contain content modification rules that use regular "
"expressions."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:183
msgid "The hostname shown on the CGI pages."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:274
msgid "The log file to use. File name, relative to log directory."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:788
msgid "The order in which client headers are sorted before forwarding them."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:755
msgid ""
"The status code Privoxy returns for pages blocked with +handle-as-empty-"
"document."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:413
msgid ""
"The trust mechanism is an experimental feature for building white-lists and "
"should be used with care."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:238
msgid ""
"The value of this option only matters if the experimental trust mechanism "
"has been activated."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:800
msgid ""
"This option is only there for debugging purposes. It will drastically reduce "
"performance."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:574
msgid ""
"This option will be removed in future releases as it has been obsoleted by "
"the more general header taggers."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:85
msgid ""
"This tab controls the security-relevant aspects of Privoxy's configuration."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:618
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:633
msgid ""
"Through which SOCKS proxy (and optionally to which parent HTTP proxy) "
"specific requests should be routed."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:610
msgid "To which parent HTTP proxy specific requests should be routed."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:341
msgid "User customizations"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:166
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:543
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:677
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:700
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:724
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:743
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:776
msgid "Value is not a number"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:168
msgid "Value not between 0 and 300"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:778
msgid "Value not between 0 and 9"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:545
msgid "Value not between 1 and 4096"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:679
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:702
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:726
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:745
msgid "Value not greater 0 or empty"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:537
msgid "Value range 1 to 4096, no entry defaults to 4096"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:45
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:47
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:50
msgid "Version"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:43
msgid "Version Information"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:650
msgid "Whether intercepted requests should be treated as valid."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:572
msgid ""
"Whether or not Privoxy recognizes special HTTP headers to change toggle "
"state."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:762
msgid "Whether or not buffered content is compressed before delivery."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:710
msgid ""
"Whether or not outgoing connections that have been kept alive should be "
"shared between different incoming connections."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:687
msgid "Whether or not pipelined requests should be served."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:600
msgid "Whether or not proxy authentication through Privoxy should work."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:582
msgid "Whether or not the web-based actions file editor may be used."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:565
msgid "Whether or not the web-based toggle feature may be used."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:657
msgid "Whether requests to Privoxy's CGI pages can be blocked or redirected."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:664
msgid ""
"Whether the CGI interface should stay compatible with broken HTTP clients."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:798
msgid "Whether to run only one server thread."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:516
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:525
msgid "Who can access what."
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:49
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:87
msgid "installed"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:48
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
msgid "or higher"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:46
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
msgid "required"
msgstr ""

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -10,47 +10,45 @@ 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-privoxy/luasrc/model/cbi/privoxy.lua:236 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:90
msgid "" msgid ""
"A URL to be displayed in the error page that users will see if access to an " "A directory where Privoxy can create temporary files.<br /><strong>Only when "
"untrusted page is denied." "using 'external filters', Privoxy has to create temporary files.</strong>"
msgstr "" msgstr ""
"Un URL da mostrare nella pagina di errore che gli utenti vedranno se viene "
"negato l'accesso ad una pagina non affidabile."
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:226 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:209
msgid "" msgid "Accept intercepted requests"
"A URL to documentation about the local Privoxy setup, configuration or "
"policies."
msgstr "" msgstr ""
"Un URL alla documentazione locale su setup , configurazione o policy di "
"Privoxy."
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:325 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:118
msgid "A directory where Privoxy can create temporary files."
msgstr "Una cartella in cui Privoxy può creare file temporanei."
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:84
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:87
msgid "Access Control" msgid "Access Control"
msgstr "Controllo di accesso" msgstr "Controllo di accesso"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:337 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:96
msgid "Action Files"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:98
msgid "Actions that are applied to all sites and maybe overruled later on." msgid "Actions that are applied to all sites and maybe overruled later on."
msgstr "" msgstr ""
"Azioni che vengono applicate a tutti i siti e che potrebbero essere " "Azioni che vengono applicate a tutti i siti e che potrebbero essere "
"sovrascritte in seguito." "sovrascritte in seguito."
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:308 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:42
msgid "An alternative directory where the templates are loaded from." msgid "Admin Email"
msgstr "Una directory alternativa da cui sono caricati i template."
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:206
msgid "An email address to reach the Privoxy administrator."
msgstr "" msgstr ""
"Un indirizzo di posta elettronica per contattare l'amministratore di Privoxy."
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:695 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:213
msgid "Allow CGI request crunching"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:84
msgid ""
"An alternative directory where the templates are loaded from.<br />No "
"trailing \"/\", please."
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:230
msgid "" msgid ""
"Assumed server-side keep-alive timeout (in seconds) if not specified by the " "Assumed server-side keep-alive timeout (in seconds) if not specified by the "
"server." "server."
@@ -58,108 +56,221 @@ msgstr ""
"Tempo di attesa (in secondi) previsto lato server se non specificato dal " "Tempo di attesa (in secondi) previsto lato server se non specificato dal "
"server." "server."
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:151 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:22
msgid "Boot delay" msgid "Boot delay"
msgstr "Ritardo all'avvio" msgstr "Ritardo all'avvio"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:873 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:141
msgid "Buffer Limit"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:318
msgid "CGI user interface" msgid "CGI user interface"
msgstr "Interfaccia Utente CGI" msgstr "Interfaccia Utente CGI"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:861 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:260
msgid "Client header order"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:310
msgid "Common Log Format" msgid "Common Log Format"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:92 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:255
msgid "" msgid "Compression level"
"Configure here the routing of HTTP requests through a chain of multiple "
"proxies. Note that parent proxies can severely decrease your privacy level. "
"Also specified here are SOCKS proxies."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:855 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:77
msgid "Configuration Directory"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:13
msgid "Configure the Privoxy proxy daemon settings."
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:233
msgid "Connection sharing"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:266
msgid "Debug"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:273
msgid "Debug 1"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:313
msgid "Debug 1024"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:301
msgid "Debug 128"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:289
msgid "Debug 16"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:277
msgid "Debug 2"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:317
msgid "Debug 2048"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:305
msgid "Debug 256"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:293
msgid "Debug 32"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:331
msgid "Debug 32768"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:281
msgid "Debug 4"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:321
msgid "Debug 4096"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:309
msgid "Debug 512"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:297
msgid "Debug 64"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:335
msgid "Debug 65536"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:285
msgid "Debug 8"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:325
msgid "Debug 8192"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:306
msgid "Debug GIF de-animation" msgid "Debug GIF de-animation"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:837 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:294
msgid "Debug force feature" msgid "Debug force feature"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:849 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:302
msgid "Debug redirects" msgid "Debug redirects"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:843 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:298
msgid "Debug regular expression filters" msgid "Debug regular expression filters"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:152 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:229
msgid "Delay (in seconds) during system boot before Privoxy start" msgid "Default server timeout"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:261 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:23
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:298 msgid "Delay (in seconds) during system boot before Privoxy starts."
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:315
msgid "Directory does not exist!"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:557 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:135
msgid "Deny access"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:151
msgid "Disabled == Transparent Proxy Mode" msgid "Disabled == Transparent Proxy Mode"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:66 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:31
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:71
msgid "Documentation" msgid "Documentation"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:154 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:43
msgid "During delay ifup-events are not monitored !" msgid "Email address for the Privoxy administrator."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:599 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:167
msgid "Enable action file editor"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:251
msgid "Enable compression"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:181
msgid "Enable proxy authentication forwarding" msgid "Enable proxy authentication forwarding"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:135 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:156
msgid "" msgid "Enable remote toggle"
"Enable/Disable autostart of Privoxy on system startup and interface events"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:555 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:161
msgid "Enable remote toggle via HTTP"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:20
msgid "Enable/Disable autostart of Privoxy"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:150
msgid "Enable/Disable filtering when Privoxy starts." msgid "Enable/Disable filtering when Privoxy starts."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:134 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:20
msgid "Enabled" msgid "Enabled"
msgstr "Abilita" msgstr "Abilita"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:602 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:183
msgid "" msgid ""
"Enabling this option is NOT recommended if there is no parent proxy that " "Enabling this option is NOT recommended if there is no parent proxy that "
"requires authentication!" "requires authentication!"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:368 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:172
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:404 msgid "Enforce page blocking"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:442
msgid "File '%s' not found inside Configuration Directory"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:919 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:55
#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_logview.htm:12
msgid "File not found or empty"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:75
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:80
msgid "Files and Directories" msgid "Files and Directories"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:36 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:104
msgid "For help use link at the relevant option" msgid "Filter files"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:91 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:185
msgid "Forward HTTP"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:189
msgid "Forward SOCKS 4"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:193
msgid "Forward SOCKS 4A"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:197
msgid "Forward SOCKS 5"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:201
msgid "Forward SOCKS 5t"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:178
msgid "Forwarding" msgid "Forwarding"
msgstr "" msgstr ""
@@ -167,444 +278,426 @@ msgstr ""
msgid "Grant UCI access for luci-app-privoxy" msgid "Grant UCI access for luci-app-privoxy"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:589 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:247
msgid "Handle as empty doc returns ok"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:35
msgid "Hostname"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:173
msgid "" msgid ""
"If enabled, Privoxy hides the 'go there anyway' link. The user obviously " "If enabled, Privoxy hides the \"go there anyway\" link. The user obviously "
"should not be able to bypass any blocks." "should not be able to bypass any blocks."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:67 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:31
msgid "" msgid ""
"If you intend to operate Privoxy for more users than just yourself, it might " "If you intend to operate Privoxy for more users than just yourself, it might "
"be a good idea to let them know how to reach you, what you block and why you " "be a good idea to let them know how to reach you, what you block and why you "
"do that, your policies, etc." "do that, your policies, etc."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:215 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:112
msgid "Invalid email address"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:416
msgid "It is NOT recommended for the casual user." msgid "It is NOT recommended for the casual user."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:194 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:221
msgid "Keep-alive timeout"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:121
msgid "Listen addresses"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:40
msgid "Location of the Privoxy User Manual." msgid "Location of the Privoxy User Manual."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:108 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:60
msgid "Log File Viewer" msgid "Log Directory"
msgstr "Visualizzatore Registro" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:899 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:66
msgid "Log File"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:332
msgid "Log all data read from the network" msgid "Log all data read from the network"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:831 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:290
msgid "Log all data written to the network" msgid "Log all data written to the network"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:905 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:336
msgid "Log the applying actions" msgid "Log the applying actions"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:807 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:274
msgid "" msgid ""
"Log the destination for each request Privoxy let through. See also 'Debug " "Log the destination for each request Privoxy let through. See also 'Debug "
"1024'." "1024'."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:867 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:314
msgid "" msgid ""
"Log the destination for requests Privoxy didn't let through, and the reason " "Log the destination for requests Privoxy didn't let through, and the reason "
"why." "why."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:104 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:99
msgid "Logging"
msgstr "Registrazione (log)"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:339
msgid "Main actions file" msgid "Main actions file"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:461 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:72
msgid "Mandatory Input: No Data given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:259
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:296
msgid "Mandatory Input: No Directory given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:279
msgid "Mandatory Input: No File given!" msgid "Mandatory Input: No File given!"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:479 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:242
msgid "Mandatory Input: No Port given!" msgid "Max. client connections"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:345 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:244
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:381
msgid "Mandatory Input: No files given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:482
msgid "Mandatory Input: No valid IPv4 address or host given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:470
msgid "Mandatory Input: No valid IPv6 address given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:472
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:484
msgid "Mandatory Input: No valid Port given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:737
msgid "Maximum number of client connections that will be served." msgid "Maximum number of client connections that will be served."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:535 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:142
msgid "Maximum size (in KB) of the buffer for content filtering." msgid "Maximum size (in KB) of the buffer for content filtering."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:97 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:207
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:100 msgid "Misc"
msgid "Miscellaneous"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:51 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:326
msgid "NOT installed"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:254
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:291
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:310
msgid "No trailing '/', please."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:885
msgid "Non-fatal errors - *we highly recommended enabling this*" msgid "Non-fatal errors - *we highly recommended enabling this*"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:718 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:239
msgid "" msgid ""
"Number of seconds after which a socket times out if no data is received." "Number of seconds after which a socket times out if no data is received."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:672 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:222
msgid "" msgid ""
"Number of seconds after which an open connection will no longer be reused." "Number of seconds after which an open connection will no longer be reused."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:327 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:129
msgid "" msgid "Permit access"
"Only when using 'external filters', Privoxy has to create temporary files."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:81 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:130
msgid "Please install current version !" #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:136
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:917
msgid "Please press [Read] button"
msgstr "Per favore premi il pulsante [Leggi]"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:518
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:527
msgid "Please read Privoxy manual for details!" msgid "Please read Privoxy manual for details!"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:92 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:12
msgid "Please update to the current version!" msgid "Privoxy"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:24 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:15
msgid "Privoxy Settings"
msgstr ""
#: applications/luci-app-privoxy/root/usr/share/luci/menu.d/luci-app-privoxy.json:3
msgid "Privoxy WEB proxy" msgid "Privoxy WEB proxy"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:76 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:55
msgid "" msgid ""
"Privoxy can (and normally does) use a number of other files for additional " "Privoxy can (and normally does) use a number of other files for additional "
"configuration, help and logging. This section of the configuration file " "configuration, help and logging. This section of the configuration file "
"tells Privoxy where to find those other files." "tells Privoxy where to find those other files."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:32 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:47
msgid "" msgid "Proxy Info URL"
"Privoxy is a non-caching web proxy with advanced filtering capabilities for "
"enhancing privacy, modifying web page data and HTTP headers, controlling "
"access, and removing ads and other obnoxious Internet junk."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:912 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:282
msgid "Read / Reread log file"
msgstr "Leggi / Rileggi registro"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:819
msgid "Show I/O status" msgid "Show I/O status"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:813 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:278
msgid "Show each connection status" msgid "Show each connection status"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:825 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:286
msgid "Show header parsing" msgid "Show header parsing"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:76 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:268
msgid "Software package '%s' is not installed." msgid "Single Threaded"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:85 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:237
msgid "Software package '%s' is outdated." msgid "Socket timeout"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:125 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:217
#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_startstop.htm:10 msgid "Split large forms"
msgid "Start"
msgstr "Avvia"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:115
msgid "Start / Stop"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:116 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:322
msgid "Start/Stop Privoxy WEB Proxy"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:879
msgid "Startup banner and warnings." msgid "Startup banner and warnings."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:455 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:123
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:620
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:635
msgid "Syntax:" msgid "Syntax:"
msgstr "Sintassi:" msgstr "Sintassi:"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:790 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:262
msgid "Syntax: Client header names delimited by spaces." msgid "Syntax: Client header names delimited by spaces."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:612 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:199
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:203
msgid ""
"Syntax: target_pattern [user:pass@]socks_proxy[:port] http_parent[:port]"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:187
msgid "Syntax: target_pattern http_parent[:port]" msgid "Syntax: target_pattern http_parent[:port]"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:59 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:191
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:62 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:195
msgid "Syntax: target_pattern socks_proxy[:port] http_parent[:port]"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:19
msgid "System" msgid "System"
msgstr "Sistema" msgstr "Sistema"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:335 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:83
msgid "Template Directory"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:89
msgid "Temporary Directory"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:97
msgid "" msgid ""
"The actions file(s) to use. Multiple actionsfile lines are permitted, and " "The actions file(s) to use. Multiple actionsfile lines are permitted, and "
"are in fact recommended!" "are in fact recommended!"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:453 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:122
msgid "" msgid ""
"The address and TCP port on which Privoxy will listen for client requests." "The address and TCP port on which Privoxy will listen for client requests."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:770 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:257
msgid "" msgid ""
"The compression level that is passed to the zlib library when compressing " "The compression level that is passed to the zlib library when compressing "
"buffered content." "buffered content."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:252 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:61
msgid "" msgid ""
"The directory where all logging takes place (i.e. where the logfile is " "The directory where all logging takes place (i.e. where the logfile is "
"located)." "located).<br />No trailing \"/\", please."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:289 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:78
msgid "The directory where the other configuration files are located." msgid "The directory where the other configuration files are located."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:377 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:105
msgid "" msgid ""
"The filter files contain content modification rules that use regular " "The filter files contain content modification rules that use regular "
"expressions." "expressions."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:183 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:36
msgid "The hostname shown on the CGI pages." msgid "The hostname shown on the CGI pages."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:274 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:67
msgid "The log file to use. File name, relative to log directory." msgid "The log file to use. File name, relative to log directory."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:788 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:261
msgid "The order in which client headers are sorted before forwarding them." msgid "The order in which client headers are sorted before forwarding them."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:755 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:248
msgid "" msgid ""
"The status code Privoxy returns for pages blocked with +handle-as-empty-" "The status code Privoxy returns for pages blocked with +handle-as-empty-"
"document." "document."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:413 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:111
msgid "" msgid ""
"The trust mechanism is an experimental feature for building white-lists and " "The trust mechanism is an experimental feature for building white-lists and "
"should be used with care." "should be used with care."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:238 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:270
msgid ""
"The value of this option only matters if the experimental trust mechanism "
"has been activated."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:800
msgid "" msgid ""
"This option is only there for debugging purposes. It will drastically reduce " "This option is only there for debugging purposes. It will drastically reduce "
"performance." "performance."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:574 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:163
msgid "" msgid ""
"This option will be removed in future releases as it has been obsoleted by " "This option will be removed in future releases as it has been obsoleted by "
"the more general header taggers." "the more general header taggers."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:85 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:118
msgid "" msgid ""
"This tab controls the security-relevant aspects of Privoxy's configuration." "This tab controls the security-relevant aspects of Privoxy's configuration."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:618 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:190
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:633 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:194
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:198
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:202
msgid "" msgid ""
"Through which SOCKS proxy (and optionally to which parent HTTP proxy) " "Through which SOCKS proxy (and optionally to which parent HTTP proxy) "
"specific requests should be routed." "specific requests should be routed."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:610 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:186
msgid "To which parent HTTP proxy specific requests should be routed." msgid "To which parent HTTP proxy specific requests should be routed."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:341 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:149
msgid "Toggle Status"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:225
msgid "Tolerate pipelining"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:50
msgid "Trust Info URL"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:110
msgid "Trust file"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:51
msgid ""
"URL shown if access to an untrusted page is denied. Only applies if trust "
"mechanism is enabled."
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:48
msgid "URL to documentation about the local Privoxy setup."
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:39
msgid "User Manual"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:100
msgid "User customizations" msgid "User customizations"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:166 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:143
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:543
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:677
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:700
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:724
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:743
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:776
msgid "Value is not a number"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:168
msgid "Value not between 0 and 300"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:778
msgid "Value not between 0 and 9"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:545
msgid "Value not between 1 and 4096"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:679
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:702
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:726
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:745
msgid "Value not greater 0 or empty"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:537
msgid "Value range 1 to 4096, no entry defaults to 4096" msgid "Value range 1 to 4096, no entry defaults to 4096"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:45 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:210
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:47
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:50
msgid "Version"
msgstr "Versione"
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:43
msgid "Version Information"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:650
msgid "Whether intercepted requests should be treated as valid." msgid "Whether intercepted requests should be treated as valid."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:572 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:162
msgid "" msgid ""
"Whether or not Privoxy recognizes special HTTP headers to change toggle " "Whether or not Privoxy recognizes special HTTP headers to change toggle "
"state." "state."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:762 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:252
msgid "Whether or not buffered content is compressed before delivery." msgid "Whether or not buffered content is compressed before delivery."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:710 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:234
msgid "" msgid ""
"Whether or not outgoing connections that have been kept alive should be " "Whether or not outgoing connections that have been kept alive should be "
"shared between different incoming connections." "shared between different incoming connections."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:687 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:226
msgid "Whether or not pipelined requests should be served." msgid "Whether or not pipelined requests should be served."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:600 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:182
msgid "Whether or not proxy authentication through Privoxy should work." msgid "Whether or not proxy authentication through Privoxy should work."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:582 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:168
msgid "Whether or not the web-based actions file editor may be used." msgid "Whether or not the web-based actions file editor may be used."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:565 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:157
msgid "Whether or not the web-based toggle feature may be used." msgid "Whether or not the web-based toggle feature may be used."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:657 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:214
msgid "Whether requests to Privoxy's CGI pages can be blocked or redirected." msgid "Whether requests to Privoxy's CGI pages can be blocked or redirected."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:664 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:218
msgid "" msgid ""
"Whether the CGI interface should stay compatible with broken HTTP clients." "Whether the CGI interface should stay compatible with broken HTTP clients."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:798 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:269
msgid "Whether to run only one server thread." msgid "Whether to run only one server thread."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:516 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:130
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:525 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:136
msgid "Who can access what." msgid "Who can access what."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:49 #~ msgid ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:87 #~ "A URL to be displayed in the error page that users will see if access to "
msgid "installed" #~ "an untrusted page is denied."
msgstr "" #~ msgstr ""
#~ "Un URL da mostrare nella pagina di errore che gli utenti vedranno se "
#~ "viene negato l'accesso ad una pagina non affidabile."
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:48 #~ msgid ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78 #~ "A URL to documentation about the local Privoxy setup, configuration or "
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89 #~ "policies."
msgid "or higher" #~ msgstr ""
msgstr "" #~ "Un URL alla documentazione locale su setup , configurazione o policy di "
#~ "Privoxy."
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:46 #~ msgid "A directory where Privoxy can create temporary files."
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78 #~ msgstr "Una cartella in cui Privoxy può creare file temporanei."
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
msgid "required" #~ msgid "An alternative directory where the templates are loaded from."
msgstr "" #~ msgstr "Una directory alternativa da cui sono caricati i template."
#~ msgid "An email address to reach the Privoxy administrator."
#~ msgstr ""
#~ "Un indirizzo di posta elettronica per contattare l'amministratore di "
#~ "Privoxy."
#~ msgid "Log File Viewer"
#~ msgstr "Visualizzatore Registro"
#~ msgid "Logging"
#~ msgstr "Registrazione (log)"
#~ msgid "Please press [Read] button"
#~ msgstr "Per favore premi il pulsante [Leggi]"
#~ msgid "Read / Reread log file"
#~ msgstr "Leggi / Rileggi registro"
#~ msgid "Start"
#~ msgstr "Avvia"
#~ msgid "Version"
#~ msgstr "Versione"

View File

@@ -10,151 +10,263 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 5.5-dev\n" "X-Generator: Weblate 5.5-dev\n"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:236 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:90
msgid "" msgid ""
"A URL to be displayed in the error page that users will see if access to an " "A directory where Privoxy can create temporary files.<br /><strong>Only when "
"untrusted page is denied." "using 'external filters', Privoxy has to create temporary files.</strong>"
msgstr ""
"信頼されていないページへのアクセスが拒否された場合に、ユーザーに表示されるエ"
"ラーページに表示されるURL。"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:226
msgid ""
"A URL to documentation about the local Privoxy setup, configuration or "
"policies."
msgstr ""
"ローカルの Privoxy のセットアップ、構成、またはポリシーに関するドキュメントへ"
"の URL。"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:325
msgid "A directory where Privoxy can create temporary files."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:84 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:209
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:87 msgid "Accept intercepted requests"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:118
msgid "Access Control" msgid "Access Control"
msgstr "アクセス制御" msgstr "アクセス制御"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:337 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:96
msgid "Action Files"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:98
msgid "Actions that are applied to all sites and maybe overruled later on." msgid "Actions that are applied to all sites and maybe overruled later on."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:308 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:42
msgid "An alternative directory where the templates are loaded from." msgid "Admin Email"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:206 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:213
msgid "An email address to reach the Privoxy administrator." msgid "Allow CGI request crunching"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:695 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:84
msgid ""
"An alternative directory where the templates are loaded from.<br />No "
"trailing \"/\", please."
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:230
msgid "" msgid ""
"Assumed server-side keep-alive timeout (in seconds) if not specified by the " "Assumed server-side keep-alive timeout (in seconds) if not specified by the "
"server." "server."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:151 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:22
msgid "Boot delay" msgid "Boot delay"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:873 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:141
msgid "Buffer Limit"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:318
msgid "CGI user interface" msgid "CGI user interface"
msgstr "CGIユーザーインターフェイス" msgstr "CGIユーザーインターフェイス"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:861 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:260
msgid "Client header order"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:310
msgid "Common Log Format" msgid "Common Log Format"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:92 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:255
msgid "" msgid "Compression level"
"Configure here the routing of HTTP requests through a chain of multiple "
"proxies. Note that parent proxies can severely decrease your privacy level. "
"Also specified here are SOCKS proxies."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:855 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:77
msgid "Configuration Directory"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:13
msgid "Configure the Privoxy proxy daemon settings."
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:233
msgid "Connection sharing"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:266
msgid "Debug"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:273
msgid "Debug 1"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:313
msgid "Debug 1024"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:301
msgid "Debug 128"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:289
msgid "Debug 16"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:277
msgid "Debug 2"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:317
msgid "Debug 2048"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:305
msgid "Debug 256"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:293
msgid "Debug 32"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:331
msgid "Debug 32768"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:281
msgid "Debug 4"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:321
msgid "Debug 4096"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:309
msgid "Debug 512"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:297
msgid "Debug 64"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:335
msgid "Debug 65536"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:285
msgid "Debug 8"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:325
msgid "Debug 8192"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:306
msgid "Debug GIF de-animation" msgid "Debug GIF de-animation"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:837 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:294
msgid "Debug force feature" msgid "Debug force feature"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:849 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:302
msgid "Debug redirects" msgid "Debug redirects"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:843 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:298
msgid "Debug regular expression filters" msgid "Debug regular expression filters"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:152 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:229
msgid "Delay (in seconds) during system boot before Privoxy start" msgid "Default server timeout"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:261 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:23
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:298 msgid "Delay (in seconds) during system boot before Privoxy starts."
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:315 msgstr ""
msgid "Directory does not exist!"
msgstr "ディレクトリが存在しません!"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:557 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:135
msgid "Deny access"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:151
msgid "Disabled == Transparent Proxy Mode" msgid "Disabled == Transparent Proxy Mode"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:66 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:31
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:71
msgid "Documentation" msgid "Documentation"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:154 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:43
msgid "During delay ifup-events are not monitored !" msgid "Email address for the Privoxy administrator."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:599 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:167
msgid "Enable action file editor"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:251
msgid "Enable compression"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:181
msgid "Enable proxy authentication forwarding" msgid "Enable proxy authentication forwarding"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:135 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:156
msgid "" msgid "Enable remote toggle"
"Enable/Disable autostart of Privoxy on system startup and interface events"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:555 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:161
msgid "Enable remote toggle via HTTP"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:20
msgid "Enable/Disable autostart of Privoxy"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:150
msgid "Enable/Disable filtering when Privoxy starts." msgid "Enable/Disable filtering when Privoxy starts."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:134 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:20
msgid "Enabled" msgid "Enabled"
msgstr "有効" msgstr "有効"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:602 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:183
msgid "" msgid ""
"Enabling this option is NOT recommended if there is no parent proxy that " "Enabling this option is NOT recommended if there is no parent proxy that "
"requires authentication!" "requires authentication!"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:368 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:172
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:404 msgid "Enforce page blocking"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:442
msgid "File '%s' not found inside Configuration Directory"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:919 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:55
#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_logview.htm:12
msgid "File not found or empty"
msgstr "ファイルが見つからないか空です"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:75
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:80
msgid "Files and Directories" msgid "Files and Directories"
msgstr "ファイルとディレクトリ" msgstr "ファイルとディレクトリ"
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:36 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:104
msgid "For help use link at the relevant option" msgid "Filter files"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:91 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:185
msgid "Forward HTTP"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:189
msgid "Forward SOCKS 4"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:193
msgid "Forward SOCKS 4A"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:197
msgid "Forward SOCKS 5"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:201
msgid "Forward SOCKS 5t"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:178
msgid "Forwarding" msgid "Forwarding"
msgstr "" msgstr ""
@@ -162,444 +274,442 @@ msgstr ""
msgid "Grant UCI access for luci-app-privoxy" msgid "Grant UCI access for luci-app-privoxy"
msgstr "luci-app-privoxyにUCIアクセスを許可" msgstr "luci-app-privoxyにUCIアクセスを許可"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:589 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:247
msgid "Handle as empty doc returns ok"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:35
msgid "Hostname"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:173
msgid "" msgid ""
"If enabled, Privoxy hides the 'go there anyway' link. The user obviously " "If enabled, Privoxy hides the \"go there anyway\" link. The user obviously "
"should not be able to bypass any blocks." "should not be able to bypass any blocks."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:67 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:31
msgid "" msgid ""
"If you intend to operate Privoxy for more users than just yourself, it might " "If you intend to operate Privoxy for more users than just yourself, it might "
"be a good idea to let them know how to reach you, what you block and why you " "be a good idea to let them know how to reach you, what you block and why you "
"do that, your policies, etc." "do that, your policies, etc."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:215 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:112
msgid "Invalid email address"
msgstr "無効なメール アドレス"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:416
msgid "It is NOT recommended for the casual user." msgid "It is NOT recommended for the casual user."
msgstr "ライトユーザーにはお勧めしません。" msgstr "ライトユーザーにはお勧めしません。"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:194 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:221
msgid "Keep-alive timeout"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:121
msgid "Listen addresses"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:40
msgid "Location of the Privoxy User Manual." msgid "Location of the Privoxy User Manual."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:108 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:60
msgid "Log File Viewer" msgid "Log Directory"
msgstr "ログファイル・ビューア" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:899 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:66
msgid "Log File"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:332
msgid "Log all data read from the network" msgid "Log all data read from the network"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:831 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:290
msgid "Log all data written to the network" msgid "Log all data written to the network"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:905 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:336
msgid "Log the applying actions" msgid "Log the applying actions"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:807 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:274
msgid "" msgid ""
"Log the destination for each request Privoxy let through. See also 'Debug " "Log the destination for each request Privoxy let through. See also 'Debug "
"1024'." "1024'."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:867 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:314
msgid "" msgid ""
"Log the destination for requests Privoxy didn't let through, and the reason " "Log the destination for requests Privoxy didn't let through, and the reason "
"why." "why."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:104 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:99
msgid "Logging"
msgstr "ロギング"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:339
msgid "Main actions file" msgid "Main actions file"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:461 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:72
msgid "Mandatory Input: No Data given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:259
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:296
msgid "Mandatory Input: No Directory given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:279
msgid "Mandatory Input: No File given!" msgid "Mandatory Input: No File given!"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:479 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:242
msgid "Mandatory Input: No Port given!" msgid "Max. client connections"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:345 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:244
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:381
msgid "Mandatory Input: No files given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:482
msgid "Mandatory Input: No valid IPv4 address or host given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:470
msgid "Mandatory Input: No valid IPv6 address given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:472
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:484
msgid "Mandatory Input: No valid Port given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:737
msgid "Maximum number of client connections that will be served." msgid "Maximum number of client connections that will be served."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:535 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:142
msgid "Maximum size (in KB) of the buffer for content filtering." msgid "Maximum size (in KB) of the buffer for content filtering."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:97 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:207
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:100 msgid "Misc"
msgid "Miscellaneous"
msgstr "詳細設定"
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:51
msgid "NOT installed"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:254 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:326
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:291
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:310
msgid "No trailing '/', please."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:885
msgid "Non-fatal errors - *we highly recommended enabling this*" msgid "Non-fatal errors - *we highly recommended enabling this*"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:718 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:239
msgid "" msgid ""
"Number of seconds after which a socket times out if no data is received." "Number of seconds after which a socket times out if no data is received."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:672 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:222
msgid "" msgid ""
"Number of seconds after which an open connection will no longer be reused." "Number of seconds after which an open connection will no longer be reused."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:327 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:129
msgid "" msgid "Permit access"
"Only when using 'external filters', Privoxy has to create temporary files."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:81 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:130
msgid "Please install current version !" #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:136
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:917
msgid "Please press [Read] button"
msgstr "[読込] ボタンを押してください"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:518
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:527
msgid "Please read Privoxy manual for details!" msgid "Please read Privoxy manual for details!"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:92 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:12
msgid "Please update to the current version!" msgid "Privoxy"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:24 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:15
msgid "Privoxy Settings"
msgstr ""
#: applications/luci-app-privoxy/root/usr/share/luci/menu.d/luci-app-privoxy.json:3
msgid "Privoxy WEB proxy" msgid "Privoxy WEB proxy"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:76 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:55
msgid "" msgid ""
"Privoxy can (and normally does) use a number of other files for additional " "Privoxy can (and normally does) use a number of other files for additional "
"configuration, help and logging. This section of the configuration file " "configuration, help and logging. This section of the configuration file "
"tells Privoxy where to find those other files." "tells Privoxy where to find those other files."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:32 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:47
msgid "" msgid "Proxy Info URL"
"Privoxy is a non-caching web proxy with advanced filtering capabilities for "
"enhancing privacy, modifying web page data and HTTP headers, controlling "
"access, and removing ads and other obnoxious Internet junk."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:912 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:282
msgid "Read / Reread log file"
msgstr "ログファイルの読み込み/再読み込み"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:819
msgid "Show I/O status" msgid "Show I/O status"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:813 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:278
msgid "Show each connection status" msgid "Show each connection status"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:825 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:286
msgid "Show header parsing" msgid "Show header parsing"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:76 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:268
msgid "Software package '%s' is not installed." msgid "Single Threaded"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:85 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:237
msgid "Software package '%s' is outdated." msgid "Socket timeout"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:125 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:217
#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_startstop.htm:10 msgid "Split large forms"
msgid "Start"
msgstr "開始"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:115
msgid "Start / Stop"
msgstr "開始 / 停止"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:116
msgid "Start/Stop Privoxy WEB Proxy"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:879 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:322
msgid "Startup banner and warnings." msgid "Startup banner and warnings."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:455 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:123
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:620
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:635
msgid "Syntax:" msgid "Syntax:"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:790 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:262
msgid "Syntax: Client header names delimited by spaces." msgid "Syntax: Client header names delimited by spaces."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:612 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:199
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:203
msgid ""
"Syntax: target_pattern [user:pass@]socks_proxy[:port] http_parent[:port]"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:187
msgid "Syntax: target_pattern http_parent[:port]" msgid "Syntax: target_pattern http_parent[:port]"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:59 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:191
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:62 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:195
msgid "Syntax: target_pattern socks_proxy[:port] http_parent[:port]"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:19
msgid "System" msgid "System"
msgstr "システム" msgstr "システム"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:335 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:83
msgid "Template Directory"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:89
msgid "Temporary Directory"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:97
msgid "" msgid ""
"The actions file(s) to use. Multiple actionsfile lines are permitted, and " "The actions file(s) to use. Multiple actionsfile lines are permitted, and "
"are in fact recommended!" "are in fact recommended!"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:453 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:122
msgid "" msgid ""
"The address and TCP port on which Privoxy will listen for client requests." "The address and TCP port on which Privoxy will listen for client requests."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:770 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:257
msgid "" msgid ""
"The compression level that is passed to the zlib library when compressing " "The compression level that is passed to the zlib library when compressing "
"buffered content." "buffered content."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:252 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:61
msgid "" msgid ""
"The directory where all logging takes place (i.e. where the logfile is " "The directory where all logging takes place (i.e. where the logfile is "
"located)." "located).<br />No trailing \"/\", please."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:289 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:78
msgid "The directory where the other configuration files are located." msgid "The directory where the other configuration files are located."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:377 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:105
msgid "" msgid ""
"The filter files contain content modification rules that use regular " "The filter files contain content modification rules that use regular "
"expressions." "expressions."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:183 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:36
msgid "The hostname shown on the CGI pages." msgid "The hostname shown on the CGI pages."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:274 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:67
msgid "The log file to use. File name, relative to log directory." msgid "The log file to use. File name, relative to log directory."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:788 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:261
msgid "The order in which client headers are sorted before forwarding them." msgid "The order in which client headers are sorted before forwarding them."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:755 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:248
msgid "" msgid ""
"The status code Privoxy returns for pages blocked with +handle-as-empty-" "The status code Privoxy returns for pages blocked with +handle-as-empty-"
"document." "document."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:413 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:111
msgid "" msgid ""
"The trust mechanism is an experimental feature for building white-lists and " "The trust mechanism is an experimental feature for building white-lists and "
"should be used with care." "should be used with care."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:238 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:270
msgid ""
"The value of this option only matters if the experimental trust mechanism "
"has been activated."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:800
msgid "" msgid ""
"This option is only there for debugging purposes. It will drastically reduce " "This option is only there for debugging purposes. It will drastically reduce "
"performance." "performance."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:574 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:163
msgid "" msgid ""
"This option will be removed in future releases as it has been obsoleted by " "This option will be removed in future releases as it has been obsoleted by "
"the more general header taggers." "the more general header taggers."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:85 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:118
msgid "" msgid ""
"This tab controls the security-relevant aspects of Privoxy's configuration." "This tab controls the security-relevant aspects of Privoxy's configuration."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:618 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:190
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:633 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:194
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:198
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:202
msgid "" msgid ""
"Through which SOCKS proxy (and optionally to which parent HTTP proxy) " "Through which SOCKS proxy (and optionally to which parent HTTP proxy) "
"specific requests should be routed." "specific requests should be routed."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:610 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:186
msgid "To which parent HTTP proxy specific requests should be routed." msgid "To which parent HTTP proxy specific requests should be routed."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:341 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:149
msgid "Toggle Status"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:225
msgid "Tolerate pipelining"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:50
msgid "Trust Info URL"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:110
msgid "Trust file"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:51
msgid ""
"URL shown if access to an untrusted page is denied. Only applies if trust "
"mechanism is enabled."
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:48
msgid "URL to documentation about the local Privoxy setup."
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:39
msgid "User Manual"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:100
msgid "User customizations" msgid "User customizations"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:166 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:143
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:543
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:677
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:700
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:724
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:743
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:776
msgid "Value is not a number"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:168
msgid "Value not between 0 and 300"
msgstr "0 から 300 の間の値ではありません"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:778
msgid "Value not between 0 and 9"
msgstr "0 から 9 の間の値ではありません"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:545
msgid "Value not between 1 and 4096"
msgstr "1 から 4096 の間の値ではありません"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:679
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:702
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:726
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:745
msgid "Value not greater 0 or empty"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:537
msgid "Value range 1 to 4096, no entry defaults to 4096" msgid "Value range 1 to 4096, no entry defaults to 4096"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:45 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:210
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:47
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:50
msgid "Version"
msgstr "バージョン"
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:43
msgid "Version Information"
msgstr "バージョン情報"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:650
msgid "Whether intercepted requests should be treated as valid." msgid "Whether intercepted requests should be treated as valid."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:572 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:162
msgid "" msgid ""
"Whether or not Privoxy recognizes special HTTP headers to change toggle " "Whether or not Privoxy recognizes special HTTP headers to change toggle "
"state." "state."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:762 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:252
msgid "Whether or not buffered content is compressed before delivery." msgid "Whether or not buffered content is compressed before delivery."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:710 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:234
msgid "" msgid ""
"Whether or not outgoing connections that have been kept alive should be " "Whether or not outgoing connections that have been kept alive should be "
"shared between different incoming connections." "shared between different incoming connections."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:687 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:226
msgid "Whether or not pipelined requests should be served." msgid "Whether or not pipelined requests should be served."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:600 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:182
msgid "Whether or not proxy authentication through Privoxy should work." msgid "Whether or not proxy authentication through Privoxy should work."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:582 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:168
msgid "Whether or not the web-based actions file editor may be used." msgid "Whether or not the web-based actions file editor may be used."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:565 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:157
msgid "Whether or not the web-based toggle feature may be used." msgid "Whether or not the web-based toggle feature may be used."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:657 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:214
msgid "Whether requests to Privoxy's CGI pages can be blocked or redirected." msgid "Whether requests to Privoxy's CGI pages can be blocked or redirected."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:664 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:218
msgid "" msgid ""
"Whether the CGI interface should stay compatible with broken HTTP clients." "Whether the CGI interface should stay compatible with broken HTTP clients."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:798 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:269
msgid "Whether to run only one server thread." msgid "Whether to run only one server thread."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:516 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:130
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:525 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:136
msgid "Who can access what." msgid "Who can access what."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:49 #~ msgid ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:87 #~ "A URL to be displayed in the error page that users will see if access to "
msgid "installed" #~ "an untrusted page is denied."
msgstr "" #~ msgstr ""
#~ "信頼されていないページへのアクセスが拒否された場合に、ユーザーに表示される"
#~ "エラーページに表示されるURL。"
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:48 #~ msgid ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78 #~ "A URL to documentation about the local Privoxy setup, configuration or "
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89 #~ "policies."
msgid "or higher" #~ msgstr ""
msgstr "" #~ "ローカルの Privoxy のセットアップ、構成、またはポリシーに関するドキュメン"
#~ "トへの URL。"
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:46 #~ msgid "Directory does not exist!"
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78 #~ msgstr "ディレクトリが存在しません!"
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
msgid "required" #~ msgid "File not found or empty"
msgstr "" #~ msgstr "ファイルが見つからないか空です"
#~ msgid "Invalid email address"
#~ msgstr "無効なメール アドレス"
#~ msgid "Log File Viewer"
#~ msgstr "ログファイル・ビューア"
#~ msgid "Logging"
#~ msgstr "ロギング"
#~ msgid "Miscellaneous"
#~ msgstr "詳細設定"
#~ msgid "Please press [Read] button"
#~ msgstr "[読込] ボタンを押してください"
#~ msgid "Read / Reread log file"
#~ msgstr "ログファイルの読み込み/再読み込み"
#~ msgid "Start"
#~ msgstr "開始"
#~ msgid "Start / Stop"
#~ msgstr "開始 / 停止"
#~ msgid "Value not between 0 and 300"
#~ msgstr "0 から 300 の間の値ではありません"
#~ msgid "Value not between 0 and 9"
#~ msgstr "0 から 9 の間の値ではありません"
#~ msgid "Value not between 1 and 4096"
#~ msgstr "1 から 4096 の間の値ではありません"
#~ msgid "Version"
#~ msgstr "バージョン"
#~ msgid "Version Information"
#~ msgstr "バージョン情報"

View File

@@ -1,601 +0,0 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2022-07-31 13:17+0000\n"
"Last-Translator: somni <me@somni.one>\n"
"Language-Team: Korean <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsprivoxy/ko/>\n"
"Language: ko\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 4.14-dev\n"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:236
msgid ""
"A URL to be displayed in the error page that users will see if access to an "
"untrusted page is denied."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:226
msgid ""
"A URL to documentation about the local Privoxy setup, configuration or "
"policies."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:325
msgid "A directory where Privoxy can create temporary files."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:84
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:87
msgid "Access Control"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:337
msgid "Actions that are applied to all sites and maybe overruled later on."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:308
msgid "An alternative directory where the templates are loaded from."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:206
msgid "An email address to reach the Privoxy administrator."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:695
msgid ""
"Assumed server-side keep-alive timeout (in seconds) if not specified by the "
"server."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:151
msgid "Boot delay"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:873
msgid "CGI user interface"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:861
msgid "Common Log Format"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:92
msgid ""
"Configure here the routing of HTTP requests through a chain of multiple "
"proxies. Note that parent proxies can severely decrease your privacy level. "
"Also specified here are SOCKS proxies."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:855
msgid "Debug GIF de-animation"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:837
msgid "Debug force feature"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:849
msgid "Debug redirects"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:843
msgid "Debug regular expression filters"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:152
msgid "Delay (in seconds) during system boot before Privoxy start"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:261
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:298
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:315
msgid "Directory does not exist!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:557
msgid "Disabled == Transparent Proxy Mode"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:66
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:71
msgid "Documentation"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:154
msgid "During delay ifup-events are not monitored !"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:599
msgid "Enable proxy authentication forwarding"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:135
msgid ""
"Enable/Disable autostart of Privoxy on system startup and interface events"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:555
msgid "Enable/Disable filtering when Privoxy starts."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:134
msgid "Enabled"
msgstr "활성화"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:602
msgid ""
"Enabling this option is NOT recommended if there is no parent proxy that "
"requires authentication!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:368
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:404
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:442
msgid "File '%s' not found inside Configuration Directory"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:919
#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_logview.htm:12
msgid "File not found or empty"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:75
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:80
msgid "Files and Directories"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:36
msgid "For help use link at the relevant option"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:91
msgid "Forwarding"
msgstr ""
#: applications/luci-app-privoxy/root/usr/share/rpcd/acl.d/luci-app-privoxy.json:3
msgid "Grant UCI access for luci-app-privoxy"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:589
msgid ""
"If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
"should not be able to bypass any blocks."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:67
msgid ""
"If you intend to operate Privoxy for more users than just yourself, it might "
"be a good idea to let them know how to reach you, what you block and why you "
"do that, your policies, etc."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:215
msgid "Invalid email address"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:416
msgid "It is NOT recommended for the casual user."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:194
msgid "Location of the Privoxy User Manual."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:108
msgid "Log File Viewer"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:899
msgid "Log all data read from the network"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:831
msgid "Log all data written to the network"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:905
msgid "Log the applying actions"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:807
msgid ""
"Log the destination for each request Privoxy let through. See also 'Debug "
"1024'."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:867
msgid ""
"Log the destination for requests Privoxy didn't let through, and the reason "
"why."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:104
msgid "Logging"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:339
msgid "Main actions file"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:461
msgid "Mandatory Input: No Data given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:259
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:296
msgid "Mandatory Input: No Directory given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:279
msgid "Mandatory Input: No File given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:479
msgid "Mandatory Input: No Port given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:345
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:381
msgid "Mandatory Input: No files given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:482
msgid "Mandatory Input: No valid IPv4 address or host given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:470
msgid "Mandatory Input: No valid IPv6 address given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:472
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:484
msgid "Mandatory Input: No valid Port given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:737
msgid "Maximum number of client connections that will be served."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:535
msgid "Maximum size (in KB) of the buffer for content filtering."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:97
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:100
msgid "Miscellaneous"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:51
msgid "NOT installed"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:254
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:291
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:310
msgid "No trailing '/', please."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:885
msgid "Non-fatal errors - *we highly recommended enabling this*"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:718
msgid ""
"Number of seconds after which a socket times out if no data is received."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:672
msgid ""
"Number of seconds after which an open connection will no longer be reused."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:327
msgid ""
"Only when using 'external filters', Privoxy has to create temporary files."
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:81
msgid "Please install current version !"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:917
msgid "Please press [Read] button"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:518
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:527
msgid "Please read Privoxy manual for details!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:92
msgid "Please update to the current version!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:24
msgid "Privoxy WEB proxy"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:76
msgid ""
"Privoxy can (and normally does) use a number of other files for additional "
"configuration, help and logging. This section of the configuration file "
"tells Privoxy where to find those other files."
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:32
msgid ""
"Privoxy is a non-caching web proxy with advanced filtering capabilities for "
"enhancing privacy, modifying web page data and HTTP headers, controlling "
"access, and removing ads and other obnoxious Internet junk."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:912
msgid "Read / Reread log file"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:819
msgid "Show I/O status"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:813
msgid "Show each connection status"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:825
msgid "Show header parsing"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:76
msgid "Software package '%s' is not installed."
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:85
msgid "Software package '%s' is outdated."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:125
#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_startstop.htm:10
msgid "Start"
msgstr "시작"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:115
msgid "Start / Stop"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:116
msgid "Start/Stop Privoxy WEB Proxy"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:879
msgid "Startup banner and warnings."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:455
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:620
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:635
msgid "Syntax:"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:790
msgid "Syntax: Client header names delimited by spaces."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:612
msgid "Syntax: target_pattern http_parent[:port]"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:59
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:62
msgid "System"
msgstr "시스템"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:335
msgid ""
"The actions file(s) to use. Multiple actionsfile lines are permitted, and "
"are in fact recommended!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:453
msgid ""
"The address and TCP port on which Privoxy will listen for client requests."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:770
msgid ""
"The compression level that is passed to the zlib library when compressing "
"buffered content."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:252
msgid ""
"The directory where all logging takes place (i.e. where the logfile is "
"located)."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:289
msgid "The directory where the other configuration files are located."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:377
msgid ""
"The filter files contain content modification rules that use regular "
"expressions."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:183
msgid "The hostname shown on the CGI pages."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:274
msgid "The log file to use. File name, relative to log directory."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:788
msgid "The order in which client headers are sorted before forwarding them."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:755
msgid ""
"The status code Privoxy returns for pages blocked with +handle-as-empty-"
"document."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:413
msgid ""
"The trust mechanism is an experimental feature for building white-lists and "
"should be used with care."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:238
msgid ""
"The value of this option only matters if the experimental trust mechanism "
"has been activated."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:800
msgid ""
"This option is only there for debugging purposes. It will drastically reduce "
"performance."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:574
msgid ""
"This option will be removed in future releases as it has been obsoleted by "
"the more general header taggers."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:85
msgid ""
"This tab controls the security-relevant aspects of Privoxy's configuration."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:618
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:633
msgid ""
"Through which SOCKS proxy (and optionally to which parent HTTP proxy) "
"specific requests should be routed."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:610
msgid "To which parent HTTP proxy specific requests should be routed."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:341
msgid "User customizations"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:166
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:543
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:677
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:700
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:724
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:743
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:776
msgid "Value is not a number"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:168
msgid "Value not between 0 and 300"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:778
msgid "Value not between 0 and 9"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:545
msgid "Value not between 1 and 4096"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:679
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:702
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:726
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:745
msgid "Value not greater 0 or empty"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:537
msgid "Value range 1 to 4096, no entry defaults to 4096"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:45
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:47
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:50
msgid "Version"
msgstr "버전"
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:43
msgid "Version Information"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:650
msgid "Whether intercepted requests should be treated as valid."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:572
msgid ""
"Whether or not Privoxy recognizes special HTTP headers to change toggle "
"state."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:762
msgid "Whether or not buffered content is compressed before delivery."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:710
msgid ""
"Whether or not outgoing connections that have been kept alive should be "
"shared between different incoming connections."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:687
msgid "Whether or not pipelined requests should be served."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:600
msgid "Whether or not proxy authentication through Privoxy should work."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:582
msgid "Whether or not the web-based actions file editor may be used."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:565
msgid "Whether or not the web-based toggle feature may be used."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:657
msgid "Whether requests to Privoxy's CGI pages can be blocked or redirected."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:664
msgid ""
"Whether the CGI interface should stay compatible with broken HTTP clients."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:798
msgid "Whether to run only one server thread."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:516
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:525
msgid "Who can access what."
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:49
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:87
msgid "installed"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:48
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
msgid "or higher"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:46
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
msgid "required"
msgstr ""

File diff suppressed because it is too large Load Diff

View File

@@ -1,601 +0,0 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2020-02-07 09:18+0000\n"
"Last-Translator: Prachi Joshi <josprachi@yahoo.com>\n"
"Language-Team: Marathi <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsprivoxy/mr/>\n"
"Language: mr\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 3.11-dev\n"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:236
msgid ""
"A URL to be displayed in the error page that users will see if access to an "
"untrusted page is denied."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:226
msgid ""
"A URL to documentation about the local Privoxy setup, configuration or "
"policies."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:325
msgid "A directory where Privoxy can create temporary files."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:84
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:87
msgid "Access Control"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:337
msgid "Actions that are applied to all sites and maybe overruled later on."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:308
msgid "An alternative directory where the templates are loaded from."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:206
msgid "An email address to reach the Privoxy administrator."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:695
msgid ""
"Assumed server-side keep-alive timeout (in seconds) if not specified by the "
"server."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:151
msgid "Boot delay"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:873
msgid "CGI user interface"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:861
msgid "Common Log Format"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:92
msgid ""
"Configure here the routing of HTTP requests through a chain of multiple "
"proxies. Note that parent proxies can severely decrease your privacy level. "
"Also specified here are SOCKS proxies."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:855
msgid "Debug GIF de-animation"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:837
msgid "Debug force feature"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:849
msgid "Debug redirects"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:843
msgid "Debug regular expression filters"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:152
msgid "Delay (in seconds) during system boot before Privoxy start"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:261
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:298
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:315
msgid "Directory does not exist!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:557
msgid "Disabled == Transparent Proxy Mode"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:66
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:71
msgid "Documentation"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:154
msgid "During delay ifup-events are not monitored !"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:599
msgid "Enable proxy authentication forwarding"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:135
msgid ""
"Enable/Disable autostart of Privoxy on system startup and interface events"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:555
msgid "Enable/Disable filtering when Privoxy starts."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:134
msgid "Enabled"
msgstr "सक्षम केले"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:602
msgid ""
"Enabling this option is NOT recommended if there is no parent proxy that "
"requires authentication!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:368
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:404
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:442
msgid "File '%s' not found inside Configuration Directory"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:919
#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_logview.htm:12
msgid "File not found or empty"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:75
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:80
msgid "Files and Directories"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:36
msgid "For help use link at the relevant option"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:91
msgid "Forwarding"
msgstr ""
#: applications/luci-app-privoxy/root/usr/share/rpcd/acl.d/luci-app-privoxy.json:3
msgid "Grant UCI access for luci-app-privoxy"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:589
msgid ""
"If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
"should not be able to bypass any blocks."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:67
msgid ""
"If you intend to operate Privoxy for more users than just yourself, it might "
"be a good idea to let them know how to reach you, what you block and why you "
"do that, your policies, etc."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:215
msgid "Invalid email address"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:416
msgid "It is NOT recommended for the casual user."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:194
msgid "Location of the Privoxy User Manual."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:108
msgid "Log File Viewer"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:899
msgid "Log all data read from the network"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:831
msgid "Log all data written to the network"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:905
msgid "Log the applying actions"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:807
msgid ""
"Log the destination for each request Privoxy let through. See also 'Debug "
"1024'."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:867
msgid ""
"Log the destination for requests Privoxy didn't let through, and the reason "
"why."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:104
msgid "Logging"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:339
msgid "Main actions file"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:461
msgid "Mandatory Input: No Data given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:259
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:296
msgid "Mandatory Input: No Directory given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:279
msgid "Mandatory Input: No File given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:479
msgid "Mandatory Input: No Port given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:345
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:381
msgid "Mandatory Input: No files given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:482
msgid "Mandatory Input: No valid IPv4 address or host given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:470
msgid "Mandatory Input: No valid IPv6 address given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:472
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:484
msgid "Mandatory Input: No valid Port given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:737
msgid "Maximum number of client connections that will be served."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:535
msgid "Maximum size (in KB) of the buffer for content filtering."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:97
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:100
msgid "Miscellaneous"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:51
msgid "NOT installed"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:254
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:291
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:310
msgid "No trailing '/', please."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:885
msgid "Non-fatal errors - *we highly recommended enabling this*"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:718
msgid ""
"Number of seconds after which a socket times out if no data is received."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:672
msgid ""
"Number of seconds after which an open connection will no longer be reused."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:327
msgid ""
"Only when using 'external filters', Privoxy has to create temporary files."
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:81
msgid "Please install current version !"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:917
msgid "Please press [Read] button"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:518
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:527
msgid "Please read Privoxy manual for details!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:92
msgid "Please update to the current version!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:24
msgid "Privoxy WEB proxy"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:76
msgid ""
"Privoxy can (and normally does) use a number of other files for additional "
"configuration, help and logging. This section of the configuration file "
"tells Privoxy where to find those other files."
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:32
msgid ""
"Privoxy is a non-caching web proxy with advanced filtering capabilities for "
"enhancing privacy, modifying web page data and HTTP headers, controlling "
"access, and removing ads and other obnoxious Internet junk."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:912
msgid "Read / Reread log file"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:819
msgid "Show I/O status"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:813
msgid "Show each connection status"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:825
msgid "Show header parsing"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:76
msgid "Software package '%s' is not installed."
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:85
msgid "Software package '%s' is outdated."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:125
#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_startstop.htm:10
msgid "Start"
msgstr "प्रारंभ करा"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:115
msgid "Start / Stop"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:116
msgid "Start/Stop Privoxy WEB Proxy"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:879
msgid "Startup banner and warnings."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:455
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:620
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:635
msgid "Syntax:"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:790
msgid "Syntax: Client header names delimited by spaces."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:612
msgid "Syntax: target_pattern http_parent[:port]"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:59
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:62
msgid "System"
msgstr "प्रणाली"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:335
msgid ""
"The actions file(s) to use. Multiple actionsfile lines are permitted, and "
"are in fact recommended!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:453
msgid ""
"The address and TCP port on which Privoxy will listen for client requests."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:770
msgid ""
"The compression level that is passed to the zlib library when compressing "
"buffered content."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:252
msgid ""
"The directory where all logging takes place (i.e. where the logfile is "
"located)."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:289
msgid "The directory where the other configuration files are located."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:377
msgid ""
"The filter files contain content modification rules that use regular "
"expressions."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:183
msgid "The hostname shown on the CGI pages."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:274
msgid "The log file to use. File name, relative to log directory."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:788
msgid "The order in which client headers are sorted before forwarding them."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:755
msgid ""
"The status code Privoxy returns for pages blocked with +handle-as-empty-"
"document."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:413
msgid ""
"The trust mechanism is an experimental feature for building white-lists and "
"should be used with care."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:238
msgid ""
"The value of this option only matters if the experimental trust mechanism "
"has been activated."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:800
msgid ""
"This option is only there for debugging purposes. It will drastically reduce "
"performance."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:574
msgid ""
"This option will be removed in future releases as it has been obsoleted by "
"the more general header taggers."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:85
msgid ""
"This tab controls the security-relevant aspects of Privoxy's configuration."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:618
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:633
msgid ""
"Through which SOCKS proxy (and optionally to which parent HTTP proxy) "
"specific requests should be routed."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:610
msgid "To which parent HTTP proxy specific requests should be routed."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:341
msgid "User customizations"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:166
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:543
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:677
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:700
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:724
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:743
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:776
msgid "Value is not a number"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:168
msgid "Value not between 0 and 300"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:778
msgid "Value not between 0 and 9"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:545
msgid "Value not between 1 and 4096"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:679
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:702
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:726
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:745
msgid "Value not greater 0 or empty"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:537
msgid "Value range 1 to 4096, no entry defaults to 4096"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:45
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:47
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:50
msgid "Version"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:43
msgid "Version Information"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:650
msgid "Whether intercepted requests should be treated as valid."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:572
msgid ""
"Whether or not Privoxy recognizes special HTTP headers to change toggle "
"state."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:762
msgid "Whether or not buffered content is compressed before delivery."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:710
msgid ""
"Whether or not outgoing connections that have been kept alive should be "
"shared between different incoming connections."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:687
msgid "Whether or not pipelined requests should be served."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:600
msgid "Whether or not proxy authentication through Privoxy should work."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:582
msgid "Whether or not the web-based actions file editor may be used."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:565
msgid "Whether or not the web-based toggle feature may be used."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:657
msgid "Whether requests to Privoxy's CGI pages can be blocked or redirected."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:664
msgid ""
"Whether the CGI interface should stay compatible with broken HTTP clients."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:798
msgid "Whether to run only one server thread."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:516
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:525
msgid "Who can access what."
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:49
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:87
msgid "installed"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:48
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
msgid "or higher"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:46
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
msgid "required"
msgstr ""

View File

@@ -1,601 +0,0 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2025-04-22 05:24+0000\n"
"Last-Translator: Abdul Muizz Bin Abdul Jalil <abmuizz@gmail.com>\n"
"Language-Team: Malay <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsprivoxy/ms/>\n"
"Language: ms\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 5.11.1-dev\n"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:236
msgid ""
"A URL to be displayed in the error page that users will see if access to an "
"untrusted page is denied."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:226
msgid ""
"A URL to documentation about the local Privoxy setup, configuration or "
"policies."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:325
msgid "A directory where Privoxy can create temporary files."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:84
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:87
msgid "Access Control"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:337
msgid "Actions that are applied to all sites and maybe overruled later on."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:308
msgid "An alternative directory where the templates are loaded from."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:206
msgid "An email address to reach the Privoxy administrator."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:695
msgid ""
"Assumed server-side keep-alive timeout (in seconds) if not specified by the "
"server."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:151
msgid "Boot delay"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:873
msgid "CGI user interface"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:861
msgid "Common Log Format"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:92
msgid ""
"Configure here the routing of HTTP requests through a chain of multiple "
"proxies. Note that parent proxies can severely decrease your privacy level. "
"Also specified here are SOCKS proxies."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:855
msgid "Debug GIF de-animation"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:837
msgid "Debug force feature"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:849
msgid "Debug redirects"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:843
msgid "Debug regular expression filters"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:152
msgid "Delay (in seconds) during system boot before Privoxy start"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:261
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:298
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:315
msgid "Directory does not exist!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:557
msgid "Disabled == Transparent Proxy Mode"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:66
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:71
msgid "Documentation"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:154
msgid "During delay ifup-events are not monitored !"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:599
msgid "Enable proxy authentication forwarding"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:135
msgid ""
"Enable/Disable autostart of Privoxy on system startup and interface events"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:555
msgid "Enable/Disable filtering when Privoxy starts."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:134
msgid "Enabled"
msgstr "Dibolehkan"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:602
msgid ""
"Enabling this option is NOT recommended if there is no parent proxy that "
"requires authentication!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:368
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:404
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:442
msgid "File '%s' not found inside Configuration Directory"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:919
#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_logview.htm:12
msgid "File not found or empty"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:75
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:80
msgid "Files and Directories"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:36
msgid "For help use link at the relevant option"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:91
msgid "Forwarding"
msgstr ""
#: applications/luci-app-privoxy/root/usr/share/rpcd/acl.d/luci-app-privoxy.json:3
msgid "Grant UCI access for luci-app-privoxy"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:589
msgid ""
"If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
"should not be able to bypass any blocks."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:67
msgid ""
"If you intend to operate Privoxy for more users than just yourself, it might "
"be a good idea to let them know how to reach you, what you block and why you "
"do that, your policies, etc."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:215
msgid "Invalid email address"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:416
msgid "It is NOT recommended for the casual user."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:194
msgid "Location of the Privoxy User Manual."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:108
msgid "Log File Viewer"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:899
msgid "Log all data read from the network"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:831
msgid "Log all data written to the network"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:905
msgid "Log the applying actions"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:807
msgid ""
"Log the destination for each request Privoxy let through. See also 'Debug "
"1024'."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:867
msgid ""
"Log the destination for requests Privoxy didn't let through, and the reason "
"why."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:104
msgid "Logging"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:339
msgid "Main actions file"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:461
msgid "Mandatory Input: No Data given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:259
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:296
msgid "Mandatory Input: No Directory given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:279
msgid "Mandatory Input: No File given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:479
msgid "Mandatory Input: No Port given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:345
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:381
msgid "Mandatory Input: No files given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:482
msgid "Mandatory Input: No valid IPv4 address or host given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:470
msgid "Mandatory Input: No valid IPv6 address given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:472
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:484
msgid "Mandatory Input: No valid Port given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:737
msgid "Maximum number of client connections that will be served."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:535
msgid "Maximum size (in KB) of the buffer for content filtering."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:97
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:100
msgid "Miscellaneous"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:51
msgid "NOT installed"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:254
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:291
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:310
msgid "No trailing '/', please."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:885
msgid "Non-fatal errors - *we highly recommended enabling this*"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:718
msgid ""
"Number of seconds after which a socket times out if no data is received."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:672
msgid ""
"Number of seconds after which an open connection will no longer be reused."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:327
msgid ""
"Only when using 'external filters', Privoxy has to create temporary files."
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:81
msgid "Please install current version !"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:917
msgid "Please press [Read] button"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:518
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:527
msgid "Please read Privoxy manual for details!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:92
msgid "Please update to the current version!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:24
msgid "Privoxy WEB proxy"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:76
msgid ""
"Privoxy can (and normally does) use a number of other files for additional "
"configuration, help and logging. This section of the configuration file "
"tells Privoxy where to find those other files."
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:32
msgid ""
"Privoxy is a non-caching web proxy with advanced filtering capabilities for "
"enhancing privacy, modifying web page data and HTTP headers, controlling "
"access, and removing ads and other obnoxious Internet junk."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:912
msgid "Read / Reread log file"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:819
msgid "Show I/O status"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:813
msgid "Show each connection status"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:825
msgid "Show header parsing"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:76
msgid "Software package '%s' is not installed."
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:85
msgid "Software package '%s' is outdated."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:125
#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_startstop.htm:10
msgid "Start"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:115
msgid "Start / Stop"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:116
msgid "Start/Stop Privoxy WEB Proxy"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:879
msgid "Startup banner and warnings."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:455
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:620
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:635
msgid "Syntax:"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:790
msgid "Syntax: Client header names delimited by spaces."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:612
msgid "Syntax: target_pattern http_parent[:port]"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:59
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:62
msgid "System"
msgstr "Sistem"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:335
msgid ""
"The actions file(s) to use. Multiple actionsfile lines are permitted, and "
"are in fact recommended!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:453
msgid ""
"The address and TCP port on which Privoxy will listen for client requests."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:770
msgid ""
"The compression level that is passed to the zlib library when compressing "
"buffered content."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:252
msgid ""
"The directory where all logging takes place (i.e. where the logfile is "
"located)."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:289
msgid "The directory where the other configuration files are located."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:377
msgid ""
"The filter files contain content modification rules that use regular "
"expressions."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:183
msgid "The hostname shown on the CGI pages."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:274
msgid "The log file to use. File name, relative to log directory."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:788
msgid "The order in which client headers are sorted before forwarding them."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:755
msgid ""
"The status code Privoxy returns for pages blocked with +handle-as-empty-"
"document."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:413
msgid ""
"The trust mechanism is an experimental feature for building white-lists and "
"should be used with care."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:238
msgid ""
"The value of this option only matters if the experimental trust mechanism "
"has been activated."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:800
msgid ""
"This option is only there for debugging purposes. It will drastically reduce "
"performance."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:574
msgid ""
"This option will be removed in future releases as it has been obsoleted by "
"the more general header taggers."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:85
msgid ""
"This tab controls the security-relevant aspects of Privoxy's configuration."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:618
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:633
msgid ""
"Through which SOCKS proxy (and optionally to which parent HTTP proxy) "
"specific requests should be routed."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:610
msgid "To which parent HTTP proxy specific requests should be routed."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:341
msgid "User customizations"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:166
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:543
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:677
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:700
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:724
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:743
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:776
msgid "Value is not a number"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:168
msgid "Value not between 0 and 300"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:778
msgid "Value not between 0 and 9"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:545
msgid "Value not between 1 and 4096"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:679
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:702
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:726
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:745
msgid "Value not greater 0 or empty"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:537
msgid "Value range 1 to 4096, no entry defaults to 4096"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:45
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:47
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:50
msgid "Version"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:43
msgid "Version Information"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:650
msgid "Whether intercepted requests should be treated as valid."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:572
msgid ""
"Whether or not Privoxy recognizes special HTTP headers to change toggle "
"state."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:762
msgid "Whether or not buffered content is compressed before delivery."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:710
msgid ""
"Whether or not outgoing connections that have been kept alive should be "
"shared between different incoming connections."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:687
msgid "Whether or not pipelined requests should be served."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:600
msgid "Whether or not proxy authentication through Privoxy should work."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:582
msgid "Whether or not the web-based actions file editor may be used."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:565
msgid "Whether or not the web-based toggle feature may be used."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:657
msgid "Whether requests to Privoxy's CGI pages can be blocked or redirected."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:664
msgid ""
"Whether the CGI interface should stay compatible with broken HTTP clients."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:798
msgid "Whether to run only one server thread."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:516
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:525
msgid "Who can access what."
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:49
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:87
msgid "installed"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:48
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
msgid "or higher"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:46
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
msgid "required"
msgstr ""

View File

@@ -1,601 +0,0 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2024-01-03 18:37+0000\n"
"Last-Translator: Allan Nordhøy <epost@anotheragency.no>\n"
"Language-Team: Norwegian Bokmål <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsprivoxy/nb_NO/>\n"
"Language: nb_NO\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.4-dev\n"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:236
msgid ""
"A URL to be displayed in the error page that users will see if access to an "
"untrusted page is denied."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:226
msgid ""
"A URL to documentation about the local Privoxy setup, configuration or "
"policies."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:325
msgid "A directory where Privoxy can create temporary files."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:84
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:87
msgid "Access Control"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:337
msgid "Actions that are applied to all sites and maybe overruled later on."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:308
msgid "An alternative directory where the templates are loaded from."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:206
msgid "An email address to reach the Privoxy administrator."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:695
msgid ""
"Assumed server-side keep-alive timeout (in seconds) if not specified by the "
"server."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:151
msgid "Boot delay"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:873
msgid "CGI user interface"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:861
msgid "Common Log Format"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:92
msgid ""
"Configure here the routing of HTTP requests through a chain of multiple "
"proxies. Note that parent proxies can severely decrease your privacy level. "
"Also specified here are SOCKS proxies."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:855
msgid "Debug GIF de-animation"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:837
msgid "Debug force feature"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:849
msgid "Debug redirects"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:843
msgid "Debug regular expression filters"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:152
msgid "Delay (in seconds) during system boot before Privoxy start"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:261
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:298
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:315
msgid "Directory does not exist!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:557
msgid "Disabled == Transparent Proxy Mode"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:66
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:71
msgid "Documentation"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:154
msgid "During delay ifup-events are not monitored !"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:599
msgid "Enable proxy authentication forwarding"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:135
msgid ""
"Enable/Disable autostart of Privoxy on system startup and interface events"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:555
msgid "Enable/Disable filtering when Privoxy starts."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:134
msgid "Enabled"
msgstr "Påskrudd"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:602
msgid ""
"Enabling this option is NOT recommended if there is no parent proxy that "
"requires authentication!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:368
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:404
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:442
msgid "File '%s' not found inside Configuration Directory"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:919
#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_logview.htm:12
msgid "File not found or empty"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:75
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:80
msgid "Files and Directories"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:36
msgid "For help use link at the relevant option"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:91
msgid "Forwarding"
msgstr ""
#: applications/luci-app-privoxy/root/usr/share/rpcd/acl.d/luci-app-privoxy.json:3
msgid "Grant UCI access for luci-app-privoxy"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:589
msgid ""
"If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
"should not be able to bypass any blocks."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:67
msgid ""
"If you intend to operate Privoxy for more users than just yourself, it might "
"be a good idea to let them know how to reach you, what you block and why you "
"do that, your policies, etc."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:215
msgid "Invalid email address"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:416
msgid "It is NOT recommended for the casual user."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:194
msgid "Location of the Privoxy User Manual."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:108
msgid "Log File Viewer"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:899
msgid "Log all data read from the network"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:831
msgid "Log all data written to the network"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:905
msgid "Log the applying actions"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:807
msgid ""
"Log the destination for each request Privoxy let through. See also 'Debug "
"1024'."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:867
msgid ""
"Log the destination for requests Privoxy didn't let through, and the reason "
"why."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:104
msgid "Logging"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:339
msgid "Main actions file"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:461
msgid "Mandatory Input: No Data given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:259
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:296
msgid "Mandatory Input: No Directory given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:279
msgid "Mandatory Input: No File given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:479
msgid "Mandatory Input: No Port given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:345
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:381
msgid "Mandatory Input: No files given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:482
msgid "Mandatory Input: No valid IPv4 address or host given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:470
msgid "Mandatory Input: No valid IPv6 address given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:472
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:484
msgid "Mandatory Input: No valid Port given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:737
msgid "Maximum number of client connections that will be served."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:535
msgid "Maximum size (in KB) of the buffer for content filtering."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:97
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:100
msgid "Miscellaneous"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:51
msgid "NOT installed"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:254
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:291
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:310
msgid "No trailing '/', please."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:885
msgid "Non-fatal errors - *we highly recommended enabling this*"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:718
msgid ""
"Number of seconds after which a socket times out if no data is received."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:672
msgid ""
"Number of seconds after which an open connection will no longer be reused."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:327
msgid ""
"Only when using 'external filters', Privoxy has to create temporary files."
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:81
msgid "Please install current version !"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:917
msgid "Please press [Read] button"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:518
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:527
msgid "Please read Privoxy manual for details!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:92
msgid "Please update to the current version!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:24
msgid "Privoxy WEB proxy"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:76
msgid ""
"Privoxy can (and normally does) use a number of other files for additional "
"configuration, help and logging. This section of the configuration file "
"tells Privoxy where to find those other files."
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:32
msgid ""
"Privoxy is a non-caching web proxy with advanced filtering capabilities for "
"enhancing privacy, modifying web page data and HTTP headers, controlling "
"access, and removing ads and other obnoxious Internet junk."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:912
msgid "Read / Reread log file"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:819
msgid "Show I/O status"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:813
msgid "Show each connection status"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:825
msgid "Show header parsing"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:76
msgid "Software package '%s' is not installed."
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:85
msgid "Software package '%s' is outdated."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:125
#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_startstop.htm:10
msgid "Start"
msgstr "Start"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:115
msgid "Start / Stop"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:116
msgid "Start/Stop Privoxy WEB Proxy"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:879
msgid "Startup banner and warnings."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:455
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:620
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:635
msgid "Syntax:"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:790
msgid "Syntax: Client header names delimited by spaces."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:612
msgid "Syntax: target_pattern http_parent[:port]"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:59
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:62
msgid "System"
msgstr "System"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:335
msgid ""
"The actions file(s) to use. Multiple actionsfile lines are permitted, and "
"are in fact recommended!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:453
msgid ""
"The address and TCP port on which Privoxy will listen for client requests."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:770
msgid ""
"The compression level that is passed to the zlib library when compressing "
"buffered content."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:252
msgid ""
"The directory where all logging takes place (i.e. where the logfile is "
"located)."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:289
msgid "The directory where the other configuration files are located."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:377
msgid ""
"The filter files contain content modification rules that use regular "
"expressions."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:183
msgid "The hostname shown on the CGI pages."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:274
msgid "The log file to use. File name, relative to log directory."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:788
msgid "The order in which client headers are sorted before forwarding them."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:755
msgid ""
"The status code Privoxy returns for pages blocked with +handle-as-empty-"
"document."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:413
msgid ""
"The trust mechanism is an experimental feature for building white-lists and "
"should be used with care."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:238
msgid ""
"The value of this option only matters if the experimental trust mechanism "
"has been activated."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:800
msgid ""
"This option is only there for debugging purposes. It will drastically reduce "
"performance."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:574
msgid ""
"This option will be removed in future releases as it has been obsoleted by "
"the more general header taggers."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:85
msgid ""
"This tab controls the security-relevant aspects of Privoxy's configuration."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:618
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:633
msgid ""
"Through which SOCKS proxy (and optionally to which parent HTTP proxy) "
"specific requests should be routed."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:610
msgid "To which parent HTTP proxy specific requests should be routed."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:341
msgid "User customizations"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:166
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:543
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:677
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:700
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:724
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:743
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:776
msgid "Value is not a number"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:168
msgid "Value not between 0 and 300"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:778
msgid "Value not between 0 and 9"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:545
msgid "Value not between 1 and 4096"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:679
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:702
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:726
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:745
msgid "Value not greater 0 or empty"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:537
msgid "Value range 1 to 4096, no entry defaults to 4096"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:45
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:47
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:50
msgid "Version"
msgstr "Versjon"
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:43
msgid "Version Information"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:650
msgid "Whether intercepted requests should be treated as valid."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:572
msgid ""
"Whether or not Privoxy recognizes special HTTP headers to change toggle "
"state."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:762
msgid "Whether or not buffered content is compressed before delivery."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:710
msgid ""
"Whether or not outgoing connections that have been kept alive should be "
"shared between different incoming connections."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:687
msgid "Whether or not pipelined requests should be served."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:600
msgid "Whether or not proxy authentication through Privoxy should work."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:582
msgid "Whether or not the web-based actions file editor may be used."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:565
msgid "Whether or not the web-based toggle feature may be used."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:657
msgid "Whether requests to Privoxy's CGI pages can be blocked or redirected."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:664
msgid ""
"Whether the CGI interface should stay compatible with broken HTTP clients."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:798
msgid "Whether to run only one server thread."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:516
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:525
msgid "Who can access what."
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:49
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:87
msgid "installed"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:48
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
msgid "or higher"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:46
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
msgid "required"
msgstr ""

View File

@@ -12,149 +12,263 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.10-dev\n" "X-Generator: Weblate 5.10-dev\n"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:236 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:90
msgid "" msgid ""
"A URL to be displayed in the error page that users will see if access to an " "A directory where Privoxy can create temporary files.<br /><strong>Only when "
"untrusted page is denied." "using 'external filters', Privoxy has to create temporary files.</strong>"
msgstr ""
"Een URL die getoond wordt op de error pagina die gebruikers zullen zien als "
"toegang tot een onvertrouwde pagina is geblokkeerd."
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:226
msgid ""
"A URL to documentation about the local Privoxy setup, configuration or "
"policies."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:325 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:209
msgid "A directory where Privoxy can create temporary files." msgid "Accept intercepted requests"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:84 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:118
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:87
msgid "Access Control" msgid "Access Control"
msgstr "Toegangsbeheer" msgstr "Toegangsbeheer"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:337 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:96
msgid "Action Files"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:98
msgid "Actions that are applied to all sites and maybe overruled later on." msgid "Actions that are applied to all sites and maybe overruled later on."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:308 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:42
msgid "An alternative directory where the templates are loaded from." msgid "Admin Email"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:206 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:213
msgid "An email address to reach the Privoxy administrator." msgid "Allow CGI request crunching"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:695 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:84
msgid ""
"An alternative directory where the templates are loaded from.<br />No "
"trailing \"/\", please."
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:230
msgid "" msgid ""
"Assumed server-side keep-alive timeout (in seconds) if not specified by the " "Assumed server-side keep-alive timeout (in seconds) if not specified by the "
"server." "server."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:151 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:22
msgid "Boot delay" msgid "Boot delay"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:873 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:141
msgid "Buffer Limit"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:318
msgid "CGI user interface" msgid "CGI user interface"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:861 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:260
msgid "Client header order"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:310
msgid "Common Log Format" msgid "Common Log Format"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:92 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:255
msgid "" msgid "Compression level"
"Configure here the routing of HTTP requests through a chain of multiple "
"proxies. Note that parent proxies can severely decrease your privacy level. "
"Also specified here are SOCKS proxies."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:855 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:77
msgid "Configuration Directory"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:13
msgid "Configure the Privoxy proxy daemon settings."
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:233
msgid "Connection sharing"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:266
msgid "Debug"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:273
msgid "Debug 1"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:313
msgid "Debug 1024"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:301
msgid "Debug 128"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:289
msgid "Debug 16"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:277
msgid "Debug 2"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:317
msgid "Debug 2048"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:305
msgid "Debug 256"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:293
msgid "Debug 32"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:331
msgid "Debug 32768"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:281
msgid "Debug 4"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:321
msgid "Debug 4096"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:309
msgid "Debug 512"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:297
msgid "Debug 64"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:335
msgid "Debug 65536"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:285
msgid "Debug 8"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:325
msgid "Debug 8192"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:306
msgid "Debug GIF de-animation" msgid "Debug GIF de-animation"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:837 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:294
msgid "Debug force feature" msgid "Debug force feature"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:849 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:302
msgid "Debug redirects" msgid "Debug redirects"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:843 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:298
msgid "Debug regular expression filters" msgid "Debug regular expression filters"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:152 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:229
msgid "Delay (in seconds) during system boot before Privoxy start" msgid "Default server timeout"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:261 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:23
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:298 msgid "Delay (in seconds) during system boot before Privoxy starts."
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:315
msgid "Directory does not exist!"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:557 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:135
msgid "Deny access"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:151
msgid "Disabled == Transparent Proxy Mode" msgid "Disabled == Transparent Proxy Mode"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:66 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:31
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:71
msgid "Documentation" msgid "Documentation"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:154 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:43
msgid "During delay ifup-events are not monitored !" msgid "Email address for the Privoxy administrator."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:599 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:167
msgid "Enable action file editor"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:251
msgid "Enable compression"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:181
msgid "Enable proxy authentication forwarding" msgid "Enable proxy authentication forwarding"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:135 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:156
msgid "" msgid "Enable remote toggle"
"Enable/Disable autostart of Privoxy on system startup and interface events"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:555 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:161
msgid "Enable remote toggle via HTTP"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:20
msgid "Enable/Disable autostart of Privoxy"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:150
msgid "Enable/Disable filtering when Privoxy starts." msgid "Enable/Disable filtering when Privoxy starts."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:134 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:20
msgid "Enabled" msgid "Enabled"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:602 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:183
msgid "" msgid ""
"Enabling this option is NOT recommended if there is no parent proxy that " "Enabling this option is NOT recommended if there is no parent proxy that "
"requires authentication!" "requires authentication!"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:368 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:172
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:404 msgid "Enforce page blocking"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:442
msgid "File '%s' not found inside Configuration Directory"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:919 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:55
#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_logview.htm:12
msgid "File not found or empty"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:75
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:80
msgid "Files and Directories" msgid "Files and Directories"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:36 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:104
msgid "For help use link at the relevant option" msgid "Filter files"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:91 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:185
msgid "Forward HTTP"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:189
msgid "Forward SOCKS 4"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:193
msgid "Forward SOCKS 4A"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:197
msgid "Forward SOCKS 5"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:201
msgid "Forward SOCKS 5t"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:178
msgid "Forwarding" msgid "Forwarding"
msgstr "" msgstr ""
@@ -162,444 +276,390 @@ msgstr ""
msgid "Grant UCI access for luci-app-privoxy" msgid "Grant UCI access for luci-app-privoxy"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:589 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:247
msgid "Handle as empty doc returns ok"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:35
msgid "Hostname"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:173
msgid "" msgid ""
"If enabled, Privoxy hides the 'go there anyway' link. The user obviously " "If enabled, Privoxy hides the \"go there anyway\" link. The user obviously "
"should not be able to bypass any blocks." "should not be able to bypass any blocks."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:67 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:31
msgid "" msgid ""
"If you intend to operate Privoxy for more users than just yourself, it might " "If you intend to operate Privoxy for more users than just yourself, it might "
"be a good idea to let them know how to reach you, what you block and why you " "be a good idea to let them know how to reach you, what you block and why you "
"do that, your policies, etc." "do that, your policies, etc."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:215 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:112
msgid "Invalid email address"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:416
msgid "It is NOT recommended for the casual user." msgid "It is NOT recommended for the casual user."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:194 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:221
msgid "Keep-alive timeout"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:121
msgid "Listen addresses"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:40
msgid "Location of the Privoxy User Manual." msgid "Location of the Privoxy User Manual."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:108 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:60
msgid "Log File Viewer" msgid "Log Directory"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:899 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:66
msgid "Log File"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:332
msgid "Log all data read from the network" msgid "Log all data read from the network"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:831 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:290
msgid "Log all data written to the network" msgid "Log all data written to the network"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:905 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:336
msgid "Log the applying actions" msgid "Log the applying actions"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:807 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:274
msgid "" msgid ""
"Log the destination for each request Privoxy let through. See also 'Debug " "Log the destination for each request Privoxy let through. See also 'Debug "
"1024'." "1024'."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:867 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:314
msgid "" msgid ""
"Log the destination for requests Privoxy didn't let through, and the reason " "Log the destination for requests Privoxy didn't let through, and the reason "
"why." "why."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:104 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:99
msgid "Logging"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:339
msgid "Main actions file" msgid "Main actions file"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:461 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:72
msgid "Mandatory Input: No Data given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:259
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:296
msgid "Mandatory Input: No Directory given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:279
msgid "Mandatory Input: No File given!" msgid "Mandatory Input: No File given!"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:479 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:242
msgid "Mandatory Input: No Port given!" msgid "Max. client connections"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:345 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:244
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:381
msgid "Mandatory Input: No files given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:482
msgid "Mandatory Input: No valid IPv4 address or host given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:470
msgid "Mandatory Input: No valid IPv6 address given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:472
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:484
msgid "Mandatory Input: No valid Port given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:737
msgid "Maximum number of client connections that will be served." msgid "Maximum number of client connections that will be served."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:535 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:142
msgid "Maximum size (in KB) of the buffer for content filtering." msgid "Maximum size (in KB) of the buffer for content filtering."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:97 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:207
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:100 msgid "Misc"
msgid "Miscellaneous"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:51 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:326
msgid "NOT installed"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:254
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:291
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:310
msgid "No trailing '/', please."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:885
msgid "Non-fatal errors - *we highly recommended enabling this*" msgid "Non-fatal errors - *we highly recommended enabling this*"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:718 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:239
msgid "" msgid ""
"Number of seconds after which a socket times out if no data is received." "Number of seconds after which a socket times out if no data is received."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:672 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:222
msgid "" msgid ""
"Number of seconds after which an open connection will no longer be reused." "Number of seconds after which an open connection will no longer be reused."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:327 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:129
msgid "" msgid "Permit access"
"Only when using 'external filters', Privoxy has to create temporary files."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:81 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:130
msgid "Please install current version !" #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:136
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:917
msgid "Please press [Read] button"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:518
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:527
msgid "Please read Privoxy manual for details!" msgid "Please read Privoxy manual for details!"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:92 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:12
msgid "Please update to the current version!" msgid "Privoxy"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:24 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:15
msgid "Privoxy Settings"
msgstr ""
#: applications/luci-app-privoxy/root/usr/share/luci/menu.d/luci-app-privoxy.json:3
msgid "Privoxy WEB proxy" msgid "Privoxy WEB proxy"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:76 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:55
msgid "" msgid ""
"Privoxy can (and normally does) use a number of other files for additional " "Privoxy can (and normally does) use a number of other files for additional "
"configuration, help and logging. This section of the configuration file " "configuration, help and logging. This section of the configuration file "
"tells Privoxy where to find those other files." "tells Privoxy where to find those other files."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:32 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:47
msgid "" msgid "Proxy Info URL"
"Privoxy is a non-caching web proxy with advanced filtering capabilities for "
"enhancing privacy, modifying web page data and HTTP headers, controlling "
"access, and removing ads and other obnoxious Internet junk."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:912 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:282
msgid "Read / Reread log file"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:819
msgid "Show I/O status" msgid "Show I/O status"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:813 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:278
msgid "Show each connection status" msgid "Show each connection status"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:825 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:286
msgid "Show header parsing" msgid "Show header parsing"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:76 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:268
msgid "Software package '%s' is not installed." msgid "Single Threaded"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:85 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:237
msgid "Software package '%s' is outdated." msgid "Socket timeout"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:125 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:217
#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_startstop.htm:10 msgid "Split large forms"
msgid "Start"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:115 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:322
msgid "Start / Stop"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:116
msgid "Start/Stop Privoxy WEB Proxy"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:879
msgid "Startup banner and warnings." msgid "Startup banner and warnings."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:455 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:123
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:620
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:635
msgid "Syntax:" msgid "Syntax:"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:790 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:262
msgid "Syntax: Client header names delimited by spaces." msgid "Syntax: Client header names delimited by spaces."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:612 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:199
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:203
msgid ""
"Syntax: target_pattern [user:pass@]socks_proxy[:port] http_parent[:port]"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:187
msgid "Syntax: target_pattern http_parent[:port]" msgid "Syntax: target_pattern http_parent[:port]"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:59 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:191
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:62 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:195
msgid "Syntax: target_pattern socks_proxy[:port] http_parent[:port]"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:19
msgid "System" msgid "System"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:335 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:83
msgid "Template Directory"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:89
msgid "Temporary Directory"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:97
msgid "" msgid ""
"The actions file(s) to use. Multiple actionsfile lines are permitted, and " "The actions file(s) to use. Multiple actionsfile lines are permitted, and "
"are in fact recommended!" "are in fact recommended!"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:453 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:122
msgid "" msgid ""
"The address and TCP port on which Privoxy will listen for client requests." "The address and TCP port on which Privoxy will listen for client requests."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:770 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:257
msgid "" msgid ""
"The compression level that is passed to the zlib library when compressing " "The compression level that is passed to the zlib library when compressing "
"buffered content." "buffered content."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:252 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:61
msgid "" msgid ""
"The directory where all logging takes place (i.e. where the logfile is " "The directory where all logging takes place (i.e. where the logfile is "
"located)." "located).<br />No trailing \"/\", please."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:289 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:78
msgid "The directory where the other configuration files are located." msgid "The directory where the other configuration files are located."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:377 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:105
msgid "" msgid ""
"The filter files contain content modification rules that use regular " "The filter files contain content modification rules that use regular "
"expressions." "expressions."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:183 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:36
msgid "The hostname shown on the CGI pages." msgid "The hostname shown on the CGI pages."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:274 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:67
msgid "The log file to use. File name, relative to log directory." msgid "The log file to use. File name, relative to log directory."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:788 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:261
msgid "The order in which client headers are sorted before forwarding them." msgid "The order in which client headers are sorted before forwarding them."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:755 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:248
msgid "" msgid ""
"The status code Privoxy returns for pages blocked with +handle-as-empty-" "The status code Privoxy returns for pages blocked with +handle-as-empty-"
"document." "document."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:413 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:111
msgid "" msgid ""
"The trust mechanism is an experimental feature for building white-lists and " "The trust mechanism is an experimental feature for building white-lists and "
"should be used with care." "should be used with care."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:238 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:270
msgid ""
"The value of this option only matters if the experimental trust mechanism "
"has been activated."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:800
msgid "" msgid ""
"This option is only there for debugging purposes. It will drastically reduce " "This option is only there for debugging purposes. It will drastically reduce "
"performance." "performance."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:574 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:163
msgid "" msgid ""
"This option will be removed in future releases as it has been obsoleted by " "This option will be removed in future releases as it has been obsoleted by "
"the more general header taggers." "the more general header taggers."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:85 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:118
msgid "" msgid ""
"This tab controls the security-relevant aspects of Privoxy's configuration." "This tab controls the security-relevant aspects of Privoxy's configuration."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:618 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:190
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:633 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:194
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:198
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:202
msgid "" msgid ""
"Through which SOCKS proxy (and optionally to which parent HTTP proxy) " "Through which SOCKS proxy (and optionally to which parent HTTP proxy) "
"specific requests should be routed." "specific requests should be routed."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:610 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:186
msgid "To which parent HTTP proxy specific requests should be routed." msgid "To which parent HTTP proxy specific requests should be routed."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:341 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:149
msgid "Toggle Status"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:225
msgid "Tolerate pipelining"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:50
msgid "Trust Info URL"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:110
msgid "Trust file"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:51
msgid ""
"URL shown if access to an untrusted page is denied. Only applies if trust "
"mechanism is enabled."
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:48
msgid "URL to documentation about the local Privoxy setup."
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:39
msgid "User Manual"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:100
msgid "User customizations" msgid "User customizations"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:166 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:143
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:543
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:677
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:700
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:724
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:743
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:776
msgid "Value is not a number"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:168
msgid "Value not between 0 and 300"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:778
msgid "Value not between 0 and 9"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:545
msgid "Value not between 1 and 4096"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:679
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:702
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:726
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:745
msgid "Value not greater 0 or empty"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:537
msgid "Value range 1 to 4096, no entry defaults to 4096" msgid "Value range 1 to 4096, no entry defaults to 4096"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:45 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:210
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:47
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:50
msgid "Version"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:43
msgid "Version Information"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:650
msgid "Whether intercepted requests should be treated as valid." msgid "Whether intercepted requests should be treated as valid."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:572 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:162
msgid "" msgid ""
"Whether or not Privoxy recognizes special HTTP headers to change toggle " "Whether or not Privoxy recognizes special HTTP headers to change toggle "
"state." "state."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:762 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:252
msgid "Whether or not buffered content is compressed before delivery." msgid "Whether or not buffered content is compressed before delivery."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:710 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:234
msgid "" msgid ""
"Whether or not outgoing connections that have been kept alive should be " "Whether or not outgoing connections that have been kept alive should be "
"shared between different incoming connections." "shared between different incoming connections."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:687 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:226
msgid "Whether or not pipelined requests should be served." msgid "Whether or not pipelined requests should be served."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:600 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:182
msgid "Whether or not proxy authentication through Privoxy should work." msgid "Whether or not proxy authentication through Privoxy should work."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:582 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:168
msgid "Whether or not the web-based actions file editor may be used." msgid "Whether or not the web-based actions file editor may be used."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:565 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:157
msgid "Whether or not the web-based toggle feature may be used." msgid "Whether or not the web-based toggle feature may be used."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:657 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:214
msgid "Whether requests to Privoxy's CGI pages can be blocked or redirected." msgid "Whether requests to Privoxy's CGI pages can be blocked or redirected."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:664 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:218
msgid "" msgid ""
"Whether the CGI interface should stay compatible with broken HTTP clients." "Whether the CGI interface should stay compatible with broken HTTP clients."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:798 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:269
msgid "Whether to run only one server thread." msgid "Whether to run only one server thread."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:516 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:130
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:525 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:136
msgid "Who can access what." msgid "Who can access what."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:49 #~ msgid ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:87 #~ "A URL to be displayed in the error page that users will see if access to "
msgid "installed" #~ "an untrusted page is denied."
msgstr "" #~ msgstr ""
#~ "Een URL die getoond wordt op de error pagina die gebruikers zullen zien "
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:48 #~ "als toegang tot een onvertrouwde pagina is geblokkeerd."
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
msgid "or higher"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:46
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
msgid "required"
msgstr ""

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -1,601 +0,0 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2023-07-09 09:41+0000\n"
"Last-Translator: MaycoH <hudec.marian@hotmail.com>\n"
"Language-Team: Slovak <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsprivoxy/sk/>\n"
"Language: sk\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Generator: Weblate 5.0-dev\n"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:236
msgid ""
"A URL to be displayed in the error page that users will see if access to an "
"untrusted page is denied."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:226
msgid ""
"A URL to documentation about the local Privoxy setup, configuration or "
"policies."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:325
msgid "A directory where Privoxy can create temporary files."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:84
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:87
msgid "Access Control"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:337
msgid "Actions that are applied to all sites and maybe overruled later on."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:308
msgid "An alternative directory where the templates are loaded from."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:206
msgid "An email address to reach the Privoxy administrator."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:695
msgid ""
"Assumed server-side keep-alive timeout (in seconds) if not specified by the "
"server."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:151
msgid "Boot delay"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:873
msgid "CGI user interface"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:861
msgid "Common Log Format"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:92
msgid ""
"Configure here the routing of HTTP requests through a chain of multiple "
"proxies. Note that parent proxies can severely decrease your privacy level. "
"Also specified here are SOCKS proxies."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:855
msgid "Debug GIF de-animation"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:837
msgid "Debug force feature"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:849
msgid "Debug redirects"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:843
msgid "Debug regular expression filters"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:152
msgid "Delay (in seconds) during system boot before Privoxy start"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:261
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:298
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:315
msgid "Directory does not exist!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:557
msgid "Disabled == Transparent Proxy Mode"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:66
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:71
msgid "Documentation"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:154
msgid "During delay ifup-events are not monitored !"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:599
msgid "Enable proxy authentication forwarding"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:135
msgid ""
"Enable/Disable autostart of Privoxy on system startup and interface events"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:555
msgid "Enable/Disable filtering when Privoxy starts."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:134
msgid "Enabled"
msgstr "Zapnuté"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:602
msgid ""
"Enabling this option is NOT recommended if there is no parent proxy that "
"requires authentication!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:368
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:404
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:442
msgid "File '%s' not found inside Configuration Directory"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:919
#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_logview.htm:12
msgid "File not found or empty"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:75
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:80
msgid "Files and Directories"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:36
msgid "For help use link at the relevant option"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:91
msgid "Forwarding"
msgstr ""
#: applications/luci-app-privoxy/root/usr/share/rpcd/acl.d/luci-app-privoxy.json:3
msgid "Grant UCI access for luci-app-privoxy"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:589
msgid ""
"If enabled, Privoxy hides the 'go there anyway' link. The user obviously "
"should not be able to bypass any blocks."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:67
msgid ""
"If you intend to operate Privoxy for more users than just yourself, it might "
"be a good idea to let them know how to reach you, what you block and why you "
"do that, your policies, etc."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:215
msgid "Invalid email address"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:416
msgid "It is NOT recommended for the casual user."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:194
msgid "Location of the Privoxy User Manual."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:108
msgid "Log File Viewer"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:899
msgid "Log all data read from the network"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:831
msgid "Log all data written to the network"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:905
msgid "Log the applying actions"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:807
msgid ""
"Log the destination for each request Privoxy let through. See also 'Debug "
"1024'."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:867
msgid ""
"Log the destination for requests Privoxy didn't let through, and the reason "
"why."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:104
msgid "Logging"
msgstr "Zaznamenávanie"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:339
msgid "Main actions file"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:461
msgid "Mandatory Input: No Data given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:259
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:296
msgid "Mandatory Input: No Directory given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:279
msgid "Mandatory Input: No File given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:479
msgid "Mandatory Input: No Port given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:345
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:381
msgid "Mandatory Input: No files given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:482
msgid "Mandatory Input: No valid IPv4 address or host given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:470
msgid "Mandatory Input: No valid IPv6 address given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:472
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:484
msgid "Mandatory Input: No valid Port given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:737
msgid "Maximum number of client connections that will be served."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:535
msgid "Maximum size (in KB) of the buffer for content filtering."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:97
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:100
msgid "Miscellaneous"
msgstr "Ostatné"
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:51
msgid "NOT installed"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:254
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:291
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:310
msgid "No trailing '/', please."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:885
msgid "Non-fatal errors - *we highly recommended enabling this*"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:718
msgid ""
"Number of seconds after which a socket times out if no data is received."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:672
msgid ""
"Number of seconds after which an open connection will no longer be reused."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:327
msgid ""
"Only when using 'external filters', Privoxy has to create temporary files."
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:81
msgid "Please install current version !"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:917
msgid "Please press [Read] button"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:518
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:527
msgid "Please read Privoxy manual for details!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:92
msgid "Please update to the current version!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:24
msgid "Privoxy WEB proxy"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:76
msgid ""
"Privoxy can (and normally does) use a number of other files for additional "
"configuration, help and logging. This section of the configuration file "
"tells Privoxy where to find those other files."
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:32
msgid ""
"Privoxy is a non-caching web proxy with advanced filtering capabilities for "
"enhancing privacy, modifying web page data and HTTP headers, controlling "
"access, and removing ads and other obnoxious Internet junk."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:912
msgid "Read / Reread log file"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:819
msgid "Show I/O status"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:813
msgid "Show each connection status"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:825
msgid "Show header parsing"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:76
msgid "Software package '%s' is not installed."
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:85
msgid "Software package '%s' is outdated."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:125
#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_startstop.htm:10
msgid "Start"
msgstr "Štart"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:115
msgid "Start / Stop"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:116
msgid "Start/Stop Privoxy WEB Proxy"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:879
msgid "Startup banner and warnings."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:455
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:620
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:635
msgid "Syntax:"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:790
msgid "Syntax: Client header names delimited by spaces."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:612
msgid "Syntax: target_pattern http_parent[:port]"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:59
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:62
msgid "System"
msgstr "Systém"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:335
msgid ""
"The actions file(s) to use. Multiple actionsfile lines are permitted, and "
"are in fact recommended!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:453
msgid ""
"The address and TCP port on which Privoxy will listen for client requests."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:770
msgid ""
"The compression level that is passed to the zlib library when compressing "
"buffered content."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:252
msgid ""
"The directory where all logging takes place (i.e. where the logfile is "
"located)."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:289
msgid "The directory where the other configuration files are located."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:377
msgid ""
"The filter files contain content modification rules that use regular "
"expressions."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:183
msgid "The hostname shown on the CGI pages."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:274
msgid "The log file to use. File name, relative to log directory."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:788
msgid "The order in which client headers are sorted before forwarding them."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:755
msgid ""
"The status code Privoxy returns for pages blocked with +handle-as-empty-"
"document."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:413
msgid ""
"The trust mechanism is an experimental feature for building white-lists and "
"should be used with care."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:238
msgid ""
"The value of this option only matters if the experimental trust mechanism "
"has been activated."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:800
msgid ""
"This option is only there for debugging purposes. It will drastically reduce "
"performance."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:574
msgid ""
"This option will be removed in future releases as it has been obsoleted by "
"the more general header taggers."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:85
msgid ""
"This tab controls the security-relevant aspects of Privoxy's configuration."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:618
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:633
msgid ""
"Through which SOCKS proxy (and optionally to which parent HTTP proxy) "
"specific requests should be routed."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:610
msgid "To which parent HTTP proxy specific requests should be routed."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:341
msgid "User customizations"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:166
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:543
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:677
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:700
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:724
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:743
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:776
msgid "Value is not a number"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:168
msgid "Value not between 0 and 300"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:778
msgid "Value not between 0 and 9"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:545
msgid "Value not between 1 and 4096"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:679
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:702
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:726
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:745
msgid "Value not greater 0 or empty"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:537
msgid "Value range 1 to 4096, no entry defaults to 4096"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:45
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:47
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:50
msgid "Version"
msgstr "Verzia"
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:43
msgid "Version Information"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:650
msgid "Whether intercepted requests should be treated as valid."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:572
msgid ""
"Whether or not Privoxy recognizes special HTTP headers to change toggle "
"state."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:762
msgid "Whether or not buffered content is compressed before delivery."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:710
msgid ""
"Whether or not outgoing connections that have been kept alive should be "
"shared between different incoming connections."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:687
msgid "Whether or not pipelined requests should be served."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:600
msgid "Whether or not proxy authentication through Privoxy should work."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:582
msgid "Whether or not the web-based actions file editor may be used."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:565
msgid "Whether or not the web-based toggle feature may be used."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:657
msgid "Whether requests to Privoxy's CGI pages can be blocked or redirected."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:664
msgid ""
"Whether the CGI interface should stay compatible with broken HTTP clients."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:798
msgid "Whether to run only one server thread."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:516
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:525
msgid "Who can access what."
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:49
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:87
msgid "installed"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:48
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
msgid "or higher"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:46
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
msgid "required"
msgstr ""

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -1,147 +1,263 @@
msgid "" msgid ""
msgstr "Content-Type: text/plain; charset=UTF-8" msgstr "Content-Type: text/plain; charset=UTF-8"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:236 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:90
msgid "" msgid ""
"A URL to be displayed in the error page that users will see if access to an " "A directory where Privoxy can create temporary files.<br /><strong>Only when "
"untrusted page is denied." "using 'external filters', Privoxy has to create temporary files.</strong>"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:226 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:209
msgid "" msgid "Accept intercepted requests"
"A URL to documentation about the local Privoxy setup, configuration or "
"policies."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:325 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:118
msgid "A directory where Privoxy can create temporary files."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:84
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:87
msgid "Access Control" msgid "Access Control"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:337 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:96
msgid "Action Files"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:98
msgid "Actions that are applied to all sites and maybe overruled later on." msgid "Actions that are applied to all sites and maybe overruled later on."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:308 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:42
msgid "An alternative directory where the templates are loaded from." msgid "Admin Email"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:206 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:213
msgid "An email address to reach the Privoxy administrator." msgid "Allow CGI request crunching"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:695 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:84
msgid ""
"An alternative directory where the templates are loaded from.<br />No "
"trailing \"/\", please."
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:230
msgid "" msgid ""
"Assumed server-side keep-alive timeout (in seconds) if not specified by the " "Assumed server-side keep-alive timeout (in seconds) if not specified by the "
"server." "server."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:151 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:22
msgid "Boot delay" msgid "Boot delay"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:873 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:141
msgid "Buffer Limit"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:318
msgid "CGI user interface" msgid "CGI user interface"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:861 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:260
msgid "Client header order"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:310
msgid "Common Log Format" msgid "Common Log Format"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:92 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:255
msgid "" msgid "Compression level"
"Configure here the routing of HTTP requests through a chain of multiple "
"proxies. Note that parent proxies can severely decrease your privacy level. "
"Also specified here are SOCKS proxies."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:855 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:77
msgid "Configuration Directory"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:13
msgid "Configure the Privoxy proxy daemon settings."
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:233
msgid "Connection sharing"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:266
msgid "Debug"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:273
msgid "Debug 1"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:313
msgid "Debug 1024"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:301
msgid "Debug 128"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:289
msgid "Debug 16"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:277
msgid "Debug 2"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:317
msgid "Debug 2048"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:305
msgid "Debug 256"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:293
msgid "Debug 32"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:331
msgid "Debug 32768"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:281
msgid "Debug 4"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:321
msgid "Debug 4096"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:309
msgid "Debug 512"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:297
msgid "Debug 64"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:335
msgid "Debug 65536"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:285
msgid "Debug 8"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:325
msgid "Debug 8192"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:306
msgid "Debug GIF de-animation" msgid "Debug GIF de-animation"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:837 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:294
msgid "Debug force feature" msgid "Debug force feature"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:849 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:302
msgid "Debug redirects" msgid "Debug redirects"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:843 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:298
msgid "Debug regular expression filters" msgid "Debug regular expression filters"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:152 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:229
msgid "Delay (in seconds) during system boot before Privoxy start" msgid "Default server timeout"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:261 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:23
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:298 msgid "Delay (in seconds) during system boot before Privoxy starts."
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:315
msgid "Directory does not exist!"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:557 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:135
msgid "Deny access"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:151
msgid "Disabled == Transparent Proxy Mode" msgid "Disabled == Transparent Proxy Mode"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:66 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:31
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:71
msgid "Documentation" msgid "Documentation"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:154 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:43
msgid "During delay ifup-events are not monitored !" msgid "Email address for the Privoxy administrator."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:599 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:167
msgid "Enable action file editor"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:251
msgid "Enable compression"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:181
msgid "Enable proxy authentication forwarding" msgid "Enable proxy authentication forwarding"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:135 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:156
msgid "" msgid "Enable remote toggle"
"Enable/Disable autostart of Privoxy on system startup and interface events"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:555 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:161
msgid "Enable remote toggle via HTTP"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:20
msgid "Enable/Disable autostart of Privoxy"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:150
msgid "Enable/Disable filtering when Privoxy starts." msgid "Enable/Disable filtering when Privoxy starts."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:134 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:20
msgid "Enabled" msgid "Enabled"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:602 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:183
msgid "" msgid ""
"Enabling this option is NOT recommended if there is no parent proxy that " "Enabling this option is NOT recommended if there is no parent proxy that "
"requires authentication!" "requires authentication!"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:368 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:172
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:404 msgid "Enforce page blocking"
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:442
msgid "File '%s' not found inside Configuration Directory"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:919 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:55
#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_logview.htm:12
msgid "File not found or empty"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:75
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:80
msgid "Files and Directories" msgid "Files and Directories"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:36 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:104
msgid "For help use link at the relevant option" msgid "Filter files"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:91 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:185
msgid "Forward HTTP"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:189
msgid "Forward SOCKS 4"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:193
msgid "Forward SOCKS 4A"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:197
msgid "Forward SOCKS 5"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:201
msgid "Forward SOCKS 5t"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:178
msgid "Forwarding" msgid "Forwarding"
msgstr "" msgstr ""
@@ -149,444 +265,383 @@ msgstr ""
msgid "Grant UCI access for luci-app-privoxy" msgid "Grant UCI access for luci-app-privoxy"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:589 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:247
msgid "Handle as empty doc returns ok"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:35
msgid "Hostname"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:173
msgid "" msgid ""
"If enabled, Privoxy hides the 'go there anyway' link. The user obviously " "If enabled, Privoxy hides the \"go there anyway\" link. The user obviously "
"should not be able to bypass any blocks." "should not be able to bypass any blocks."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:67 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:31
msgid "" msgid ""
"If you intend to operate Privoxy for more users than just yourself, it might " "If you intend to operate Privoxy for more users than just yourself, it might "
"be a good idea to let them know how to reach you, what you block and why you " "be a good idea to let them know how to reach you, what you block and why you "
"do that, your policies, etc." "do that, your policies, etc."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:215 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:112
msgid "Invalid email address"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:416
msgid "It is NOT recommended for the casual user." msgid "It is NOT recommended for the casual user."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:194 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:221
msgid "Keep-alive timeout"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:121
msgid "Listen addresses"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:40
msgid "Location of the Privoxy User Manual." msgid "Location of the Privoxy User Manual."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:108 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:60
msgid "Log File Viewer" msgid "Log Directory"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:899 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:66
msgid "Log File"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:332
msgid "Log all data read from the network" msgid "Log all data read from the network"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:831 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:290
msgid "Log all data written to the network" msgid "Log all data written to the network"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:905 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:336
msgid "Log the applying actions" msgid "Log the applying actions"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:807 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:274
msgid "" msgid ""
"Log the destination for each request Privoxy let through. See also 'Debug " "Log the destination for each request Privoxy let through. See also 'Debug "
"1024'." "1024'."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:867 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:314
msgid "" msgid ""
"Log the destination for requests Privoxy didn't let through, and the reason " "Log the destination for requests Privoxy didn't let through, and the reason "
"why." "why."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:104 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:99
msgid "Logging"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:339
msgid "Main actions file" msgid "Main actions file"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:461 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:72
msgid "Mandatory Input: No Data given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:259
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:296
msgid "Mandatory Input: No Directory given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:279
msgid "Mandatory Input: No File given!" msgid "Mandatory Input: No File given!"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:479 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:242
msgid "Mandatory Input: No Port given!" msgid "Max. client connections"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:345 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:244
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:381
msgid "Mandatory Input: No files given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:482
msgid "Mandatory Input: No valid IPv4 address or host given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:470
msgid "Mandatory Input: No valid IPv6 address given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:472
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:484
msgid "Mandatory Input: No valid Port given!"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:737
msgid "Maximum number of client connections that will be served." msgid "Maximum number of client connections that will be served."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:535 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:142
msgid "Maximum size (in KB) of the buffer for content filtering." msgid "Maximum size (in KB) of the buffer for content filtering."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:97 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:207
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:100 msgid "Misc"
msgid "Miscellaneous"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:51 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:326
msgid "NOT installed"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:254
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:291
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:310
msgid "No trailing '/', please."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:885
msgid "Non-fatal errors - *we highly recommended enabling this*" msgid "Non-fatal errors - *we highly recommended enabling this*"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:718 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:239
msgid "" msgid ""
"Number of seconds after which a socket times out if no data is received." "Number of seconds after which a socket times out if no data is received."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:672 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:222
msgid "" msgid ""
"Number of seconds after which an open connection will no longer be reused." "Number of seconds after which an open connection will no longer be reused."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:327 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:129
msgid "" msgid "Permit access"
"Only when using 'external filters', Privoxy has to create temporary files."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:81 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:130
msgid "Please install current version !" #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:136
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:917
msgid "Please press [Read] button"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:518
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:527
msgid "Please read Privoxy manual for details!" msgid "Please read Privoxy manual for details!"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:92 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:12
msgid "Please update to the current version!" msgid "Privoxy"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:24 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:15
msgid "Privoxy Settings"
msgstr ""
#: applications/luci-app-privoxy/root/usr/share/luci/menu.d/luci-app-privoxy.json:3
msgid "Privoxy WEB proxy" msgid "Privoxy WEB proxy"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:76 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:55
msgid "" msgid ""
"Privoxy can (and normally does) use a number of other files for additional " "Privoxy can (and normally does) use a number of other files for additional "
"configuration, help and logging. This section of the configuration file " "configuration, help and logging. This section of the configuration file "
"tells Privoxy where to find those other files." "tells Privoxy where to find those other files."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:32 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:47
msgid "" msgid "Proxy Info URL"
"Privoxy is a non-caching web proxy with advanced filtering capabilities for "
"enhancing privacy, modifying web page data and HTTP headers, controlling "
"access, and removing ads and other obnoxious Internet junk."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:912 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:282
msgid "Read / Reread log file"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:819
msgid "Show I/O status" msgid "Show I/O status"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:813 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:278
msgid "Show each connection status" msgid "Show each connection status"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:825 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:286
msgid "Show header parsing" msgid "Show header parsing"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:76 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:268
msgid "Software package '%s' is not installed." msgid "Single Threaded"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:85 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:237
msgid "Software package '%s' is outdated." msgid "Socket timeout"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:125 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:217
#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_startstop.htm:10 msgid "Split large forms"
msgid "Start"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:115 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:322
msgid "Start / Stop"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:116
msgid "Start/Stop Privoxy WEB Proxy"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:879
msgid "Startup banner and warnings." msgid "Startup banner and warnings."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:455 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:123
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:620
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:635
msgid "Syntax:" msgid "Syntax:"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:790 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:262
msgid "Syntax: Client header names delimited by spaces." msgid "Syntax: Client header names delimited by spaces."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:612 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:199
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:203
msgid ""
"Syntax: target_pattern [user:pass@]socks_proxy[:port] http_parent[:port]"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:187
msgid "Syntax: target_pattern http_parent[:port]" msgid "Syntax: target_pattern http_parent[:port]"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:59 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:191
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:62 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:195
msgid "Syntax: target_pattern socks_proxy[:port] http_parent[:port]"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:19
msgid "System" msgid "System"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:335 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:83
msgid "Template Directory"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:89
msgid "Temporary Directory"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:97
msgid "" msgid ""
"The actions file(s) to use. Multiple actionsfile lines are permitted, and " "The actions file(s) to use. Multiple actionsfile lines are permitted, and "
"are in fact recommended!" "are in fact recommended!"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:453 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:122
msgid "" msgid ""
"The address and TCP port on which Privoxy will listen for client requests." "The address and TCP port on which Privoxy will listen for client requests."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:770 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:257
msgid "" msgid ""
"The compression level that is passed to the zlib library when compressing " "The compression level that is passed to the zlib library when compressing "
"buffered content." "buffered content."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:252 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:61
msgid "" msgid ""
"The directory where all logging takes place (i.e. where the logfile is " "The directory where all logging takes place (i.e. where the logfile is "
"located)." "located).<br />No trailing \"/\", please."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:289 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:78
msgid "The directory where the other configuration files are located." msgid "The directory where the other configuration files are located."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:377 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:105
msgid "" msgid ""
"The filter files contain content modification rules that use regular " "The filter files contain content modification rules that use regular "
"expressions." "expressions."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:183 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:36
msgid "The hostname shown on the CGI pages." msgid "The hostname shown on the CGI pages."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:274 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:67
msgid "The log file to use. File name, relative to log directory." msgid "The log file to use. File name, relative to log directory."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:788 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:261
msgid "The order in which client headers are sorted before forwarding them." msgid "The order in which client headers are sorted before forwarding them."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:755 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:248
msgid "" msgid ""
"The status code Privoxy returns for pages blocked with +handle-as-empty-" "The status code Privoxy returns for pages blocked with +handle-as-empty-"
"document." "document."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:413 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:111
msgid "" msgid ""
"The trust mechanism is an experimental feature for building white-lists and " "The trust mechanism is an experimental feature for building white-lists and "
"should be used with care." "should be used with care."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:238 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:270
msgid ""
"The value of this option only matters if the experimental trust mechanism "
"has been activated."
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:800
msgid "" msgid ""
"This option is only there for debugging purposes. It will drastically reduce " "This option is only there for debugging purposes. It will drastically reduce "
"performance." "performance."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:574 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:163
msgid "" msgid ""
"This option will be removed in future releases as it has been obsoleted by " "This option will be removed in future releases as it has been obsoleted by "
"the more general header taggers." "the more general header taggers."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:85 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:118
msgid "" msgid ""
"This tab controls the security-relevant aspects of Privoxy's configuration." "This tab controls the security-relevant aspects of Privoxy's configuration."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:618 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:190
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:633 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:194
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:198
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:202
msgid "" msgid ""
"Through which SOCKS proxy (and optionally to which parent HTTP proxy) " "Through which SOCKS proxy (and optionally to which parent HTTP proxy) "
"specific requests should be routed." "specific requests should be routed."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:610 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:186
msgid "To which parent HTTP proxy specific requests should be routed." msgid "To which parent HTTP proxy specific requests should be routed."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:341 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:149
msgid "Toggle Status"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:225
msgid "Tolerate pipelining"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:50
msgid "Trust Info URL"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:110
msgid "Trust file"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:51
msgid ""
"URL shown if access to an untrusted page is denied. Only applies if trust "
"mechanism is enabled."
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:48
msgid "URL to documentation about the local Privoxy setup."
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:39
msgid "User Manual"
msgstr ""
#: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:100
msgid "User customizations" msgid "User customizations"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:166 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:143
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:543
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:677
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:700
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:724
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:743
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:776
msgid "Value is not a number"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:168
msgid "Value not between 0 and 300"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:778
msgid "Value not between 0 and 9"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:545
msgid "Value not between 1 and 4096"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:679
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:702
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:726
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:745
msgid "Value not greater 0 or empty"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:537
msgid "Value range 1 to 4096, no entry defaults to 4096" msgid "Value range 1 to 4096, no entry defaults to 4096"
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:45 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:210
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:47
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:50
msgid "Version"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:43
msgid "Version Information"
msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:650
msgid "Whether intercepted requests should be treated as valid." msgid "Whether intercepted requests should be treated as valid."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:572 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:162
msgid "" msgid ""
"Whether or not Privoxy recognizes special HTTP headers to change toggle " "Whether or not Privoxy recognizes special HTTP headers to change toggle "
"state." "state."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:762 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:252
msgid "Whether or not buffered content is compressed before delivery." msgid "Whether or not buffered content is compressed before delivery."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:710 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:234
msgid "" msgid ""
"Whether or not outgoing connections that have been kept alive should be " "Whether or not outgoing connections that have been kept alive should be "
"shared between different incoming connections." "shared between different incoming connections."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:687 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:226
msgid "Whether or not pipelined requests should be served." msgid "Whether or not pipelined requests should be served."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:600 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:182
msgid "Whether or not proxy authentication through Privoxy should work." msgid "Whether or not proxy authentication through Privoxy should work."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:582 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:168
msgid "Whether or not the web-based actions file editor may be used." msgid "Whether or not the web-based actions file editor may be used."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:565 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:157
msgid "Whether or not the web-based toggle feature may be used." msgid "Whether or not the web-based toggle feature may be used."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:657 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:214
msgid "Whether requests to Privoxy's CGI pages can be blocked or redirected." msgid "Whether requests to Privoxy's CGI pages can be blocked or redirected."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:664 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:218
msgid "" msgid ""
"Whether the CGI interface should stay compatible with broken HTTP clients." "Whether the CGI interface should stay compatible with broken HTTP clients."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:798 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:269
msgid "Whether to run only one server thread." msgid "Whether to run only one server thread."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:516 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:130
#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:525 #: applications/luci-app-privoxy/htdocs/luci-static/resources/view/privoxy/privoxy.js:136
msgid "Who can access what." msgid "Who can access what."
msgstr "" msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:49
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:87
msgid "installed"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:48
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
msgid "or higher"
msgstr ""
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:46
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78
#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89
msgid "required"
msgstr ""

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,12 @@
{
"admin/services/privoxy": {
"title": "Privoxy WEB proxy",
"action": {
"type": "view",
"path": "privoxy/privoxy"
},
"depends": {
"acl": [ "luci-app-privoxy" ]
}
}
}