diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2014-12-03 15:17:05 +0100 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2015-01-08 16:26:20 +0100 |
commit | 1bb4822dca6113f73e3bc89e2acf15935e6f8e92 (patch) | |
tree | 35e16f100466e4e00657199b38bb3d87d52bf73f /applications/luci-app-polipo | |
parent | 9edd0e46c3f880727738ce8ca6ff1c8b85f99ef4 (diff) |
Rework LuCI build system
* Rename subdirectories to their repective OpenWrt package names
* Make each LuCI module its own standalone package
* Deploy a shared luci.mk which is used by each module Makefile
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
Diffstat (limited to 'applications/luci-app-polipo')
33 files changed, 6309 insertions, 0 deletions
diff --git a/applications/luci-app-polipo/Makefile b/applications/luci-app-polipo/Makefile new file mode 100644 index 000000000..1fbafe7ed --- /dev/null +++ b/applications/luci-app-polipo/Makefile @@ -0,0 +1,14 @@ +# +# Copyright (C) 2008-2014 The LuCI Team <luci@lists.subsignal.org> +# +# This is free software, licensed under the Apache License, Version 2.0 . +# + +include $(TOPDIR)/rules.mk + +LUCI_TITLE:=LuCI Support for the Polipo Proxy +LUCI_DEPENDS:=+polipo + +include ../../luci.mk + +# call BuildPackage - OpenWrt buildroot signature diff --git a/applications/luci-app-polipo/ipkg/postinst b/applications/luci-app-polipo/ipkg/postinst new file mode 100755 index 000000000..0e23e2a4a --- /dev/null +++ b/applications/luci-app-polipo/ipkg/postinst @@ -0,0 +1,6 @@ +#!/bin/sh +[ -n "${IPKG_INSTROOT}" ] || { + ( . /etc/uci-defaults/luci-polipo ) && rm -f /etc/uci-defaults/luci-polipo + /etc/init.d/polipo enabled || /etc/init.d/polipo enable + exit 0 +} diff --git a/applications/luci-app-polipo/luasrc/controller/polipo.lua b/applications/luci-app-polipo/luasrc/controller/polipo.lua new file mode 100644 index 000000000..1113f8f26 --- /dev/null +++ b/applications/luci-app-polipo/luasrc/controller/polipo.lua @@ -0,0 +1,26 @@ +--[[ +LuCI - Lua Configuration Interface + +Copyright 2008 Aleksandar Krsteski <alekrsteski@gmail.com> + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +$Id$ +]]-- + +module("luci.controller.polipo", package.seeall) + +function index() + if not nixio.fs.access("/etc/config/polipo") then + return + end + + entry({"admin", "services", "polipo"}, alias("admin", "services", "polipo", "config"), _("Polipo")) + entry({"admin", "services", "polipo", "status"}, template("polipo_status"), _("Status")) + entry({"admin", "services", "polipo", "config"}, cbi("polipo"), _("Configuration")) +end + diff --git a/applications/luci-app-polipo/luasrc/model/cbi/polipo.lua b/applications/luci-app-polipo/luasrc/model/cbi/polipo.lua new file mode 100644 index 000000000..6dc35d581 --- /dev/null +++ b/applications/luci-app-polipo/luasrc/model/cbi/polipo.lua @@ -0,0 +1,188 @@ +--[[ +LuCI - Lua Configuration Interface + +Copyright 2008 Aleksandar Krsteski <alekrsteski@gmail.com> + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +$Id$ +]]-- + +m = Map("polipo", translate("Polipo"), + translate("Polipo is a small and fast caching web proxy.")) + +-- General section +s = m:section(NamedSection, "general", "polipo", translate("Proxy")) + +s:tab("general", translate("General Settings")) +s:tab("dns", translate("DNS and Query Settings")) +s:tab("proxy", translate("Parent Proxy")) +s:tab("logging", translate("Logging and RAM")) + +-- General settings +s:taboption("general", Flag, "enabled", translate("enable")) + +o = s:taboption("general", Value, "proxyAddress", translate("Listen address"), + translate("The interface on which Polipo will listen. To listen on all " .. + "interfaces use 0.0.0.0 or :: (IPv6).")) + +o.placeholder = "0.0.0.0" +o.datatype = "ipaddr" + + +o = s:taboption("general", Value, "proxyPort", translate("Listen port"), + translate("Port on which Polipo will listen")) + +o.optional = true +o.placeholder = "8123" +o.datatype = "port" + + +o = s:taboption("general", DynamicList, "allowedClients", + translate("Allowed clients"), + translate("When listen address is set to 0.0.0.0 or :: (IPv6), you must " .. + "list clients that are allowed to connect. The format is IP address " .. + "or network address (192.168.1.123, 192.168.1.0/24, " .. + "2001:660:116::/48 (IPv6))")) + +o.datatype = "ipaddr" +o.placeholder = "0.0.0.0/0" + + +-- DNS settings +dns = s:taboption("dns", Value, "dnsNameServer", translate("DNS server address"), + translate("Set the DNS server address to use, if you want Polipo to use " .. + "different DNS server than the host system.")) + +dns.optional = true +dns.datatype = "ipaddr" + +l = s:taboption("dns", ListValue, "dnsQueryIPv6", + translate("Query DNS for IPv6")) + +l.default = "happily" +l:value("true", translate("Query only IPv6")) +l:value("happily", translate("Query IPv4 and IPv6, prefer IPv6")) +l:value("reluctantly", translate("Query IPv4 and IPv6, prefer IPv4")) +l:value("false", translate("Do not query IPv6")) + + +l = s:taboption("dns", ListValue, "dnsUseGethostbyname", + translate("Query DNS by hostname")) + +l.default = "reluctantly" +l:value("true", translate("Always use system DNS resolver")) +l:value("happily", + translate("Query DNS directly, for unknown hosts fall back " .. + "to system resolver")) +l:value("reluctantly", + translate("Query DNS directly, fallback to system resolver")) +l:value("false", translate("Never use system DNS resolver")) + + +-- Proxy settings +o = s:taboption("proxy", Value, "parentProxy", + translate("Parent proxy address"), + translate("Parent proxy address (in host:port format), to which Polipo " .. + "will forward the requests.")) + +o.optional = true +o.datatype = "ipaddr" + + +o = s:taboption("proxy", Value, "parentAuthCredentials", + translate("Parent proxy authentication"), + translate("Basic HTTP authentication supported. Provide username and " .. + "password in username:password format.")) + +o.optional = true +o.placeholder = "username:password" + + +-- Logging +s:taboption("logging", Flag, "logSyslog", translate("Log to syslog")) + +s:taboption("logging", Value, "logFacility", + translate("Syslog facility")):depends("logSyslog", "1") + + +v = s:taboption("logging", Value, "logFile", + translate("Log file location"), + translate("Use of external storage device is recommended, because the " .. + "log file is written frequently and can grow considerably.")) + +v:depends("logSyslog", "") +v.rmempty = true + + +o = s:taboption("logging", Value, "chunkHighMark", + translate("In RAM cache size (in bytes)"), + translate("How much RAM should Polipo use for its cache.")) + +o.datatype = "uinteger" + + +-- Disk cache section +s = m:section(NamedSection, "cache", "polipo", translate("On-Disk Cache")) +s:tab("general", translate("General Settings")) +s:tab("advanced", translate("Advanced Settings")) + + +-- Disk cache settings +s:taboption("general", Value, "diskCacheRoot", translate("Disk cache location"), + translate("Location where polipo will cache files permanently. Use of " .. + "external storage devices is recommended, because the cache can " .. + "grow considerably. Leave it empty to disable on-disk " .. + "cache.")).rmempty = true + + +s:taboption("general", Flag, "cacheIsShared", translate("Shared cache"), + translate("Enable if cache (proxy) is shared by multiple users.")) + + +o = s:taboption("advanced", Value, "diskCacheTruncateSize", + translate("Truncate cache files size (in bytes)"), + translate("Size to which cached files should be truncated")) + +o.optional = true +o.placeholder = "1048576" +o.datatype = "uinteger" + + +o = s:taboption("advanced", Value, "diskCacheTruncateTime", + translate("Truncate cache files time"), + translate("Time after which cached files will be truncated")) + +o.optional = true +o.placeholder = "4d12h" + + +o = s:taboption("advanced", Value, "diskCacheUnlinkTime", + translate("Delete cache files time"), + translate("Time after which cached files will be deleted")) + +o.optional = true +o.placeholder = "32d" + + +-- Poor man's multiplexing section +s = m:section(NamedSection, "pmm", "polipo", + translate("Poor Man's Multiplexing"), + translate("Poor Man's Multiplexing (PMM) is a technique that simulates " .. + "multiplexing by requesting an instance in multiple segments. It " .. + "tries to lower the latency caused by the weakness of HTTP " .. + "protocol. NOTE: some sites may not work with PMM enabled.")) + +s:option(Value, "pmmSize", translate("PMM segments size (in bytes)"), + translate("To enable PMM, PMM segment size must be set to some " .. + "positive value.")).rmempty = true + +s:option(Value, "pmmFirstSize", translate("First PMM segment size (in bytes)"), + translate("Size of the first PMM segment. If not defined, it defaults " .. + "to twice the PMM segment size.")).rmempty = true + +return m diff --git a/applications/luci-app-polipo/luasrc/view/polipo_status.htm b/applications/luci-app-polipo/luasrc/view/polipo_status.htm new file mode 100644 index 000000000..c2695ca82 --- /dev/null +++ b/applications/luci-app-polipo/luasrc/view/polipo_status.htm @@ -0,0 +1,18 @@ +<% + +local uci = require "luci.model.uci".cursor() +local addr = "127.0.0.1" +local port = uci:get("polipo", "general", "proxyPort") or "8123" + +-%> + +<%+header%> + +<div class="cbi-map"> + <h2><a id="content" name="content"><%:Polipo Status%></a></h2> + <div class="cbi-section"> + <iframe id="sf" src="http://<%=luci.http.getenv('SERVER_NAME')%>:<%=port%>/polipo/" style="width:100%; height:350px; border:none"></iframe> + </div> +</div> + +<%+footer%> diff --git a/applications/luci-app-polipo/po/ca/polipo.po b/applications/luci-app-polipo/po/ca/polipo.po new file mode 100644 index 000000000..76a7093f4 --- /dev/null +++ b/applications/luci-app-polipo/po/ca/polipo.po @@ -0,0 +1,299 @@ +# polipo.pot +# generated from ./applications/luci-polipo/luasrc/i18n/polipo.en.lua +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-06-10 03:40+0200\n" +"PO-Revision-Date: 2014-06-02 05:16+0200\n" +"Last-Translator: Alex <alexhenrie24@gmail.com>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Pootle 2.0.6\n" + +msgid "Advanced Settings" +msgstr "Ajusts avançats" + +msgid "Allowed clients" +msgstr "Clients permesos" + +msgid "Always use system DNS resolver" +msgstr "Sempre utilitza el resolutor DNS del sistema" + +msgid "" +"Basic HTTP authentication supported. Provide username and password in " +"username:password format." +msgstr "" +"Se suporta autenticació HTTP bàsica. Entra el nom d'usuari i contrasenya en " +"format usuari:contrasenya." + +msgid "Configuration" +msgstr "Configuració" + +msgid "DNS and Query Settings" +msgstr "Ajusts de DNS i petició" + +msgid "DNS server address" +msgstr "Adreça de servidor DNS" + +msgid "Delete cache files time" +msgstr "Hora d'esborrat de fitxers de memòria cau" + +msgid "Disk cache location" +msgstr "Localització de la memòria cau del disc" + +msgid "Do not query IPv6" +msgstr "No consultis IPv6" + +msgid "Enable if cache (proxy) is shared by multiple users." +msgstr "Activa si la memòria cau (proxy) és compartida per múltiples usuaris." + +msgid "First PMM segment size (in bytes)" +msgstr "Mida de segment del primer PMM (en bytes)" + +msgid "General Settings" +msgstr "Ajusts generals" + +msgid "How much RAM should Polipo use for its cache." +msgstr "Quanta RAM hauria de fer servir Polipo per la seva memòria cau" + +msgid "In RAM cache size (in bytes)" +msgstr "Mida de memòria cau a la RAM (en bytes)" + +msgid "Listen address" +msgstr "Adreça que rep connexions" + +msgid "Listen port" +msgstr "Port que rep connexions" + +msgid "" +"Location where polipo will cache files permanently. Use of external storage " +"devices is recommended, because the cache can grow considerably. Leave it " +"empty to disable on-disk cache." +msgstr "" +"Localització on polipo desarà els fitxers de memòria cau permanentment. Es " +"recomana l'ús de dispositius d'emmagatzematge extern, perquè la memòria cau " +"pot créixer considerablement. Deixa-ho buit per desactivar la memòria cau en " +"disc." + +msgid "Log file location" +msgstr "Localització de fitxer registre" + +msgid "Log to syslog" +msgstr "Registra al syslog" + +msgid "Logging and RAM" +msgstr "Registre i RAM" + +msgid "Never use system DNS resolver" +msgstr "Mai utilitzis el resolutor DNS del sistema" + +msgid "On-Disk Cache" +msgstr "Memòria cau en disc" + +msgid "PMM segments size (in bytes)" +msgstr "Mida de segments MMS (en bytes)" + +msgid "Parent Proxy" +msgstr "Proxy pare" + +msgid "Parent proxy address" +msgstr "Adreça de proxy pare" + +msgid "" +"Parent proxy address (in host:port format), to which Polipo will forward the " +"requests." +msgstr "" +"Adreça de proxy pare (en format host:port), al que Polipo readreçarà les " +"sol·licituds." + +msgid "Parent proxy authentication" +msgstr "Autenticació de proxy pare" + +msgid "Polipo" +msgstr "Polipo" + +msgid "Polipo Status" +msgstr "Estat del Polipo" + +msgid "Polipo is a small and fast caching web proxy." +msgstr "Polipo és un proxy caché web petit i ràpid." + +msgid "Poor Man's Multiplexing" +msgstr "Multiplexació Poor Man's" + +msgid "" +"Poor Man's Multiplexing (PMM) is a technique that simulates multiplexing by " +"requesting an instance in multiple segments. It tries to lower the latency " +"caused by the weakness of HTTP protocol. NOTE: some sites may not work with " +"PMM enabled." +msgstr "" +"Multiplexació Poor Man's (PMM) és una tècnica que multiplexa sol·licitant " +"una instància en segments múltiples. Intenta reduir la latència causada per " +"la feblesa del protocol HTTP. NOTA: algunes pàgines poden no funcionar amb " +"la PMM activada." + +msgid "Port on which Polipo will listen" +msgstr "Port en que el Polipo escolta" + +msgid "Proxy" +msgstr "Proxy" + +msgid "Query DNS by hostname" +msgstr "Consulta DNS per nom de màquina" + +msgid "Query DNS directly, fallback to system resolver" +msgstr "" + +msgid "Query DNS directly, for unknown hosts fall back to system resolver" +msgstr "" + +msgid "Query DNS for IPv6" +msgstr "Consulta DNS per IPv6" + +msgid "Query IPv4 and IPv6, prefer IPv4" +msgstr "Consulta IPv4 i IPv6, prefereix IPv4" + +msgid "Query IPv4 and IPv6, prefer IPv6" +msgstr "Consulta IPv4 i IPv6, prefereix IPv6" + +msgid "Query only IPv6" +msgstr "Consulta només IPv6" + +msgid "" +"Set the DNS server address to use, if you want Polipo to use different DNS " +"server than the host system." +msgstr "" +"Estableix l'adreça de servidor DNS a utilitzar, si vols que Polipo faci " +"servir un servidor DNS diferent al del sistema." + +msgid "Shared cache" +msgstr "Memòria cau compartida" + +msgid "" +"Size of the first PMM segment. If not defined, it defaults to twice the PMM " +"segment size." +msgstr "" +"Mida del primer segment PMM. Si no es defineix, per defecte és el doble de " +"la mida de segment MMS." + +msgid "Size to which cached files should be truncated" +msgstr "Mida a que els fitxers en memòria cau es deuen truncar" + +msgid "Status" +msgstr "Estat" + +msgid "Syslog facility" +msgstr "Instal·lació syslog" + +msgid "" +"The interface on which Polipo will listen. To listen on all interfaces use " +"0.0.0.0 or :: (IPv6)." +msgstr "" +"La interfície a la que Polipo rebrà les connexions. Per rebre-les a a totes " +"les interfícies, utilitza 0.0.0.0 o :: (IPv6)." + +msgid "Time after which cached files will be deleted" +msgstr "" + +msgid "Time after which cached files will be truncated" +msgstr "" + +msgid "To enable PMM, PMM segment size must be set to some positive value." +msgstr "" + +msgid "Truncate cache files size (in bytes)" +msgstr "Mida de truncatge de fitxer de memòria cau (en bytes)" + +msgid "Truncate cache files time" +msgstr "Hora de truncatge de fitxers de memòria cau" + +msgid "" +"Use of external storage device is recommended, because the log file is " +"written frequently and can grow considerably." +msgstr "" +"Es recomana l'ǘs de dispositius d'emmagatzematge externs, ja que el fitxer " +"de registre és escrit freqüentment i pot créixer considerablement." + +msgid "" +"When listen address is set to 0.0.0.0 or :: (IPv6), you must list clients " +"that are allowed to connect. The format is IP address or network address " +"(192.168.1.123, 192.168.1.0/24, 2001:660:116::/48 (IPv6))" +msgstr "" + +msgid "enable" +msgstr "habilita" + +#~ msgid "" +#~ "To enable polipo on-disk cache cleaning (highly recommended), you should " +#~ "add a cron job in Scheduled Tasks services that will execute /usr/sbin/" +#~ "polipo_purge script. For example to perform disk cache cleanup every day " +#~ "at 6:00 in the morning you should add the following line in Scheduled " +#~ "Tasks \"0 6 * * *\\t/usr/sbin/polipo_purge\" (without quotes)." +#~ msgstr "" +#~ "Per activar la neteja memòria cau en disc de polipo (altament recomenat), " +#~ "hauries d'afegir una tasca de cron al servei de Tasques Programades que " +#~ "executaran l'script /usr/sbin/polipo_purge. Per exemple, per executar la " +#~ "neteja de memòria cau del disc cada dia a les 6:00 del matí, hauries " +#~ "d'afegir la següent línia a les Tasques Programades: \"0 6 * * * /usr/" +#~ "sbin/polipo_purge\" (sense cometes)." + +#~ msgid "" +#~ "Size to which cached files should be truncated. (default value: 1048576)" +#~ msgstr "" +#~ "Mida a la qual els fitxers de memòria cau s'haurien de truncar (valor per " +#~ "defecte: 1048576)" + +#~ msgid "" +#~ "Time after which cached files will be truncated. (default value: 4d12h)" +#~ msgstr "" +#~ "Hora després de la qual els fitxers de memòria cau es truncaran (valor " +#~ "per defecte: 4d12h)." + +#~ msgid "Time after which cached files will be deleted. (default value: 32d)" +#~ msgstr "" +#~ "Hora després de la qual els fitxers de memòria s'esborraran (valor per " +#~ "defecte: 32d)." + +#~ msgid "General" +#~ msgstr "General" + +#~ msgid "" +#~ "When listen address is set to 0.0.0.0 or :: (IPv6), you must list clients " +#~ "that are allowed to connect. The format is IP address or network address " +#~ "(192.168.1.123, 192.168.1.0/24, 2001:660:116::/48 (IPv6))." +#~ msgstr "" +#~ "Quan l'adreça d'escolta s'estableix a 0.0.0.0 o :: (IPv6), has de llistar " +#~ "els clients que es permeten per connectar. El format és adreça IP o " +#~ "adreça de xarxa (192.168.1.123, 192.168.1.0/24, 2001:660:116::/47 (IPv6))." + +#~ msgid "" +#~ "false = Do not query IPv6; reluctantly = Query both, prefer IPv4; happily " +#~ "= Query both, prefer IPv6; true = Query only IPv6" +#~ msgstr "" +#~ "fals = No consultis IPv6; a contracor = Consulta els dos, prefereix IPv4; " +#~ "feliçment = Consulta els dos, prefereix IPv6; cert = Consulta només IPv6" + +#~ msgid "" +#~ "false = Never use system DNS resolver; reluctantly = Query DNS directly, " +#~ "if DNS server is unavailable fail to system DNS resolver; happily = Query " +#~ "DNS directly, if host could not be found fallback to system DNS resolver; " +#~ "true = Always use system DNS resolver" +#~ msgstr "" +#~ "fals = mai utilitzis resoledor DNS; a contracor = Consulta DNS " +#~ "directament, si el servidor DNS està indisponible no utilitzis el sistema " +#~ "resoledor de DNS; feliçment = Consulta DNS directament, si la màquina no " +#~ "es pot trobar, vés al sistema resoledor de DNS; cert = Utilitza sistema " +#~ "resoledor DNS sempre" + +#~ msgid "Port on which Polipo will listen. (default value: 8123)" +#~ msgstr "Port al que Polipo rebrà les connexions (valor per defecte: 8123)." + +#~ msgid "polipo_pmm_pmmsize_desc" +#~ msgstr "" +#~ "Per habilitar el PMM, la mida dels segments PMM s'ha d'establir a algun " +#~ "valor positiu." diff --git a/applications/luci-app-polipo/po/cs/polipo.po b/applications/luci-app-polipo/po/cs/polipo.po new file mode 100644 index 000000000..9fa249d59 --- /dev/null +++ b/applications/luci-app-polipo/po/cs/polipo.po @@ -0,0 +1,205 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2014-07-11 19:47+0200\n" +"Last-Translator: koli <lukas.koluch@gmail.com>\n" +"Language-Team: none\n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: Pootle 2.0.6\n" + +msgid "Advanced Settings" +msgstr "Pokročilé nastavení" + +msgid "Allowed clients" +msgstr "Povolení klienti" + +msgid "Always use system DNS resolver" +msgstr "" + +msgid "" +"Basic HTTP authentication supported. Provide username and password in " +"username:password format." +msgstr "" + +msgid "Configuration" +msgstr "Konfigurace" + +msgid "DNS and Query Settings" +msgstr "" + +msgid "DNS server address" +msgstr "" + +msgid "Delete cache files time" +msgstr "" + +msgid "Disk cache location" +msgstr "" + +msgid "Do not query IPv6" +msgstr "" + +msgid "Enable if cache (proxy) is shared by multiple users." +msgstr "" + +msgid "First PMM segment size (in bytes)" +msgstr "Velikost prvního PMM segmentu (v bajtech)" + +msgid "General Settings" +msgstr "Obecné nastavení" + +msgid "How much RAM should Polipo use for its cache." +msgstr "" + +msgid "In RAM cache size (in bytes)" +msgstr "" + +msgid "Listen address" +msgstr "" + +msgid "Listen port" +msgstr "" + +msgid "" +"Location where polipo will cache files permanently. Use of external storage " +"devices is recommended, because the cache can grow considerably. Leave it " +"empty to disable on-disk cache." +msgstr "" + +msgid "Log file location" +msgstr "" + +msgid "Log to syslog" +msgstr "" + +msgid "Logging and RAM" +msgstr "" + +msgid "Never use system DNS resolver" +msgstr "" + +msgid "On-Disk Cache" +msgstr "" + +msgid "PMM segments size (in bytes)" +msgstr "Velikost PMM segmentů (v bajtech)" + +msgid "Parent Proxy" +msgstr "" + +msgid "Parent proxy address" +msgstr "" + +msgid "" +"Parent proxy address (in host:port format), to which Polipo will forward the " +"requests." +msgstr "" + +msgid "Parent proxy authentication" +msgstr "" + +msgid "Polipo" +msgstr "Polipo" + +msgid "Polipo Status" +msgstr "Stav Polipo" + +msgid "Polipo is a small and fast caching web proxy." +msgstr "" + +msgid "Poor Man's Multiplexing" +msgstr "" + +msgid "" +"Poor Man's Multiplexing (PMM) is a technique that simulates multiplexing by " +"requesting an instance in multiple segments. It tries to lower the latency " +"caused by the weakness of HTTP protocol. NOTE: some sites may not work with " +"PMM enabled." +msgstr "" + +msgid "Port on which Polipo will listen" +msgstr "" + +msgid "Proxy" +msgstr "Proxy" + +msgid "Query DNS by hostname" +msgstr "" + +msgid "Query DNS directly, fallback to system resolver" +msgstr "" + +msgid "Query DNS directly, for unknown hosts fall back to system resolver" +msgstr "" + +msgid "Query DNS for IPv6" +msgstr "" + +msgid "Query IPv4 and IPv6, prefer IPv4" +msgstr "" + +msgid "Query IPv4 and IPv6, prefer IPv6" +msgstr "" + +msgid "Query only IPv6" +msgstr "" + +msgid "" +"Set the DNS server address to use, if you want Polipo to use different DNS " +"server than the host system." +msgstr "" + +msgid "Shared cache" +msgstr "" + +msgid "" +"Size of the first PMM segment. If not defined, it defaults to twice the PMM " +"segment size." +msgstr "" + +msgid "Size to which cached files should be truncated" +msgstr "" + +msgid "Status" +msgstr "Stav" + +msgid "Syslog facility" +msgstr "" + +msgid "" +"The interface on which Polipo will listen. To listen on all interfaces use " +"0.0.0.0 or :: (IPv6)." +msgstr "" + +msgid "Time after which cached files will be deleted" +msgstr "" + +msgid "Time after which cached files will be truncated" +msgstr "" + +msgid "To enable PMM, PMM segment size must be set to some positive value." +msgstr "" + +msgid "Truncate cache files size (in bytes)" +msgstr "" + +msgid "Truncate cache files time" +msgstr "" + +msgid "" +"Use of external storage device is recommended, because the log file is " +"written frequently and can grow considerably." +msgstr "" + +msgid "" +"When listen address is set to 0.0.0.0 or :: (IPv6), you must list clients " +"that are allowed to connect. The format is IP address or network address " +"(192.168.1.123, 192.168.1.0/24, 2001:660:116::/48 (IPv6))" +msgstr "" + +msgid "enable" +msgstr "povolit" diff --git a/applications/luci-app-polipo/po/de/polipo.po b/applications/luci-app-polipo/po/de/polipo.po new file mode 100644 index 000000000..50f7819ed --- /dev/null +++ b/applications/luci-app-polipo/po/de/polipo.po @@ -0,0 +1,272 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-05-26 17:57+0200\n" +"PO-Revision-Date: 2013-01-29 20:21+0200\n" +"Last-Translator: DAC324 <gerd_roethig@web.de>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Pootle 2.0.6\n" + +msgid "Advanced Settings" +msgstr "Erweiterte Einstellungen" + +msgid "Allowed clients" +msgstr "Zugelassene Clients" + +msgid "Always use system DNS resolver" +msgstr "Immer DNS-Auflösung des Systems benutzen" + +msgid "" +"Basic HTTP authentication supported. Provide username and password in " +"username:password format." +msgstr "" +"HTTP-Basis-Anmeldung wird unterstützt. Geben Sie Benutzernamen und Passwort " +"im Format benutzername:passwort an." + +msgid "Configuration" +msgstr "Konfiguration" + +msgid "DNS and Query Settings" +msgstr "Einstellungen für DNS und Abfragen" + +msgid "DNS server address" +msgstr "Adresse des DNS-Servers" + +msgid "Delete cache files time" +msgstr "Zeit zur Lösching der Cache-Dateien" + +msgid "Disk cache location" +msgstr "Cache-Verzeichnis" + +msgid "Do not query IPv6" +msgstr "IPv6 nicht abfragen" + +# Klingt komisch +msgid "Enable if cache (proxy) is shared by multiple users." +msgstr "Aktivieren, falls Cache (Proxy) von mehreren Benutzern verwendet wird." + +msgid "First PMM segment size (in bytes)" +msgstr "Größe des ersten PMM - Segment in bytes" + +msgid "General Settings" +msgstr "Allgemeine Einstellungen" + +msgid "How much RAM should Polipo use for its cache." +msgstr "Wie viel Arbeitsspeicher soll Polipo für den Cache verwenden." + +msgid "In RAM cache size (in bytes)" +msgstr "Größe des Caches im Arbeitsspeicher (Bytes)" + +msgid "Listen address" +msgstr "Aktive Adresse" + +msgid "Listen port" +msgstr "Aktiver Port" + +msgid "" +"Location where polipo will cache files permanently. Use of external storage " +"devices is recommended, because the cache can grow considerably. Leave it " +"empty to disable on-disk cache." +msgstr "" +"Speicherort für permanent gespeicherte Dateien. Es wird die Benutzung von " +"externen Datenträgern empfohlen, da der Cache sehr groß werden kann. Lassen " +"Sie diese Option leer um den Cache zu deaktivieren." + +msgid "Log file location" +msgstr "Ort der Log-Datei" + +msgid "Log to syslog" +msgstr "Ereignisse im Systemprotokoll (syslog) speichern" + +msgid "Logging and RAM" +msgstr "Protokollierung und Speicher" + +msgid "Never use system DNS resolver" +msgstr "DNS-Auflösung des Systems niemals verwenden" + +msgid "On-Disk Cache" +msgstr "Festplatten-Cache" + +msgid "PMM segments size (in bytes)" +msgstr "Größe des normalen PMM - Segment in bytes" + +msgid "Parent Proxy" +msgstr "Übergeordneter Proxy" + +msgid "Parent proxy address" +msgstr "Adresse des übergeordneten Proxy-Servers" + +msgid "" +"Parent proxy address (in host:port format), to which Polipo will forward the " +"requests." +msgstr "" +"Adresse des Übergeordneten Proxyservers (im Format host:port), an den Polipo " +"die Anfragen weiterleiten soll." + +msgid "Parent proxy authentication" +msgstr "Authentifizierung für übergeordneten Proxyserver" + +msgid "Polipo" +msgstr "Polipo" + +msgid "Polipo Status" +msgstr "Polipo-Status" + +msgid "Polipo is a small and fast caching web proxy." +msgstr "Polipo ist ein kleiner und schneller Webproxy." + +msgid "Poor Man's Multiplexing" +msgstr "<abbr title=\"Poor Mans Multiplexing\">PMM</abbr>" + +msgid "" +"Poor Man's Multiplexing (PMM) is a technique that simulates multiplexing by " +"requesting an instance in multiple segments. It tries to lower the latency " +"caused by the weakness of HTTP protocol. NOTE: some sites may not work with " +"PMM enabled." +msgstr "" +"Poor Man's Multiplexing (PMM) ist eine Technik, welche Multiplexing " +"simuliert, indem eine Instanz in mehreren Teilen angefordert wird. Damit " +"wird versucht, die durch Schwächen im HTTP-Protokoll verursachten Latenzen " +"auszugleichen. ACHTUNG: Einige Webseiten könnten bei aktivem PMM nicht " +"funktionieren." + +msgid "Port on which Polipo will listen" +msgstr "Port, an dem Polipo lauscht" + +msgid "Proxy" +msgstr "Proxy" + +msgid "Query DNS by hostname" +msgstr "DNS-Abfrage über Hostname" + +msgid "Query DNS directly, fallback to system resolver" +msgstr "direkte DNS-Abfrage, Rückgriff auf System-Auflösung" + +msgid "Query DNS directly, for unknown hosts fall back to system resolver" +msgstr "" +"direkte DNS-Abfrage, Rückgriff auf System-Auflösung für unbekannte Hosts" + +msgid "Query DNS for IPv6" +msgstr "DNS-Abfrage für IPv6" + +msgid "Query IPv4 and IPv6, prefer IPv4" +msgstr "DNS-Abfrage für IPv4 und IPv6, bevorzuge IPv4" + +msgid "Query IPv4 and IPv6, prefer IPv6" +msgstr "DNS-Abfrage für IPv4 und IPv6, bevorzuge IPv6" + +msgid "Query only IPv6" +msgstr "Nur IPv6 abfragen" + +msgid "" +"Set the DNS server address to use, if you want Polipo to use different DNS " +"server than the host system." +msgstr "" +"Geben Sie einen DNS-Server an, wenn Polipo diesen Server statt des " +"systemeigenen DNS-Servers verwenden soll." + +# Verteilt? Gemeinsam? +msgid "Shared cache" +msgstr "Gemeinsamer Cache" + +msgid "" +"Size of the first PMM segment. If not defined, it defaults to twice the PMM " +"segment size." +msgstr "" +"Größe des ersten Segments. Wenn diese Option leer ist, wird hierfür die " +"Doppelte Größe des PMM-Segments angenommen" + +msgid "Size to which cached files should be truncated" +msgstr "Größe, auf die zwischengespeicherte Dateien beschnitten werden sollen" + +msgid "Status" +msgstr "Status" + +msgid "Syslog facility" +msgstr "System-Protokollierungsfunktion" + +msgid "" +"The interface on which Polipo will listen. To listen on all interfaces use " +"0.0.0.0 or :: (IPv6)." +msgstr "" +"Aktive Schnittstelle für Polipo. Um Polipo auf allen Schnittstellen zu " +"aktivieren, bitte 0.0.0.0 bzw. :: (IPv6) angeben." + +msgid "Time after which cached files will be deleted" +msgstr "Zeit, nach der zwischengespeicherte Dateien gelöscht werden" + +msgid "Time after which cached files will be truncated" +msgstr "Zeit, nach der zwischengespeicherte Dateien beschnitten werden" + +msgid "To enable PMM, PMM segment size must be set to some positive value." +msgstr "Um PMM zu aktivieren muss hier ein Wert eingetragen werden" + +msgid "Truncate cache files size (in bytes)" +msgstr "Zwischengespeicherte Dateien auf (Bytes) beschneiden" + +msgid "Truncate cache files time" +msgstr "Zwischengespeicherte Dateien nach (Zeit) beschneiden" + +msgid "" +"Use of external storage device is recommended, because the log file is " +"written frequently and can grow considerably." +msgstr "" +"Es sollte ein externes Speichermedium verwendet werden, da häufig in die " +"Protokolldatei geschrieben wird; sie kann dadurch sehr groß werden." + +msgid "" +"When listen address is set to 0.0.0.0 or :: (IPv6), you must list clients " +"that are allowed to connect. The format is IP address or network address " +"(192.168.1.123, 192.168.1.0/24, 2001:660:116::/48 (IPv6))" +msgstr "" +"Ist die aktive Adresse auf 0.0.0.0 oder or :: (IPv6) gesetzt, müssen " +"Clients, die sich verbinden dürfen, angegeben werden. Das Format ist " +"entweder IP- oder Netzwerk-Adresse (192.168.1.123, 192.168.1.0/24, " +"2001:660:116::/48 (IPv6))" + +msgid "enable" +msgstr "aktivieren" + +#, fuzzy +#~ msgid "Time after which cached files will be deleted. (default value: 32d)" +#~ msgstr "" +#~ "Speicherort für permanent gespeicherte Dateien. Es wird die Benutzung von " +#~ "externen Datenträgern empfohlen, da der Cache sehr groß werden kann. " +#~ "Lassen Sie diese Option leer um den Cache zu deaktivieren." + +#~ msgid "General" +#~ msgstr "Allgemein" + +#, fuzzy +#~ msgid "" +#~ "When listen address is set to 0.0.0.0 or :: (IPv6), you must list clients " +#~ "that are allowed to connect. The format is IP address or network address " +#~ "(192.168.1.123, 192.168.1.0/24, 2001:660:116::/48 (IPv6))." +#~ msgstr "" +#~ "Wenn der Server auf alle Anfragen (0.0.0.0 bzw. ::) hört, dann müssen die " +#~ "zugelassenen Gegenpunkte, die berechtig sind eine Verbindung aufzubauen, " +#~ "hier eingetragen werden. Als Format hier bitte die IP-Adresse oder " +#~ "Nerzwerkmaske auswählen (192.168.1.123, 192.168.1.0/24, 2001:660:116::/48 " +#~ "(IPv6))" + +#, fuzzy +#~ msgid "" +#~ "false = Do not query IPv6; reluctantly = Query both, prefer IPv4; happily " +#~ "= Query both, prefer IPv6; true = Query only IPv6" +#~ msgstr "" +#~ "false = Beachtet IPv6 nicht, nur IPv4 möglich; reluctantly = Beachtet " +#~ "sowohl IPv4 als auch IPv6, IPv4 wird bevorzugt; happily = Beachtet sowohl " +#~ "IPv4 als auch IPv6, IPv6 wird bevorzugt; true = Beachtet IPv4 nicht, nur " +#~ "IPv6 möglich" + +#, fuzzy +#~ msgid "Port on which Polipo will listen. (default value: 8123)" +#~ msgstr "" +#~ "Beschreibt, welcher Port von Polipo genutzt werden soll. " +#~ "Grundeinstellung: Port 8123" diff --git a/applications/luci-app-polipo/po/el/polipo.po b/applications/luci-app-polipo/po/el/polipo.po new file mode 100644 index 000000000..e7a62dd44 --- /dev/null +++ b/applications/luci-app-polipo/po/el/polipo.po @@ -0,0 +1,207 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-05-28 02:08+0200\n" +"PO-Revision-Date: 2012-03-18 15:29+0200\n" +"Last-Translator: Vasilis <acinonyx@openwrt.gr>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Pootle 2.0.4\n" + +msgid "Advanced Settings" +msgstr "" + +msgid "Allowed clients" +msgstr "" + +msgid "Always use system DNS resolver" +msgstr "" + +msgid "" +"Basic HTTP authentication supported. Provide username and password in " +"username:password format." +msgstr "" + +msgid "Configuration" +msgstr "" + +msgid "DNS and Query Settings" +msgstr "" + +msgid "DNS server address" +msgstr "" + +msgid "Delete cache files time" +msgstr "" + +msgid "Disk cache location" +msgstr "" + +msgid "Do not query IPv6" +msgstr "" + +msgid "Enable if cache (proxy) is shared by multiple users." +msgstr "" + +msgid "First PMM segment size (in bytes)" +msgstr "" + +msgid "General Settings" +msgstr "Γενικές Ρυθμίσεις" + +msgid "How much RAM should Polipo use for its cache." +msgstr "" + +msgid "In RAM cache size (in bytes)" +msgstr "" + +msgid "Listen address" +msgstr "" + +msgid "Listen port" +msgstr "" + +msgid "" +"Location where polipo will cache files permanently. Use of external storage " +"devices is recommended, because the cache can grow considerably. Leave it " +"empty to disable on-disk cache." +msgstr "" + +msgid "Log file location" +msgstr "" + +msgid "Log to syslog" +msgstr "" + +msgid "Logging and RAM" +msgstr "" + +msgid "Never use system DNS resolver" +msgstr "" + +msgid "On-Disk Cache" +msgstr "" + +msgid "PMM segments size (in bytes)" +msgstr "" + +msgid "Parent Proxy" +msgstr "" + +msgid "Parent proxy address" +msgstr "" + +msgid "" +"Parent proxy address (in host:port format), to which Polipo will forward the " +"requests." +msgstr "" + +msgid "Parent proxy authentication" +msgstr "" + +msgid "Polipo" +msgstr "Polipo" + +msgid "Polipo Status" +msgstr "" + +msgid "Polipo is a small and fast caching web proxy." +msgstr "" + +msgid "Poor Man's Multiplexing" +msgstr "" + +msgid "" +"Poor Man's Multiplexing (PMM) is a technique that simulates multiplexing by " +"requesting an instance in multiple segments. It tries to lower the latency " +"caused by the weakness of HTTP protocol. NOTE: some sites may not work with " +"PMM enabled." +msgstr "" + +msgid "Port on which Polipo will listen" +msgstr "" + +msgid "Proxy" +msgstr "" + +msgid "Query DNS by hostname" +msgstr "" + +msgid "Query DNS directly, fallback to system resolver" +msgstr "" + +msgid "Query DNS directly, for unknown hosts fall back to system resolver" +msgstr "" + +msgid "Query DNS for IPv6" +msgstr "" + +msgid "Query IPv4 and IPv6, prefer IPv4" +msgstr "" + +msgid "Query IPv4 and IPv6, prefer IPv6" +msgstr "" + +msgid "Query only IPv6" +msgstr "" + +msgid "" +"Set the DNS server address to use, if you want Polipo to use different DNS " +"server than the host system." +msgstr "" + +msgid "Shared cache" +msgstr "" + +msgid "" +"Size of the first PMM segment. If not defined, it defaults to twice the PMM " +"segment size." +msgstr "" + +msgid "Size to which cached files should be truncated" +msgstr "" + +msgid "Status" +msgstr "" + +msgid "Syslog facility" +msgstr "" + +msgid "" +"The interface on which Polipo will listen. To listen on all interfaces use " +"0.0.0.0 or :: (IPv6)." +msgstr "" + +msgid "Time after which cached files will be deleted" +msgstr "" + +msgid "Time after which cached files will be truncated" +msgstr "" + +msgid "To enable PMM, PMM segment size must be set to some positive value." +msgstr "" + +msgid "Truncate cache files size (in bytes)" +msgstr "" + +msgid "Truncate cache files time" +msgstr "" + +msgid "" +"Use of external storage device is recommended, because the log file is " +"written frequently and can grow considerably." +msgstr "" + +msgid "" +"When listen address is set to 0.0.0.0 or :: (IPv6), you must list clients " +"that are allowed to connect. The format is IP address or network address " +"(192.168.1.123, 192.168.1.0/24, 2001:660:116::/48 (IPv6))" +msgstr "" + +msgid "enable" +msgstr "" diff --git a/applications/luci-app-polipo/po/en/polipo.po b/applications/luci-app-polipo/po/en/polipo.po new file mode 100644 index 000000000..1bdb0c1d8 --- /dev/null +++ b/applications/luci-app-polipo/po/en/polipo.po @@ -0,0 +1,284 @@ +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-05-19 19:35+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.1.1\n" + +msgid "Advanced Settings" +msgstr "" + +msgid "Allowed clients" +msgstr "Allowed clients" + +msgid "Always use system DNS resolver" +msgstr "" + +msgid "" +"Basic HTTP authentication supported. Provide username and password in " +"username:password format." +msgstr "" +"Basic HTTP authentication supported. Provide username and password in " +"username:password format." + +msgid "Configuration" +msgstr "" + +msgid "DNS and Query Settings" +msgstr "" + +msgid "DNS server address" +msgstr "DNS server address" + +msgid "Delete cache files time" +msgstr "Delete cache files time" + +msgid "Disk cache location" +msgstr "Disk cache location" + +msgid "Do not query IPv6" +msgstr "" + +msgid "Enable if cache (proxy) is shared by multiple users." +msgstr "Enable if cache (proxy) is shared by multiple users." + +msgid "First PMM segment size (in bytes)" +msgstr "First PMM segment size (in bytes)" + +msgid "General Settings" +msgstr "" + +msgid "How much RAM should Polipo use for its cache." +msgstr "How much RAM should Polipo use for its cache." + +msgid "In RAM cache size (in bytes)" +msgstr "In RAM cache size (in bytes)" + +msgid "Listen address" +msgstr "Listen address" + +msgid "Listen port" +msgstr "Listen port" + +msgid "" +"Location where polipo will cache files permanently. Use of external storage " +"devices is recommended, because the cache can grow considerably. Leave it " +"empty to disable on-disk cache." +msgstr "" +"Location where polipo will cache files permanently. Use of external storage " +"devices is recommended, because the cache can grow considerably. Leave it " +"empty to disable on-disk cache." + +msgid "Log file location" +msgstr "Log file location" + +msgid "Log to syslog" +msgstr "Log to syslog" + +msgid "Logging and RAM" +msgstr "" + +msgid "Never use system DNS resolver" +msgstr "" + +msgid "On-Disk Cache" +msgstr "On-Disk Cache" + +msgid "PMM segments size (in bytes)" +msgstr "PMM segments size (in bytes)" + +msgid "Parent Proxy" +msgstr "" + +msgid "Parent proxy address" +msgstr "Parent proxy address" + +msgid "" +"Parent proxy address (in host:port format), to which Polipo will forward the " +"requests." +msgstr "" +"Parent proxy address (in host:port format), to which Polipo will forward the " +"requests." + +msgid "Parent proxy authentication" +msgstr "Parent proxy authentication" + +msgid "Polipo" +msgstr "Polipo" + +msgid "Polipo Status" +msgstr "" + +msgid "Polipo is a small and fast caching web proxy." +msgstr "Polipo is a small and fast caching web proxy." + +msgid "Poor Man's Multiplexing" +msgstr "Poor Man's Multiplexing" + +msgid "" +"Poor Man's Multiplexing (PMM) is a technique that simulates multiplexing by " +"requesting an instance in multiple segments. It tries to lower the latency " +"caused by the weakness of HTTP protocol. NOTE: some sites may not work with " +"PMM enabled." +msgstr "" +"Poor Man's Multiplexing (PMM) is a technique that simulates multiplexing " +"by requesting an instance in multiple segments. It tries to lower the " +"latency caused by the weakness of HTTP protocol. NOTE: some sites may not " +"work with PMM enabled." + +msgid "Port on which Polipo will listen" +msgstr "" + +msgid "Proxy" +msgstr "" + +msgid "Query DNS by hostname" +msgstr "Query DNS by hostname" + +msgid "Query DNS directly, fallback to system resolver" +msgstr "" + +msgid "Query DNS directly, for unknown hosts fall back to system resolver" +msgstr "" + +msgid "Query DNS for IPv6" +msgstr "Query DNS for IPv6" + +msgid "Query IPv4 and IPv6, prefer IPv4" +msgstr "" + +msgid "Query IPv4 and IPv6, prefer IPv6" +msgstr "" + +msgid "Query only IPv6" +msgstr "" + +msgid "" +"Set the DNS server address to use, if you want Polipo to use different DNS " +"server than the host system." +msgstr "" +"Set the DNS server address to use, if you want Polipo to use different DNS " +"server than the host system." + +msgid "Shared cache" +msgstr "Shared cache" + +msgid "" +"Size of the first PMM segment. If not defined, it defaults to twice the PMM " +"segment size." +msgstr "" +"Size of the first PMM segment. If not defined, it defaults to twice the PMM " +"segment size." + +msgid "Size to which cached files should be truncated" +msgstr "" + +msgid "Status" +msgstr "" + +msgid "Syslog facility" +msgstr "Syslog facility" + +msgid "" +"The interface on which Polipo will listen. To listen on all interfaces use " +"0.0.0.0 or :: (IPv6)." +msgstr "" +"The interface on which Polipo will listen. To listen on all interfaces use " +"0.0.0.0 or :: (IPv6)." + +msgid "Time after which cached files will be deleted" +msgstr "" + +msgid "Time after which cached files will be truncated" +msgstr "" + +msgid "To enable PMM, PMM segment size must be set to some positive value." +msgstr "To enable PMM, PMM segment size must be set to some positive value." + +msgid "Truncate cache files size (in bytes)" +msgstr "Truncate cache files size (in bytes)" + +msgid "Truncate cache files time" +msgstr "Truncate cache files time" + +msgid "" +"Use of external storage device is recommended, because the log file is " +"written frequently and can grow considerably." +msgstr "" +"Use of external storage device is recommended, because the log file is " +"written frequently and can grow considerably." + +msgid "" +"When listen address is set to 0.0.0.0 or :: (IPv6), you must list clients " +"that are allowed to connect. The format is IP address or network address " +"(192.168.1.123, 192.168.1.0/24, 2001:660:116::/48 (IPv6))" +msgstr "" + +msgid "enable" +msgstr "" + +#~ msgid "" +#~ "To enable polipo on-disk cache cleaning (highly recommended), you should " +#~ "add a cron job in Scheduled Tasks services that will execute /usr/sbin/" +#~ "polipo_purge script. For example to perform disk cache cleanup every day " +#~ "at 6:00 in the morning you should add the following line in Scheduled " +#~ "Tasks \"0 6 * * *\\t/usr/sbin/polipo_purge\" (without quotes)." +#~ msgstr "" +#~ "To enable polipo on-disk cache cleaning (highly recommended), you should " +#~ "add a cron job in Scheduled Tasks services that will execute /usr/sbin/" +#~ "polipo_purge script. For example to perform disk cache cleanup every day " +#~ "at 6:00 in the morning you should add the following line in Scheduled " +#~ "Tasks \"0 6 * * *\t/usr/sbin/polipo_purge\" (without quotes)." + +#~ msgid "" +#~ "Size to which cached files should be truncated. (default value: 1048576)" +#~ msgstr "" +#~ "Size to which cached files should be truncated. (default value: 1048576)" + +#~ msgid "" +#~ "Time after which cached files will be truncated. (default value: 4d12h)" +#~ msgstr "" +#~ "Time after which cached files will be truncated. (default value: 4d12h)" + +#~ msgid "Time after which cached files will be deleted. (default value: 32d)" +#~ msgstr "Time after which cached files will be deleted. (default value: 32d)" + +#~ msgid "General" +#~ msgstr "General" + +#~ msgid "" +#~ "When listen address is set to 0.0.0.0 or :: (IPv6), you must list clients " +#~ "that are allowed to connect. The format is IP address or network address " +#~ "(192.168.1.123, 192.168.1.0/24, 2001:660:116::/48 (IPv6))." +#~ msgstr "" +#~ "When listen address is set to 0.0.0.0 or :: (IPv6), you must list clients " +#~ "that are allowed to connect. The format is IP address or network address " +#~ "(192.168.1.123, 192.168.1.0/24, 2001:660:116::/48 (IPv6))." + +#~ msgid "" +#~ "false = Do not query IPv6; reluctantly = Query both, prefer IPv4; happily " +#~ "= Query both, prefer IPv6; true = Query only IPv6" +#~ msgstr "" +#~ "false = Do not query IPv6; reluctantly = Query both, prefer IPv4; happily " +#~ "= Query both, prefer IPv6; true = Query only IPv6" + +#~ msgid "" +#~ "false = Never use system DNS resolver; reluctantly = Query DNS directly, " +#~ "if DNS server is unavailable fail to system DNS resolver; happily = Query " +#~ "DNS directly, if host could not be found fallback to system DNS resolver; " +#~ "true = Always use system DNS resolver" +#~ msgstr "" +#~ "false = Never use system DNS resolver; reluctantly = Query DNS directly, " +#~ "if DNS server is unavailable fail to system DNS resolver; happily = Query " +#~ "DNS directly, if host could not be found fallback to system DNS resolver; " +#~ "true = Always use system DNS resolver" + +#~ msgid "Port on which Polipo will listen. (default value: 8123)" +#~ msgstr "Port on which Polipo will listen. (default value: 8123)" diff --git a/applications/luci-app-polipo/po/es/polipo.po b/applications/luci-app-polipo/po/es/polipo.po new file mode 100644 index 000000000..84ba24ec9 --- /dev/null +++ b/applications/luci-app-polipo/po/es/polipo.po @@ -0,0 +1,307 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-06-10 03:41+0200\n" +"PO-Revision-Date: 2012-09-02 08:33+0200\n" +"Last-Translator: José Vicente <josevteg@gmail.com>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Pootle 2.0.6\n" + +msgid "Advanced Settings" +msgstr "Configuración Avanzada" + +msgid "Allowed clients" +msgstr "Clientes permitos" + +msgid "Always use system DNS resolver" +msgstr "Usar siempre el DNS del sistema" + +msgid "" +"Basic HTTP authentication supported. Provide username and password in " +"username:password format." +msgstr "" +"Autenticación soportada: Basic HTTP. Provee del nombre de usuario y " +"contraseña in el formato username:password." + +msgid "Configuration" +msgstr "Configuración" + +msgid "DNS and Query Settings" +msgstr "Configuración de DNS y consultas" + +msgid "DNS server address" +msgstr "Dirección del servidor DNS" + +msgid "Delete cache files time" +msgstr "Tiempo para eliminar archivos de cache" + +msgid "Disk cache location" +msgstr "Ubicación de la caché de disco" + +msgid "Do not query IPv6" +msgstr "No consultar IPv6" + +msgid "Enable if cache (proxy) is shared by multiple users." +msgstr "Activar si la cache (proxy) es compartida por múltiples usuarios." + +msgid "First PMM segment size (in bytes)" +msgstr "Tamaño del primer segmento PMM (en bytes)" + +msgid "General Settings" +msgstr "Configuración general" + +msgid "How much RAM should Polipo use for its cache." +msgstr "Cuánta RAM debe usar Polipo como caché." + +msgid "In RAM cache size (in bytes)" +msgstr "Tamaño (en bytes) de la cache en RAM" + +msgid "Listen address" +msgstr "Dirección de escucha" + +msgid "Listen port" +msgstr "Puerto de escucha" + +msgid "" +"Location where polipo will cache files permanently. Use of external storage " +"devices is recommended, because the cache can grow considerably. Leave it " +"empty to disable on-disk cache." +msgstr "" +"Ubicación en la que Polipo creará archivos permanentemente. Se recomienda el " +"uso de dispositivos de almacenamiento externo, ya que la caché puede " +"aumentar considerablemente. Deje en blanco para desactivar la caché en disco." + +msgid "Log file location" +msgstr "Ubicación del archivo de registro" + +msgid "Log to syslog" +msgstr "Registrar en syslog" + +msgid "Logging and RAM" +msgstr "Registro y RAM" + +msgid "Never use system DNS resolver" +msgstr "Nunca usar el DNS del sistema" + +msgid "On-Disk Cache" +msgstr "Cache en disco" + +msgid "PMM segments size (in bytes)" +msgstr "Tamaño de segmentos PMM (en bytes)" + +msgid "Parent Proxy" +msgstr "Proxy padre" + +msgid "Parent proxy address" +msgstr "Dirección del proxy padre" + +msgid "" +"Parent proxy address (in host:port format), to which Polipo will forward the " +"requests." +msgstr "" +"Dirección del proxy padre (en formato máquina:puerto), al cual Polipo " +"traspasará las peticiones." + +msgid "Parent proxy authentication" +msgstr "Autentificación con el proxy padre" + +msgid "Polipo" +msgstr "Polipo" + +msgid "Polipo Status" +msgstr "Estado de Polipo" + +msgid "Polipo is a small and fast caching web proxy." +msgstr "Polipo es un servidor proxy web pequeño y rápido." + +msgid "Poor Man's Multiplexing" +msgstr "Multiplexación Poor Man's" + +msgid "" +"Poor Man's Multiplexing (PMM) is a technique that simulates multiplexing by " +"requesting an instance in multiple segments. It tries to lower the latency " +"caused by the weakness of HTTP protocol. NOTE: some sites may not work with " +"PMM enabled." +msgstr "" +"La Multiplexación Poor Man's (PMM) simula multiplexación solicitando una " +"instancia en múltiples segmentos. Intenta reducir la latencia provocada por " +"la debilidad del protocolo HTTP. NOTA: algunos sitios pueden no funcionar " +"con PMM habilitado." + +msgid "Port on which Polipo will listen" +msgstr "Puerto de escucha de Polipo" + +msgid "Proxy" +msgstr "Proxy" + +msgid "Query DNS by hostname" +msgstr "Consultar DNS por nombre de máquina" + +msgid "Query DNS directly, fallback to system resolver" +msgstr "Consultar DNS directamente y si falla probar con el del sistema" + +msgid "Query DNS directly, for unknown hosts fall back to system resolver" +msgstr "" +"Consultar DNS directamente y para máquinas desconocidas probar con el del " +"sistema" + +msgid "Query DNS for IPv6" +msgstr "Consulta DNS para IPv6" + +msgid "Query IPv4 and IPv6, prefer IPv4" +msgstr "Consultar IPv4 e IPv6, pero mejor IPv4" + +msgid "Query IPv4 and IPv6, prefer IPv6" +msgstr "Consultar IPv4 e IPv6, pero mejor IPv6" + +msgid "Query only IPv6" +msgstr "Consultar solo IPv6" + +msgid "" +"Set the DNS server address to use, if you want Polipo to use different DNS " +"server than the host system." +msgstr "" +"Indique la dirección del servidor DNS a utilizar, si prefiere que Polipo " +"utilice una dirección para el servidor DNS distinta al utilizado en el " +"sistema." + +msgid "Shared cache" +msgstr "Cache compartida" + +msgid "" +"Size of the first PMM segment. If not defined, it defaults to twice the PMM " +"segment size." +msgstr "" +"Tamaño del primer segmento PMM. Si no se encuentra definido, su valor por " +"defecto es el doble del tamaño del segmento PMM." + +msgid "Size to which cached files should be truncated" +msgstr "Tamaño máximo de los ficheros caché" + +msgid "Status" +msgstr "Estado" + +msgid "Syslog facility" +msgstr "Utilidad Syslog" + +msgid "" +"The interface on which Polipo will listen. To listen on all interfaces use " +"0.0.0.0 or :: (IPv6)." +msgstr "" +"Interfaz de escucha de Polipo. Para hacerlo en todas utilice 0.0.0.0 o :: " +"(IPv6)." + +msgid "Time after which cached files will be deleted" +msgstr "Tiempo tras el que se borrarán los ficheros en caché" + +msgid "Time after which cached files will be truncated" +msgstr "Tiempo tras el que se truncarán los ficheros en caché" + +msgid "To enable PMM, PMM segment size must be set to some positive value." +msgstr "" +"Para activar PMM, el tamaño de segmento PMM debe tener un valor positivo." + +msgid "Truncate cache files size (in bytes)" +msgstr "Truncar el tamaño del archivo de la cache (en bytes)" + +msgid "Truncate cache files time" +msgstr "Truncar tiempos en el archivo de cache" + +msgid "" +"Use of external storage device is recommended, because the log file is " +"written frequently and can grow considerably." +msgstr "" +"El uso de un dispositivo externo de almacenamiento es recomendado, debido a " +"que el archivo log es escrito con mucha frecuencia y el mismo puede " +"incrementar su tamaño de forma considerable." + +msgid "" +"When listen address is set to 0.0.0.0 or :: (IPv6), you must list clients " +"that are allowed to connect. The format is IP address or network address " +"(192.168.1.123, 192.168.1.0/24, 2001:660:116::/48 (IPv6))" +msgstr "" +"Si la dirección de escucha es 0.0.0.0 o :: (IPv6), debe listar a los " +"clientes a los que se permitirá conectar. El formato es dirección IP o " +"dirección de red (192.168.1.123, 192.168.1.0/24, 2001:660:116::/48 (IPv6))" + +msgid "enable" +msgstr "activar" + +#~ msgid "" +#~ "To enable polipo on-disk cache cleaning (highly recommended), you should " +#~ "add a cron job in Scheduled Tasks services that will execute /usr/sbin/" +#~ "polipo_purge script. For example to perform disk cache cleanup every day " +#~ "at 6:00 in the morning you should add the following line in Scheduled " +#~ "Tasks \"0 6 * * *\\t/usr/sbin/polipo_purge\" (without quotes)." +#~ msgstr "" +#~ "Para activar la limpieza de la cache en disco polipo (recomendada), se " +#~ "recomienda agregar un trabajo al cron in los Servicios de Tareas " +#~ "Programadas el cual ejecutará el script /usr/sbin/polipo_purge. Por " +#~ "ejemplo para ejecutar una limpieza de la cache de disco todos los días a " +#~ "las 6:00 a.m. deberá agregar la siguiente línea en el Servicio de Tareas " +#~ "Programadas.-&quot;0 6 * * * /usr/sbin/polipo_purge&quot; (sin " +#~ "las comillas)." + +#~ msgid "" +#~ "Size to which cached files should be truncated. (default value: 1048576)" +#~ msgstr "" +#~ "Tamaño del archivo sobre el cual la cache deberá ser truncada. (valor por " +#~ "defecto: 1048576)" + +#~ msgid "" +#~ "Time after which cached files will be truncated. (default value: 4d12h)" +#~ msgstr "" +#~ "Tiempo transcurrido necesario antes de truncar los archivos cacheado. " +#~ "(valor por defecto: 4d12h)" + +#~ msgid "Time after which cached files will be deleted. (default value: 32d)" +#~ msgstr "" +#~ "Tiempo transcurrido necesario antes de eliminar los archivos en la cache. " +#~ "(valor por defecto: 32d)" + +#~ msgid "General" +#~ msgstr "General" + +#~ msgid "" +#~ "When listen address is set to 0.0.0.0 or :: (IPv6), you must list clients " +#~ "that are allowed to connect. The format is IP address or network address " +#~ "(192.168.1.123, 192.168.1.0/24, 2001:660:116::/48 (IPv6))." +#~ msgstr "" +#~ "Cuando la dirección a escuchar es establecida en 0.0.0.0 or :: (en caso " +#~ "de utilizar IPv6), deberá listar los clientes que se encuentran permitos " +#~ "a conectarse. El formato a utilizar deberá indicarse con la dirección IP " +#~ "o bien la dirección de Red.Por ejemplo: (192.168.1.123, 192.168.1.0/24, " +#~ "2001:660:116::/48 (IPv6))." + +#~ msgid "" +#~ "false = Do not query IPv6; reluctantly = Query both, prefer IPv4; happily " +#~ "= Query both, prefer IPv6; true = Query only IPv6" +#~ msgstr "" +#~ "false = No consulta IPv6, reluctantly = Consulta ambos, preferencia IPv4; " +#~ "happily = Consulta ambos, preferencia IPv6; true = Consulta sólamente IPv6" + +#~ msgid "" +#~ "false = Never use system DNS resolver; reluctantly = Query DNS directly, " +#~ "if DNS server is unavailable fail to system DNS resolver; happily = Query " +#~ "DNS directly, if host could not be found fallback to system DNS resolver; " +#~ "true = Always use system DNS resolver" +#~ msgstr "" +#~ "false = Nunca use el sistema de resolución de DNS, reluctantly = " +#~ "Consultar DNS directamente, si el servidor DNS no está disponible al " +#~ "utilizar el sistema de resolución de DNS, hapilly = Consultar DNS " +#~ "directamente, si el host no se pudo encontrar volver al sistema de " +#~ "resolución de DNS; true = Siempre use el sistema de resolución de DNS" + +#~ msgid "Port on which Polipo will listen. (default value: 8123)" +#~ msgstr "Puerto de escucha que Polipo utilizará. (valor por defecto: 8123)" + +#~ msgid "polipo_pmm_pmmsize_desc" +#~ msgstr "" +#~ "Para activar PMM, el tamaño del segmento PMM debe ser establecido a un " +#~ "valor mayor a 0 (valor positivo)." diff --git a/applications/luci-app-polipo/po/fr/polipo.po b/applications/luci-app-polipo/po/fr/polipo.po new file mode 100644 index 000000000..f4e49aea5 --- /dev/null +++ b/applications/luci-app-polipo/po/fr/polipo.po @@ -0,0 +1,206 @@ +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-05-19 19:36+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 1.1.1\n" + +msgid "Advanced Settings" +msgstr "" + +msgid "Allowed clients" +msgstr "" + +msgid "Always use system DNS resolver" +msgstr "" + +msgid "" +"Basic HTTP authentication supported. Provide username and password in " +"username:password format." +msgstr "" + +msgid "Configuration" +msgstr "" + +msgid "DNS and Query Settings" +msgstr "" + +msgid "DNS server address" +msgstr "" + +msgid "Delete cache files time" +msgstr "" + +msgid "Disk cache location" +msgstr "" + +msgid "Do not query IPv6" +msgstr "" + +msgid "Enable if cache (proxy) is shared by multiple users." +msgstr "" + +msgid "First PMM segment size (in bytes)" +msgstr "" + +msgid "General Settings" +msgstr "" + +msgid "How much RAM should Polipo use for its cache." +msgstr "" + +msgid "In RAM cache size (in bytes)" +msgstr "" + +msgid "Listen address" +msgstr "" + +msgid "Listen port" +msgstr "" + +msgid "" +"Location where polipo will cache files permanently. Use of external storage " +"devices is recommended, because the cache can grow considerably. Leave it " +"empty to disable on-disk cache." +msgstr "" + +msgid "Log file location" +msgstr "" + +msgid "Log to syslog" +msgstr "" + +msgid "Logging and RAM" +msgstr "" + +msgid "Never use system DNS resolver" +msgstr "" + +msgid "On-Disk Cache" +msgstr "" + +msgid "PMM segments size (in bytes)" +msgstr "" + +msgid "Parent Proxy" +msgstr "" + +msgid "Parent proxy address" +msgstr "" + +msgid "" +"Parent proxy address (in host:port format), to which Polipo will forward the " +"requests." +msgstr "" + +msgid "Parent proxy authentication" +msgstr "" + +msgid "Polipo" +msgstr "" + +msgid "Polipo Status" +msgstr "" + +msgid "Polipo is a small and fast caching web proxy." +msgstr "" + +msgid "Poor Man's Multiplexing" +msgstr "" + +msgid "" +"Poor Man's Multiplexing (PMM) is a technique that simulates multiplexing by " +"requesting an instance in multiple segments. It tries to lower the latency " +"caused by the weakness of HTTP protocol. NOTE: some sites may not work with " +"PMM enabled." +msgstr "" + +msgid "Port on which Polipo will listen" +msgstr "" + +msgid "Proxy" +msgstr "" + +msgid "Query DNS by hostname" +msgstr "" + +msgid "Query DNS directly, fallback to system resolver" +msgstr "" + +msgid "Query DNS directly, for unknown hosts fall back to system resolver" +msgstr "" + +msgid "Query DNS for IPv6" +msgstr "" + +msgid "Query IPv4 and IPv6, prefer IPv4" +msgstr "" + +msgid "Query IPv4 and IPv6, prefer IPv6" +msgstr "" + +msgid "Query only IPv6" +msgstr "" + +msgid "" +"Set the DNS server address to use, if you want Polipo to use different DNS " +"server than the host system." +msgstr "" + +msgid "Shared cache" +msgstr "" + +msgid "" +"Size of the first PMM segment. If not defined, it defaults to twice the PMM " +"segment size." +msgstr "" + +msgid "Size to which cached files should be truncated" +msgstr "" + +msgid "Status" +msgstr "" + +msgid "Syslog facility" +msgstr "" + +msgid "" +"The interface on which Polipo will listen. To listen on all interfaces use " +"0.0.0.0 or :: (IPv6)." +msgstr "" + +msgid "Time after which cached files will be deleted" +msgstr "" + +msgid "Time after which cached files will be truncated" +msgstr "" + +msgid "To enable PMM, PMM segment size must be set to some positive value." +msgstr "" + +msgid "Truncate cache files size (in bytes)" +msgstr "" + +msgid "Truncate cache files time" +msgstr "" + +msgid "" +"Use of external storage device is recommended, because the log file is " +"written frequently and can grow considerably." +msgstr "" + +msgid "" +"When listen address is set to 0.0.0.0 or :: (IPv6), you must list clients " +"that are allowed to connect. The format is IP address or network address " +"(192.168.1.123, 192.168.1.0/24, 2001:660:116::/48 (IPv6))" +msgstr "" + +msgid "enable" +msgstr "" diff --git a/applications/luci-app-polipo/po/he/polipo.po b/applications/luci-app-polipo/po/he/polipo.po new file mode 100644 index 000000000..931228e5b --- /dev/null +++ b/applications/luci-app-polipo/po/he/polipo.po @@ -0,0 +1,202 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "Advanced Settings" +msgstr "" + +msgid "Allowed clients" +msgstr "" + +msgid "Always use system DNS resolver" +msgstr "" + +msgid "" +"Basic HTTP authentication supported. Provide username and password in " +"username:password format." +msgstr "" + +msgid "Configuration" +msgstr "" + +msgid "DNS and Query Settings" +msgstr "" + +msgid "DNS server address" +msgstr "" + +msgid "Delete cache files time" +msgstr "" + +msgid "Disk cache location" +msgstr "" + +msgid "Do not query IPv6" +msgstr "" + +msgid "Enable if cache (proxy) is shared by multiple users." +msgstr "" + +msgid "First PMM segment size (in bytes)" +msgstr "" + +msgid "General Settings" +msgstr "" + +msgid "How much RAM should Polipo use for its cache." +msgstr "" + +msgid "In RAM cache size (in bytes)" +msgstr "" + +msgid "Listen address" +msgstr "" + +msgid "Listen port" +msgstr "" + +msgid "" +"Location where polipo will cache files permanently. Use of external storage " +"devices is recommended, because the cache can grow considerably. Leave it " +"empty to disable on-disk cache." +msgstr "" + +msgid "Log file location" +msgstr "" + +msgid "Log to syslog" +msgstr "" + +msgid "Logging and RAM" +msgstr "" + +msgid "Never use system DNS resolver" +msgstr "" + +msgid "On-Disk Cache" +msgstr "" + +msgid "PMM segments size (in bytes)" +msgstr "" + +msgid "Parent Proxy" +msgstr "" + +msgid "Parent proxy address" +msgstr "" + +msgid "" +"Parent proxy address (in host:port format), to which Polipo will forward the " +"requests." +msgstr "" + +msgid "Parent proxy authentication" +msgstr "" + +msgid "Polipo" +msgstr "" + +msgid "Polipo Status" +msgstr "" + +msgid "Polipo is a small and fast caching web proxy." +msgstr "" + +msgid "Poor Man's Multiplexing" +msgstr "" + +msgid "" +"Poor Man's Multiplexing (PMM) is a technique that simulates multiplexing by " +"requesting an instance in multiple segments. It tries to lower the latency " +"caused by the weakness of HTTP protocol. NOTE: some sites may not work with " +"PMM enabled." +msgstr "" + +msgid "Port on which Polipo will listen" +msgstr "" + +msgid "Proxy" +msgstr "" + +msgid "Query DNS by hostname" +msgstr "" + +msgid "Query DNS directly, fallback to system resolver" +msgstr "" + +msgid "Query DNS directly, for unknown hosts fall back to system resolver" +msgstr "" + +msgid "Query DNS for IPv6" +msgstr "" + +msgid "Query IPv4 and IPv6, prefer IPv4" +msgstr "" + +msgid "Query IPv4 and IPv6, prefer IPv6" +msgstr "" + +msgid "Query only IPv6" +msgstr "" + +msgid "" +"Set the DNS server address to use, if you want Polipo to use different DNS " +"server than the host system." +msgstr "" + +msgid "Shared cache" +msgstr "" + +msgid "" +"Size of the first PMM segment. If not defined, it defaults to twice the PMM " +"segment size." +msgstr "" + +msgid "Size to which cached files should be truncated" +msgstr "" + +msgid "Status" +msgstr "" + +msgid "Syslog facility" +msgstr "" + +msgid "" +"The interface on which Polipo will listen. To listen on all interfaces use " +"0.0.0.0 or :: (IPv6)." +msgstr "" + +msgid "Time after which cached files will be deleted" +msgstr "" + +msgid "Time after which cached files will be truncated" +msgstr "" + +msgid "To enable PMM, PMM segment size must be set to some positive value." +msgstr "" + +msgid "Truncate cache files size (in bytes)" +msgstr "" + +msgid "Truncate cache files time" +msgstr "" + +msgid "" +"Use of external storage device is recommended, because the log file is " +"written frequently and can grow considerably." +msgstr "" + +msgid "" +"When listen address is set to 0.0.0.0 or :: (IPv6), you must list clients " +"that are allowed to connect. The format is IP address or network address " +"(192.168.1.123, 192.168.1.0/24, 2001:660:116::/48 (IPv6))" +msgstr "" + +msgid "enable" +msgstr "" diff --git a/applications/luci-app-polipo/po/hu/polipo.po b/applications/luci-app-polipo/po/hu/polipo.po new file mode 100644 index 000000000..931228e5b --- /dev/null +++ b/applications/luci-app-polipo/po/hu/polipo.po @@ -0,0 +1,202 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "Advanced Settings" +msgstr "" + +msgid "Allowed clients" +msgstr "" + +msgid "Always use system DNS resolver" +msgstr "" + +msgid "" +"Basic HTTP authentication supported. Provide username and password in " +"username:password format." +msgstr "" + +msgid "Configuration" +msgstr "" + +msgid "DNS and Query Settings" +msgstr "" + +msgid "DNS server address" +msgstr "" + +msgid "Delete cache files time" +msgstr "" + +msgid "Disk cache location" +msgstr "" + +msgid "Do not query IPv6" +msgstr "" + +msgid "Enable if cache (proxy) is shared by multiple users." +msgstr "" + +msgid "First PMM segment size (in bytes)" +msgstr "" + +msgid "General Settings" +msgstr "" + +msgid "How much RAM should Polipo use for its cache." +msgstr "" + +msgid "In RAM cache size (in bytes)" +msgstr "" + +msgid "Listen address" +msgstr "" + +msgid "Listen port" +msgstr "" + +msgid "" +"Location where polipo will cache files permanently. Use of external storage " +"devices is recommended, because the cache can grow considerably. Leave it " +"empty to disable on-disk cache." +msgstr "" + +msgid "Log file location" +msgstr "" + +msgid "Log to syslog" +msgstr "" + +msgid "Logging and RAM" +msgstr "" + +msgid "Never use system DNS resolver" +msgstr "" + +msgid "On-Disk Cache" +msgstr "" + +msgid "PMM segments size (in bytes)" +msgstr "" + +msgid "Parent Proxy" +msgstr "" + +msgid "Parent proxy address" +msgstr "" + +msgid "" +"Parent proxy address (in host:port format), to which Polipo will forward the " +"requests." +msgstr "" + +msgid "Parent proxy authentication" +msgstr "" + +msgid "Polipo" +msgstr "" + +msgid "Polipo Status" +msgstr "" + +msgid "Polipo is a small and fast caching web proxy." +msgstr "" + +msgid "Poor Man's Multiplexing" +msgstr "" + +msgid "" +"Poor Man's Multiplexing (PMM) is a technique that simulates multiplexing by " +"requesting an instance in multiple segments. It tries to lower the latency " +"caused by the weakness of HTTP protocol. NOTE: some sites may not work with " +"PMM enabled." +msgstr "" + +msgid "Port on which Polipo will listen" +msgstr "" + +msgid "Proxy" +msgstr "" + +msgid "Query DNS by hostname" +msgstr "" + +msgid "Query DNS directly, fallback to system resolver" +msgstr "" + +msgid "Query DNS directly, for unknown hosts fall back to system resolver" +msgstr "" + +msgid "Query DNS for IPv6" +msgstr "" + +msgid "Query IPv4 and IPv6, prefer IPv4" +msgstr "" + +msgid "Query IPv4 and IPv6, prefer IPv6" +msgstr "" + +msgid "Query only IPv6" +msgstr "" + +msgid "" +"Set the DNS server address to use, if you want Polipo to use different DNS " +"server than the host system." +msgstr "" + +msgid "Shared cache" +msgstr "" + +msgid "" +"Size of the first PMM segment. If not defined, it defaults to twice the PMM " +"segment size." +msgstr "" + +msgid "Size to which cached files should be truncated" +msgstr "" + +msgid "Status" +msgstr "" + +msgid "Syslog facility" +msgstr "" + +msgid "" +"The interface on which Polipo will listen. To listen on all interfaces use " +"0.0.0.0 or :: (IPv6)." +msgstr "" + +msgid "Time after which cached files will be deleted" +msgstr "" + +msgid "Time after which cached files will be truncated" +msgstr "" + +msgid "To enable PMM, PMM segment size must be set to some positive value." +msgstr "" + +msgid "Truncate cache files size (in bytes)" +msgstr "" + +msgid "Truncate cache files time" +msgstr "" + +msgid "" +"Use of external storage device is recommended, because the log file is " +"written frequently and can grow considerably." +msgstr "" + +msgid "" +"When listen address is set to 0.0.0.0 or :: (IPv6), you must list clients " +"that are allowed to connect. The format is IP address or network address " +"(192.168.1.123, 192.168.1.0/24, 2001:660:116::/48 (IPv6))" +msgstr "" + +msgid "enable" +msgstr "" diff --git a/applications/luci-app-polipo/po/it/polipo.po b/applications/luci-app-polipo/po/it/polipo.po new file mode 100644 index 000000000..6bc06690d --- /dev/null +++ b/applications/luci-app-polipo/po/it/polipo.po @@ -0,0 +1,219 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-05-19 19:36+0200\n" +"PO-Revision-Date: 2013-02-09 19:56+0200\n" +"Last-Translator: Francesco <3gasas@gmail.com>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Pootle 2.0.6\n" + +msgid "Advanced Settings" +msgstr "Impostazioni avanzate" + +msgid "Allowed clients" +msgstr "Clients permessi" + +# che è sto DNS RESOLVER? +msgid "Always use system DNS resolver" +msgstr "Usa sempre DNS resolver" + +msgid "" +"Basic HTTP authentication supported. Provide username and password in " +"username:password format." +msgstr "" +"Autenticazione base HTTP supportata. Fornire username e password in formato " +"username:password." + +msgid "Configuration" +msgstr "Configurazione" + +msgid "DNS and Query Settings" +msgstr "Settaggi DNS e Query" + +msgid "DNS server address" +msgstr "Indirizzo del server DNS" + +msgid "Delete cache files time" +msgstr "Svuota la cache file dopo" + +msgid "Disk cache location" +msgstr "Percorso della cache del disco" + +msgid "Do not query IPv6" +msgstr "Non ignorare query IPv6" + +msgid "Enable if cache (proxy) is shared by multiple users." +msgstr "Abilita se la cache (del proxy) e' condivisa tra gli utenti." + +msgid "First PMM segment size (in bytes)" +msgstr "Dimensione del primo segmento PMM (in bytes)" + +msgid "General Settings" +msgstr "Impostazioni genarali" + +msgid "How much RAM should Polipo use for its cache." +msgstr "Quanta RAM dovrebbe Polipo usa come sua cache." + +msgid "In RAM cache size (in bytes)" +msgstr "In RAM cache size (in bytes)" + +msgid "Listen address" +msgstr "Indirizzi ip da \"ascoltare\"" + +msgid "Listen port" +msgstr "Porta" + +msgid "" +"Location where polipo will cache files permanently. Use of external storage " +"devices is recommended, because the cache can grow considerably. Leave it " +"empty to disable on-disk cache." +msgstr "" +"Percorso dove polipo memorizzerà i files di cache permanentemente. L'uso di " +"un dispositivo di memorizzazione esterno è raccomandato. Lasciare vuoto per " +"disabilitare la cache sul disco." + +msgid "Log file location" +msgstr "Percorso del file di log" + +msgid "Log to syslog" +msgstr "Pubblica il log nel syslog" + +msgid "Logging and RAM" +msgstr "Registra in RAM" + +msgid "Never use system DNS resolver" +msgstr "Non usare mai DNS RESOLVER" + +msgid "On-Disk Cache" +msgstr "On-Disk Cache" + +msgid "PMM segments size (in bytes)" +msgstr "DImensione segmenti PMM (in bytes)" + +msgid "Parent Proxy" +msgstr "Parent Proxy" + +msgid "Parent proxy address" +msgstr "Indirizzo parent proxy" + +msgid "" +"Parent proxy address (in host:port format), to which Polipo will forward the " +"requests." +msgstr "" +"Indirizzi del parent proxy (nel formato ip:porta), al quale Polipo dovrà " +"inoltrare le richieste." + +msgid "Parent proxy authentication" +msgstr "Autentificazione Parent proxy" + +msgid "Polipo" +msgstr "Polipo" + +msgid "Polipo Status" +msgstr "Stato Polipo" + +msgid "Polipo is a small and fast caching web proxy." +msgstr "Polipo è un piccolo e veloce webcache proxy." + +msgid "Poor Man's Multiplexing" +msgstr "Poor Man's Multiplexing" + +msgid "" +"Poor Man's Multiplexing (PMM) is a technique that simulates multiplexing by " +"requesting an instance in multiple segments. It tries to lower the latency " +"caused by the weakness of HTTP protocol. NOTE: some sites may not work with " +"PMM enabled." +msgstr "" +"Poor Man's Multiplexing (PMM) è una tecnica che simula il multiplexing " +"richiedendo una nuova istanza del segmento. Questo server per abbassare la " +"latenza causata dalla debolezza del protocollo HTTP. NOTA: alcuni siti " +"potrebbero non funzionare con PMM abilitato." + +msgid "Port on which Polipo will listen" +msgstr "Porta sulla quale Polipo deve rimanere in ascolto" + +msgid "Proxy" +msgstr "Proxy" + +msgid "Query DNS by hostname" +msgstr "Richiesta DNS da parte dell'host" + +msgid "Query DNS directly, fallback to system resolver" +msgstr "" + +msgid "Query DNS directly, for unknown hosts fall back to system resolver" +msgstr "" + +msgid "Query DNS for IPv6" +msgstr "" + +msgid "Query IPv4 and IPv6, prefer IPv4" +msgstr "" + +msgid "Query IPv4 and IPv6, prefer IPv6" +msgstr "" + +msgid "Query only IPv6" +msgstr "" + +msgid "" +"Set the DNS server address to use, if you want Polipo to use different DNS " +"server than the host system." +msgstr "" + +msgid "Shared cache" +msgstr "" + +msgid "" +"Size of the first PMM segment. If not defined, it defaults to twice the PMM " +"segment size." +msgstr "" + +msgid "Size to which cached files should be truncated" +msgstr "" + +msgid "Status" +msgstr "" + +msgid "Syslog facility" +msgstr "" + +msgid "" +"The interface on which Polipo will listen. To listen on all interfaces use " +"0.0.0.0 or :: (IPv6)." +msgstr "" + +msgid "Time after which cached files will be deleted" +msgstr "" + +msgid "Time after which cached files will be truncated" +msgstr "" + +msgid "To enable PMM, PMM segment size must be set to some positive value." +msgstr "" + +msgid "Truncate cache files size (in bytes)" +msgstr "" + +msgid "Truncate cache files time" +msgstr "" + +msgid "" +"Use of external storage device is recommended, because the log file is " +"written frequently and can grow considerably." +msgstr "" + +msgid "" +"When listen address is set to 0.0.0.0 or :: (IPv6), you must list clients " +"that are allowed to connect. The format is IP address or network address " +"(192.168.1.123, 192.168.1.0/24, 2001:660:116::/48 (IPv6))" +msgstr "" + +msgid "enable" +msgstr "Abilita" diff --git a/applications/luci-app-polipo/po/ja/polipo.po b/applications/luci-app-polipo/po/ja/polipo.po new file mode 100644 index 000000000..81ce9a783 --- /dev/null +++ b/applications/luci-app-polipo/po/ja/polipo.po @@ -0,0 +1,229 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-05-19 19:36+0200\n" +"PO-Revision-Date: 2013-10-06 17:01+0200\n" +"Last-Translator: Kentaro <kentaro.matsuyama@gmail.com>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Pootle 2.0.6\n" + +msgid "Advanced Settings" +msgstr "詳細設定" + +msgid "Allowed clients" +msgstr "アクセスを許可するクライアント" + +msgid "Always use system DNS resolver" +msgstr "常にシステムのDNS名前解決を使用する" + +msgid "" +"Basic HTTP authentication supported. Provide username and password in " +"username:password format." +msgstr "" +"Basic認証をサポートしています。\"ユーザー名:パスワード\"の形式で入力してくだ" +"さい。" + +msgid "Configuration" +msgstr "設定" + +msgid "DNS and Query Settings" +msgstr "DNSおよびクエリ設定" + +msgid "DNS server address" +msgstr "DNSサーバーアドレス" + +msgid "Delete cache files time" +msgstr "キャッシュファイルを保持する時間" + +msgid "Disk cache location" +msgstr "ディスクキャッシュの保存場所" + +msgid "Do not query IPv6" +msgstr "IPv6の問い合わせを行わない" + +msgid "Enable if cache (proxy) is shared by multiple users." +msgstr "複数ユーザーでキャッシュを共有する場合、有効にしてください。" + +msgid "First PMM segment size (in bytes)" +msgstr "ファーストPMM セグメントサイズ (単位:バイト)" + +msgid "General Settings" +msgstr "基本設定" + +msgid "How much RAM should Polipo use for its cache." +msgstr "PolipoがRAM上で使用するキャッシュサイズを設定してください。" + +msgid "In RAM cache size (in bytes)" +msgstr "RAM キャッシュサイズ (単位:バイト)" + +msgid "Listen address" +msgstr "待ち受けアドレス" + +msgid "Listen port" +msgstr "待ち受けポート" + +msgid "" +"Location where polipo will cache files permanently. Use of external storage " +"devices is recommended, because the cache can grow considerably. Leave it " +"empty to disable on-disk cache." +msgstr "" +"Polipoが使用するキャッシュファイルの保存場所を設定します。キャッシュは頻繁に" +"更新されるため、外部デバイスに保存することを推奨します。空欄に設定した場合、" +"ディスクキャッシュは無効化されます。" + +msgid "Log file location" +msgstr "ログファイルの保存場所" + +msgid "Log to syslog" +msgstr "syslogにログを記録する" + +msgid "Logging and RAM" +msgstr "ログとRAM設定" + +msgid "Never use system DNS resolver" +msgstr "システムのDNS名前解決を使用しない" + +msgid "On-Disk Cache" +msgstr "ディスクキャッシュ" + +msgid "PMM segments size (in bytes)" +msgstr "PMM セグメントサイズ (単位:バイト)" + +msgid "Parent Proxy" +msgstr "親プロキシ" + +msgid "Parent proxy address" +msgstr "親プロキシ・アドレス" + +msgid "" +"Parent proxy address (in host:port format), to which Polipo will forward the " +"requests." +msgstr "" +"Polipoがリクエストを転送する、親プロキシサーバーのアドレスを\"ホスト:ポート番" +"号\"の形式で設定してください。" + +msgid "Parent proxy authentication" +msgstr "親プロキシの認証" + +msgid "Polipo" +msgstr "Polipo" + +msgid "Polipo Status" +msgstr "Polipo ステータス" + +msgid "Polipo is a small and fast caching web proxy." +msgstr "Polipoは、軽量で高速なWEBプロキシキャッシュサーバーです。" + +msgid "Poor Man's Multiplexing" +msgstr "Poor Man's Multiplexing" + +msgid "" +"Poor Man's Multiplexing (PMM) is a technique that simulates multiplexing by " +"requesting an instance in multiple segments. It tries to lower the latency " +"caused by the weakness of HTTP protocol. NOTE: some sites may not work with " +"PMM enabled." +msgstr "" +"Poor Man's Multiplexing (PMM) は、複数のセグメントに渡ってインスタンスをリク" +"エストすることで、多重化をシュミレートする技術であり、HTTPプロトコルの弱点に" +"よるレイテンシを低減する試みを行います。注意:PMMを有効にしていると、いくつか" +"のサイトではつながらなくなる可能性があります。" + +msgid "Port on which Polipo will listen" +msgstr "Polipoが待ち受けを行うポート番号です。" + +msgid "Proxy" +msgstr "プロキシ" + +msgid "Query DNS by hostname" +msgstr "ホスト名のDNS問い合わせ" + +msgid "Query DNS directly, fallback to system resolver" +msgstr "" + +msgid "Query DNS directly, for unknown hosts fall back to system resolver" +msgstr "" + +msgid "Query DNS for IPv6" +msgstr "IPv6 DNS問い合わせ" + +msgid "Query IPv4 and IPv6, prefer IPv4" +msgstr "IPv4とIPv6の問い合わせを行う (IPv4を優先)" + +msgid "Query IPv4 and IPv6, prefer IPv6" +msgstr "IPv4とIPv6の問い合わせを行う (IPv6を優先)" + +msgid "Query only IPv6" +msgstr "IPv6のみ問い合わせを行う" + +msgid "" +"Set the DNS server address to use, if you want Polipo to use different DNS " +"server than the host system." +msgstr "" +"Polipoがシステムとは別のDNSサーバーを使用する場合、DNSサーバーのアドレスを設" +"定してください。" + +msgid "Shared cache" +msgstr "共有キャッシュ" + +msgid "" +"Size of the first PMM segment. If not defined, it defaults to twice the PMM " +"segment size." +msgstr "" +"最初のPMM セグメントのサイズを設定します。設定されなかった場合、PMM セグメン" +"トサイズの倍のサイズをデフォルト値として設定します。" + +msgid "Size to which cached files should be truncated" +msgstr "" + +msgid "Status" +msgstr "ステータス" + +msgid "Syslog facility" +msgstr "Syslog ファシリティ" + +msgid "" +"The interface on which Polipo will listen. To listen on all interfaces use " +"0.0.0.0 or :: (IPv6)." +msgstr "" +"Polipoが待ち受けを行うインターフェースです。0.0.0.0 または :: (IPv6) を設定し" +"た場合、全てのインターフェースで待ち受けを行います。" + +msgid "Time after which cached files will be deleted" +msgstr "" + +msgid "Time after which cached files will be truncated" +msgstr "" + +msgid "To enable PMM, PMM segment size must be set to some positive value." +msgstr "PMM を有効にする場合、PMM セグメントサイズには正の値を設定してください。" + +msgid "Truncate cache files size (in bytes)" +msgstr "" + +msgid "Truncate cache files time" +msgstr "" + +msgid "" +"Use of external storage device is recommended, because the log file is " +"written frequently and can grow considerably." +msgstr "" +"ログファイルは頻繁に更新されるため、外部デバイスに保存することを推奨します。" + +msgid "" +"When listen address is set to 0.0.0.0 or :: (IPv6), you must list clients " +"that are allowed to connect. The format is IP address or network address " +"(192.168.1.123, 192.168.1.0/24, 2001:660:116::/48 (IPv6))" +msgstr "" +"待ち受けアドレスを0.0.0.0 または :: (IPv6) に設定した場合、アクセスを許可する" +"クライアントアドレスを設定してください。設定フォーマットはIPアドレスかネット" +"ワークアドレスです。(例:192.168.1.123, 192.168.1.0/24, 2001:660:116::/48 " +"(IPv6))" + +msgid "enable" +msgstr "サービスを有効にする" diff --git a/applications/luci-app-polipo/po/ms/polipo.po b/applications/luci-app-polipo/po/ms/polipo.po new file mode 100644 index 000000000..7517dccfa --- /dev/null +++ b/applications/luci-app-polipo/po/ms/polipo.po @@ -0,0 +1,201 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "Advanced Settings" +msgstr "" + +msgid "Allowed clients" +msgstr "" + +msgid "Always use system DNS resolver" +msgstr "" + +msgid "" +"Basic HTTP authentication supported. Provide username and password in " +"username:password format." +msgstr "" + +msgid "Configuration" +msgstr "" + +msgid "DNS and Query Settings" +msgstr "" + +msgid "DNS server address" +msgstr "" + +msgid "Delete cache files time" +msgstr "" + +msgid "Disk cache location" +msgstr "" + +msgid "Do not query IPv6" +msgstr "" + +msgid "Enable if cache (proxy) is shared by multiple users." +msgstr "" + +msgid "First PMM segment size (in bytes)" +msgstr "" + +msgid "General Settings" +msgstr "" + +msgid "How much RAM should Polipo use for its cache." +msgstr "" + +msgid "In RAM cache size (in bytes)" +msgstr "" + +msgid "Listen address" +msgstr "" + +msgid "Listen port" +msgstr "" + +msgid "" +"Location where polipo will cache files permanently. Use of external storage " +"devices is recommended, because the cache can grow considerably. Leave it " +"empty to disable on-disk cache." +msgstr "" + +msgid "Log file location" +msgstr "" + +msgid "Log to syslog" +msgstr "" + +msgid "Logging and RAM" +msgstr "" + +msgid "Never use system DNS resolver" +msgstr "" + +msgid "On-Disk Cache" +msgstr "" + +msgid "PMM segments size (in bytes)" +msgstr "" + +msgid "Parent Proxy" +msgstr "" + +msgid "Parent proxy address" +msgstr "" + +msgid "" +"Parent proxy address (in host:port format), to which Polipo will forward the " +"requests." +msgstr "" + +msgid "Parent proxy authentication" +msgstr "" + +msgid "Polipo" +msgstr "" + +msgid "Polipo Status" +msgstr "" + +msgid "Polipo is a small and fast caching web proxy." +msgstr "" + +msgid "Poor Man's Multiplexing" +msgstr "" + +msgid "" +"Poor Man's Multiplexing (PMM) is a technique that simulates multiplexing by " +"requesting an instance in multiple segments. It tries to lower the latency " +"caused by the weakness of HTTP protocol. NOTE: some sites may not work with " +"PMM enabled." +msgstr "" + +msgid "Port on which Polipo will listen" +msgstr "" + +msgid "Proxy" +msgstr "" + +msgid "Query DNS by hostname" +msgstr "" + +msgid "Query DNS directly, fallback to system resolver" +msgstr "" + +msgid "Query DNS directly, for unknown hosts fall back to system resolver" +msgstr "" + +msgid "Query DNS for IPv6" +msgstr "" + +msgid "Query IPv4 and IPv6, prefer IPv4" +msgstr "" + +msgid "Query IPv4 and IPv6, prefer IPv6" +msgstr "" + +msgid "Query only IPv6" +msgstr "" + +msgid "" +"Set the DNS server address to use, if you want Polipo to use different DNS " +"server than the host system." +msgstr "" + +msgid "Shared cache" +msgstr "" + +msgid "" +"Size of the first PMM segment. If not defined, it defaults to twice the PMM " +"segment size." +msgstr "" + +msgid "Size to which cached files should be truncated" +msgstr "" + +msgid "Status" +msgstr "" + +msgid "Syslog facility" +msgstr "" + +msgid "" +"The interface on which Polipo will listen. To listen on all interfaces use " +"0.0.0.0 or :: (IPv6)." +msgstr "" + +msgid "Time after which cached files will be deleted" +msgstr "" + +msgid "Time after which cached files will be truncated" +msgstr "" + +msgid "To enable PMM, PMM segment size must be set to some positive value." +msgstr "" + +msgid "Truncate cache files size (in bytes)" +msgstr "" + +msgid "Truncate cache files time" +msgstr "" + +msgid "" +"Use of external storage device is recommended, because the log file is " +"written frequently and can grow considerably." +msgstr "" + +msgid "" +"When listen address is set to 0.0.0.0 or :: (IPv6), you must list clients " +"that are allowed to connect. The format is IP address or network address " +"(192.168.1.123, 192.168.1.0/24, 2001:660:116::/48 (IPv6))" +msgstr "" + +msgid "enable" +msgstr "" diff --git a/applications/luci-app-polipo/po/no/polipo.po b/applications/luci-app-polipo/po/no/polipo.po new file mode 100644 index 000000000..931228e5b --- /dev/null +++ b/applications/luci-app-polipo/po/no/polipo.po @@ -0,0 +1,202 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "Advanced Settings" +msgstr "" + +msgid "Allowed clients" +msgstr "" + +msgid "Always use system DNS resolver" +msgstr "" + +msgid "" +"Basic HTTP authentication supported. Provide username and password in " +"username:password format." +msgstr "" + +msgid "Configuration" +msgstr "" + +msgid "DNS and Query Settings" +msgstr "" + +msgid "DNS server address" +msgstr "" + +msgid "Delete cache files time" +msgstr "" + +msgid "Disk cache location" +msgstr "" + +msgid "Do not query IPv6" +msgstr "" + +msgid "Enable if cache (proxy) is shared by multiple users." +msgstr "" + +msgid "First PMM segment size (in bytes)" +msgstr "" + +msgid "General Settings" +msgstr "" + +msgid "How much RAM should Polipo use for its cache." +msgstr "" + +msgid "In RAM cache size (in bytes)" +msgstr "" + +msgid "Listen address" +msgstr "" + +msgid "Listen port" +msgstr "" + +msgid "" +"Location where polipo will cache files permanently. Use of external storage " +"devices is recommended, because the cache can grow considerably. Leave it " +"empty to disable on-disk cache." +msgstr "" + +msgid "Log file location" +msgstr "" + +msgid "Log to syslog" +msgstr "" + +msgid "Logging and RAM" +msgstr "" + +msgid "Never use system DNS resolver" +msgstr "" + +msgid "On-Disk Cache" +msgstr "" + +msgid "PMM segments size (in bytes)" +msgstr "" + +msgid "Parent Proxy" +msgstr "" + +msgid "Parent proxy address" +msgstr "" + +msgid "" +"Parent proxy address (in host:port format), to which Polipo will forward the " +"requests." +msgstr "" + +msgid "Parent proxy authentication" +msgstr "" + +msgid "Polipo" +msgstr "" + +msgid "Polipo Status" +msgstr "" + +msgid "Polipo is a small and fast caching web proxy." +msgstr "" + +msgid "Poor Man's Multiplexing" +msgstr "" + +msgid "" +"Poor Man's Multiplexing (PMM) is a technique that simulates multiplexing by " +"requesting an instance in multiple segments. It tries to lower the latency " +"caused by the weakness of HTTP protocol. NOTE: some sites may not work with " +"PMM enabled." +msgstr "" + +msgid "Port on which Polipo will listen" +msgstr "" + +msgid "Proxy" +msgstr "" + +msgid "Query DNS by hostname" +msgstr "" + +msgid "Query DNS directly, fallback to system resolver" +msgstr "" + +msgid "Query DNS directly, for unknown hosts fall back to system resolver" +msgstr "" + +msgid "Query DNS for IPv6" +msgstr "" + +msgid "Query IPv4 and IPv6, prefer IPv4" +msgstr "" + +msgid "Query IPv4 and IPv6, prefer IPv6" +msgstr "" + +msgid "Query only IPv6" +msgstr "" + +msgid "" +"Set the DNS server address to use, if you want Polipo to use different DNS " +"server than the host system." +msgstr "" + +msgid "Shared cache" +msgstr "" + +msgid "" +"Size of the first PMM segment. If not defined, it defaults to twice the PMM " +"segment size." +msgstr "" + +msgid "Size to which cached files should be truncated" +msgstr "" + +msgid "Status" +msgstr "" + +msgid "Syslog facility" +msgstr "" + +msgid "" +"The interface on which Polipo will listen. To listen on all interfaces use " +"0.0.0.0 or :: (IPv6)." +msgstr "" + +msgid "Time after which cached files will be deleted" +msgstr "" + +msgid "Time after which cached files will be truncated" +msgstr "" + +msgid "To enable PMM, PMM segment size must be set to some positive value." +msgstr "" + +msgid "Truncate cache files size (in bytes)" +msgstr "" + +msgid "Truncate cache files time" +msgstr "" + +msgid "" +"Use of external storage device is recommended, because the log file is " +"written frequently and can grow considerably." +msgstr "" + +msgid "" +"When listen address is set to 0.0.0.0 or :: (IPv6), you must list clients " +"that are allowed to connect. The format is IP address or network address " +"(192.168.1.123, 192.168.1.0/24, 2001:660:116::/48 (IPv6))" +msgstr "" + +msgid "enable" +msgstr "" diff --git a/applications/luci-app-polipo/po/pl/polipo.po b/applications/luci-app-polipo/po/pl/polipo.po new file mode 100644 index 000000000..698edc98c --- /dev/null +++ b/applications/luci-app-polipo/po/pl/polipo.po @@ -0,0 +1,231 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2013-01-06 22:57+0200\n" +"Last-Translator: obsy <cezary@eko.one.pl>\n" +"Language-Team: none\n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" +"X-Generator: Pootle 2.0.6\n" + +msgid "Advanced Settings" +msgstr "Ustawienia zaawansowane" + +msgid "Allowed clients" +msgstr "Dozwolone klienty" + +msgid "Always use system DNS resolver" +msgstr "Zawsze używaj systemowej obsługi DNS" + +msgid "" +"Basic HTTP authentication supported. Provide username and password in " +"username:password format." +msgstr "" +"Obsługiwana podstawowa autoryzacja HTTP. Podaj nazwę użytkownika i hasło w " +"formie username:hasło." + +msgid "Configuration" +msgstr "Konfiguracja" + +msgid "DNS and Query Settings" +msgstr "Ustawienia DNS i zapytań" + +msgid "DNS server address" +msgstr "Adres serwera DNS" + +msgid "Delete cache files time" +msgstr "Czas usuwania plików cache" + +msgid "Disk cache location" +msgstr "Położenie cache na dysku" + +msgid "Do not query IPv6" +msgstr "Nie wykonuj zapytań IPv6" + +msgid "Enable if cache (proxy) is shared by multiple users." +msgstr "Włącz, aby cache (proxy) był współdzielony przez wielu użytkowników." + +msgid "First PMM segment size (in bytes)" +msgstr "Rozmiar pierwszego segmentu PMM (w bajtach)" + +msgid "General Settings" +msgstr "Ustawienia ogólne" + +msgid "How much RAM should Polipo use for its cache." +msgstr "Ile pamięci RAM powinien używać Polipo jako cache." + +msgid "In RAM cache size (in bytes)" +msgstr "Rozmiar cache w RAM (w bajtach)" + +msgid "Listen address" +msgstr "Nasłuchuj adres" + +msgid "Listen port" +msgstr "Nasłuchuj port" + +msgid "" +"Location where polipo will cache files permanently. Use of external storage " +"devices is recommended, because the cache can grow considerably. Leave it " +"empty to disable on-disk cache." +msgstr "" +"Miejsce, w którym Polipo będzie przechowywać pliki cache na stałe. Użycie " +"zewnętrznego magazynu jest zalecane. Cache może się poważnie zwiększyć. " +"Pozostaw puste, aby wyłączyć cache na dysku." + +msgid "Log file location" +msgstr "Katalog logów" + +msgid "Log to syslog" +msgstr "Loguj do logu systemowego (syslog)" + +msgid "Logging and RAM" +msgstr "Dziennik i RAM" + +msgid "Never use system DNS resolver" +msgstr "Nigdy nie używaj systemowej obsługi DNS" + +msgid "On-Disk Cache" +msgstr "Cache na dysku" + +msgid "PMM segments size (in bytes)" +msgstr "Rozmiar segmentu PMM (w bajtach)" + +msgid "Parent Proxy" +msgstr "Nadrzędne proxy" + +msgid "Parent proxy address" +msgstr "Adres nadrzędnego proxy" + +msgid "" +"Parent proxy address (in host:port format), to which Polipo will forward the " +"requests." +msgstr "" +"Adres nadrzędnego proxy (podany jako host:port), do którego Polipo będzie " +"przekierowywać żądania." + +msgid "Parent proxy authentication" +msgstr "Autoryzacja nadrzędnego proxy" + +msgid "Polipo" +msgstr "Polipo" + +msgid "Polipo Status" +msgstr "Status Polipo" + +msgid "Polipo is a small and fast caching web proxy." +msgstr "Polipo jest małym i szybkim web proxy z obsługą cache." + +# "Multipleksowanie Biedaka" brzmi fajniej, ale nie chcę mieć usuniętego konta. +msgid "Poor Man's Multiplexing" +msgstr "Poor Man's Multiplexing" + +msgid "" +"Poor Man's Multiplexing (PMM) is a technique that simulates multiplexing by " +"requesting an instance in multiple segments. It tries to lower the latency " +"caused by the weakness of HTTP protocol. NOTE: some sites may not work with " +"PMM enabled." +msgstr "" +"Poor Man's Multiplexing (PMM) to technika symulująca multipleksowanie " +"poprzez żądanie instancji w wielu segmentach. Próbuje obniżyć opóźnienia " +"spowodowane wadami protokołu HTTP. UWAGA: niektóre strony mogą nie działać " +"przy włączonym PMM!" + +msgid "Port on which Polipo will listen" +msgstr "Port, na którym Polipo będzie nasłuchiwać." + +msgid "Proxy" +msgstr "Proxy" + +msgid "Query DNS by hostname" +msgstr "Zapytanie DNS po nazwie hosta" + +msgid "Query DNS directly, fallback to system resolver" +msgstr "Odpytuj DNS bezpośrednio, powracając do resolvera systemu" + +msgid "Query DNS directly, for unknown hosts fall back to system resolver" +msgstr "" +"Odpytuj DNS bezpośrednio, dla nieznanych hostów powróć do resolvera systemu" + +msgid "Query DNS for IPv6" +msgstr "Zapytanie DNS dla IPv6" + +msgid "Query IPv4 and IPv6, prefer IPv4" +msgstr "Zapytanie DNS dla IPv4 i IPv6, preferowane IPv4" + +msgid "Query IPv4 and IPv6, prefer IPv6" +msgstr "Zapytanie DNS dla IPv4 i IPv6, preferowane IPv6" + +msgid "Query only IPv6" +msgstr "Zapytanie tylko IPv6" + +msgid "" +"Set the DNS server address to use, if you want Polipo to use different DNS " +"server than the host system." +msgstr "" +"Ustaw adres serwera DNS do użycia, jeśli chcesz aby Polipo używał innego " +"DNS`a niż system hosta." + +msgid "Shared cache" +msgstr "Cache udostępniany" + +msgid "" +"Size of the first PMM segment. If not defined, it defaults to twice the PMM " +"segment size." +msgstr "" +"Rozmiar PIERWSZEGO segmentu PMM. Jeśli nie zdefiniowano, jego domyślny " +"rozmiar to dwu-krotność rozmiaru segmentu PMM." + +msgid "Size to which cached files should be truncated" +msgstr "Rozmiar do którego pliki cache`owane mają być przycięte" + +msgid "Status" +msgstr "Status" + +msgid "Syslog facility" +msgstr "Funkcja (facility) loga systemowego" + +msgid "" +"The interface on which Polipo will listen. To listen on all interfaces use " +"0.0.0.0 or :: (IPv6)." +msgstr "" +"Interfejs na którym słucha proxy Polipo. Aby słuchać na wszystkich " +"interfejsach użyj 0.0.0.0 lub :: dla IPv6" + +msgid "Time after which cached files will be deleted" +msgstr "Czas po którym pliki cache będą skasowane" + +msgid "Time after which cached files will be truncated" +msgstr "Czas po którym pliki cache będą przycięte" + +msgid "To enable PMM, PMM segment size must be set to some positive value." +msgstr "" +"Aby włączyć PMM, rozmiar segmentu PMM musi mieć ustawioną wartość dodatnią." + +msgid "Truncate cache files size (in bytes)" +msgstr "Rozmiar przycinanych plików w cache(w bajtach)" + +msgid "Truncate cache files time" +msgstr "Czas przycinanych plików w cache" + +msgid "" +"Use of external storage device is recommended, because the log file is " +"written frequently and can grow considerably." +msgstr "" +"Użycie zewnętrznego nośnika danych wysoce zalecane, plik loga jest " +"zapisywany okresowo i może urosnąć znacząco." + +msgid "" +"When listen address is set to 0.0.0.0 or :: (IPv6), you must list clients " +"that are allowed to connect. The format is IP address or network address " +"(192.168.1.123, 192.168.1.0/24, 2001:660:116::/48 (IPv6))" +msgstr "" +"Jeśli adres nasłuchu ustawiony jest na 0.0.0.0 lub ::(IPv6), musisz " +"wyszczególnić klientów mających pozwolenie na połączenie. Format to adres IP " +"lub adres sieci (192.168.1.123, 192.168.1.0/24, 2001:660:116::/48 (IPv6))" + +msgid "enable" +msgstr "włączone" diff --git a/applications/luci-app-polipo/po/pt-br/polipo.po b/applications/luci-app-polipo/po/pt-br/polipo.po new file mode 100644 index 000000000..881d5c079 --- /dev/null +++ b/applications/luci-app-polipo/po/pt-br/polipo.po @@ -0,0 +1,306 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-06-10 03:41+0200\n" +"PO-Revision-Date: 2012-09-16 02:36+0200\n" +"Last-Translator: Julio Cezar <jsilvestree@gmail.com>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: Pootle 2.0.6\n" + +msgid "Advanced Settings" +msgstr "Opções Avançadas" + +msgid "Allowed clients" +msgstr "Clientes permitidos" + +msgid "Always use system DNS resolver" +msgstr "Sempre use o resolvedor de DNS do sistema" + +msgid "" +"Basic HTTP authentication supported. Provide username and password in " +"username:password format." +msgstr "" +"A autenticação básica HTTP é suportada. Indique o usuário e senha no formato " +"usuário:senha." + +msgid "Configuration" +msgstr "Configuração" + +msgid "DNS and Query Settings" +msgstr "Configurações de DNS e Consulta" + +msgid "DNS server address" +msgstr "Endereço do servidor DNS" + +msgid "Delete cache files time" +msgstr "Tempo para remoção dos arquivos de cache" + +msgid "Disk cache location" +msgstr "Localização da cache em disco" + +msgid "Do not query IPv6" +msgstr "Não consulte IPv6" + +msgid "Enable if cache (proxy) is shared by multiple users." +msgstr "Ativar se a cache (proxy) for compartilhada por múltiplos usuários." + +msgid "First PMM segment size (in bytes)" +msgstr "Tamanho do primeiro segmento PMM (em bytes)" + +msgid "General Settings" +msgstr "Configurações Gerais" + +msgid "How much RAM should Polipo use for its cache." +msgstr "Quanta memória RAM deverá ser usada pelo Polipo para a sua cache." + +msgid "In RAM cache size (in bytes)" +msgstr "Tamanho da cache na RAM (bytes)" + +msgid "Listen address" +msgstr "Endereço de escuta" + +msgid "Listen port" +msgstr "Porta de escuta" + +msgid "" +"Location where polipo will cache files permanently. Use of external storage " +"devices is recommended, because the cache can grow considerably. Leave it " +"empty to disable on-disk cache." +msgstr "" +"Local onde o polipo guardará permanentemente os arquivos de cache. É " +"recomendada a utilização de dispositivos de armazenamento externo uma vez " +"que o cache pode crescer consideravelmente. Deixe em branco para desativar a " +"cache em disco." + +msgid "Log file location" +msgstr "Localização do arquivo de registo" + +msgid "Log to syslog" +msgstr "Registar para o syslog" + +msgid "Logging and RAM" +msgstr "Registro e RAM" + +msgid "Never use system DNS resolver" +msgstr "Nunca use o resolvedor de DNS do sistema" + +msgid "On-Disk Cache" +msgstr "Cache em Disco" + +msgid "PMM segments size (in bytes)" +msgstr "Tamanho do segmento PMM (em bytes)" + +msgid "Parent Proxy" +msgstr "Porxy Superior" + +msgid "Parent proxy address" +msgstr "Endereço do proxy superior" + +msgid "" +"Parent proxy address (in host:port format), to which Polipo will forward the " +"requests." +msgstr "" +"Endereço do proxy superior (no formato host:porta), ao qual o Polipo irá " +"encaminhar os seus pedidos." + +msgid "Parent proxy authentication" +msgstr "Autenticação no proxy superior" + +msgid "Polipo" +msgstr "Polipo" + +msgid "Polipo Status" +msgstr "Estado do Polipo" + +msgid "Polipo is a small and fast caching web proxy." +msgstr "O polipo é um proxy web pequeno e rápido." + +msgid "Poor Man's Multiplexing" +msgstr "Multiplexagem simples" + +msgid "" +"Poor Man's Multiplexing (PMM) is a technique that simulates multiplexing by " +"requesting an instance in multiple segments. It tries to lower the latency " +"caused by the weakness of HTTP protocol. NOTE: some sites may not work with " +"PMM enabled." +msgstr "" +"A multiplexagem simples (PMM) consiste na simulação de multiplexagem através " +"da requisição de um pedido em múltiplos segmentos. O método tenta baixar a " +"latência causada pela fraqueza do protocolo HTTP. Nota: alguns sites web não " +"funcionam com a ativação de PMM." + +msgid "Port on which Polipo will listen" +msgstr "Porta na qual o Polipo irá escutar" + +msgid "Proxy" +msgstr "Proxy" + +msgid "Query DNS by hostname" +msgstr "Consultar DNS pelo nome do equipamento" + +msgid "Query DNS directly, fallback to system resolver" +msgstr "" +"Consulte o DNS diretamente. Alternativamente, use o resolvedor do sistema" + +msgid "Query DNS directly, for unknown hosts fall back to system resolver" +msgstr "" +"Consulte o DNS diretamente. Para nomes desconhecidos, use o resolvedor do " +"sistema" + +msgid "Query DNS for IPv6" +msgstr "Consultar DNS para IPv6" + +msgid "Query IPv4 and IPv6, prefer IPv4" +msgstr "Consulta IPv4 e IPv6, prefere IPv4" + +msgid "Query IPv4 and IPv6, prefer IPv6" +msgstr "Consulta IPv4 e IPv6, prefere IPv6" + +msgid "Query only IPv6" +msgstr "Consulta somente IPv6" + +msgid "" +"Set the DNS server address to use, if you want Polipo to use different DNS " +"server than the host system." +msgstr "" +"Define o endereço do servidor de DNS, caso pretenda que o polipo utilize um " +"servidor DNS diferente do utilizado pelo sistema." + +msgid "Shared cache" +msgstr "Cache compartilhada" + +msgid "" +"Size of the first PMM segment. If not defined, it defaults to twice the PMM " +"segment size." +msgstr "" +"Tamanho do primeiro segmento PMM. Se não estiver definido, reverte para o " +"dobro do tamanho do segmento PMM." + +msgid "Size to which cached files should be truncated" +msgstr "Tamanho que os arquivos de cache serão truncados" + +msgid "Status" +msgstr "Estado" + +msgid "Syslog facility" +msgstr "Categoria dos eventos Polipo no registo do sistema (syslog)" + +msgid "" +"The interface on which Polipo will listen. To listen on all interfaces use " +"0.0.0.0 or :: (IPv6)." +msgstr "" +"A interface na qual o Polipo será ativado. Para ativar em todas as " +"interfaces, use 0.0.0.0 ou :: (IPv6)." + +msgid "Time after which cached files will be deleted" +msgstr "Tempo máximo antes que um arquivo de cache seja apagado" + +msgid "Time after which cached files will be truncated" +msgstr "Tempo máximo antes que um arquivo de cache seja truncado" + +msgid "To enable PMM, PMM segment size must be set to some positive value." +msgstr "" +"Para habilitar o PMM, o tamanho do segmento PMM deve ser definido para algum " +"valor positivo." + +msgid "Truncate cache files size (in bytes)" +msgstr "Tamanho de truncagem dos arquivos de cache (em bytes)" + +msgid "Truncate cache files time" +msgstr "Tempo de truncagem dos arquivos de cache" + +msgid "" +"Use of external storage device is recommended, because the log file is " +"written frequently and can grow considerably." +msgstr "" +"É recomendado o uso de armazenamento de externos pois o arquivo de registro " +"é escrito frequentemente e pode crescer consideravelmente." + +msgid "" +"When listen address is set to 0.0.0.0 or :: (IPv6), you must list clients " +"that are allowed to connect. The format is IP address or network address " +"(192.168.1.123, 192.168.1.0/24, 2001:660:116::/48 (IPv6))" +msgstr "" +"Quando o endereço de escuta for definido como 0.0.0.0 ou :: (IPv6), é " +"necessário listar quais clientes são permitidos. O formato é o endereço IP " +"ou o endereço derede (192.168.1.123, 192.168.1.0/24, 2001:660:116::/48 " +"(IPv6))" + +msgid "enable" +msgstr "habilitado" + +#~ msgid "" +#~ "To enable polipo on-disk cache cleaning (highly recommended), you should " +#~ "add a cron job in Scheduled Tasks services that will execute /usr/sbin/" +#~ "polipo_purge script. For example to perform disk cache cleanup every day " +#~ "at 6:00 in the morning you should add the following line in Scheduled " +#~ "Tasks \"0 6 * * *\\t/usr/sbin/polipo_purge\" (without quotes)." +#~ msgstr "" +#~ "Para activar a limpeza de cache em disco (altamente recomendado), deve " +#~ "acrescentar uma tarefa cron (\"Serviços\") que execute o script /usr/sbin/" +#~ "polipo_purge. Como exemplo, para executar uma limpeza da cache " +#~ "diariamente pelas 06H00 deve acrescentar a seguinte linha: \"0 6 * * * /" +#~ "usr/sbin/polipo_purge\" (sem as aspas)." + +#~ msgid "" +#~ "Size to which cached files should be truncated. (default value: 1048576)" +#~ msgstr "" +#~ "Tamanho com o qual devem ser trancados os ficheiros da cache. (valor pre-" +#~ "definido: 1048576)" + +#~ msgid "" +#~ "Time after which cached files will be truncated. (default value: 4d12h)" +#~ msgstr "" +#~ "Tempo após o qual os ficheiros de cache serão trancados. (valor pre-" +#~ "definido: 4d12h)" + +#~ msgid "Time after which cached files will be deleted. (default value: 32d)" +#~ msgstr "" +#~ "Tempo apos o qual os ficheiros de cache serão removidos. (valor pré-" +#~ "definido: 32d)" + +#~ msgid "General" +#~ msgstr "Geral" + +#~ msgid "" +#~ "When listen address is set to 0.0.0.0 or :: (IPv6), you must list clients " +#~ "that are allowed to connect. The format is IP address or network address " +#~ "(192.168.1.123, 192.168.1.0/24, 2001:660:116::/48 (IPv6))." +#~ msgstr "" +#~ "Quando o endereço de listen fôr 0.0.0.0 (IPv4) ou :: (IPv6), deve listar " +#~ "os clientes que tiverem permissão para ligação. O formato é endereço de " +#~ "host ou endereço de rede (192.168.1.123, 192.168.1.0/24, " +#~ "2001:660:116::/48 (IPv6))." + +#~ msgid "" +#~ "false = Do not query IPv6; reluctantly = Query both, prefer IPv4; happily " +#~ "= Query both, prefer IPv6; true = Query only IPv6" +#~ msgstr "" +#~ "false = Não pedir IPv6; reluctantly=Pedir ambos e preferir IPv4; " +#~ "happily=Pedir ambos, preferir IPv6; true=Pedir apenas IPv6" + +#~ msgid "" +#~ "false = Never use system DNS resolver; reluctantly = Query DNS directly, " +#~ "if DNS server is unavailable fail to system DNS resolver; happily = Query " +#~ "DNS directly, if host could not be found fallback to system DNS resolver; " +#~ "true = Always use system DNS resolver" +#~ msgstr "" +#~ "false=nunca usar o resolver do sistema; reluctantly=pedir DNS " +#~ "directamente, se o servidor DNS estiver indisponivel recorrer do resolver " +#~ "DNS do sistema; happily=pedir DNS directamente, se o host nao for " +#~ "encontrado, recorrer ao resolver DNS do sistema; true=Usar sempre o " +#~ "resolver DNS do sistema" + +#~ msgid "Port on which Polipo will listen. (default value: 8123)" +#~ msgstr "Porta local na qual o polipo será activado. (pre-definido: 8123)" + +#~ msgid "polipo_pmm_pmmsize_desc" +#~ msgstr "" +#~ "Para activar PMM, o tamanho do segmento PMM deve ser definido para um " +#~ "qualquer valor positivo." diff --git a/applications/luci-app-polipo/po/pt/polipo.po b/applications/luci-app-polipo/po/pt/polipo.po new file mode 100644 index 000000000..cdce586d9 --- /dev/null +++ b/applications/luci-app-polipo/po/pt/polipo.po @@ -0,0 +1,305 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-05-26 19:03+0200\n" +"PO-Revision-Date: 2013-06-02 19:10+0200\n" +"Last-Translator: joao.f.vieira <joao.f.vieira@gmail.com>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: pt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Pootle 2.0.6\n" + +msgid "Advanced Settings" +msgstr "Definições avançadas" + +msgid "Allowed clients" +msgstr "Clientes permitidos" + +msgid "Always use system DNS resolver" +msgstr "Usar sempre o resolvedor DNS de Sistema" + +msgid "" +"Basic HTTP authentication supported. Provide username and password in " +"username:password format." +msgstr "" +"É suportada a autenticação basica HTTP. Indique username e password no " +"formato username:password." + +msgid "Configuration" +msgstr "Configuração" + +msgid "DNS and Query Settings" +msgstr "Definições de DNS e de Consulta" + +msgid "DNS server address" +msgstr "Endereço do servidor DNS" + +msgid "Delete cache files time" +msgstr "Tempo para remoção dos ficheiros de cache" + +msgid "Disk cache location" +msgstr "Localização da cache em disco" + +msgid "Do not query IPv6" +msgstr "Não consulta o IPv6" + +msgid "Enable if cache (proxy) is shared by multiple users." +msgstr "Activar se a cache (proxy) for partilhada por multiplos utilizadores." + +msgid "First PMM segment size (in bytes)" +msgstr "Tamanho do primeiro segmento PMM (em bytes)" + +msgid "General Settings" +msgstr "Definições Gerais" + +msgid "How much RAM should Polipo use for its cache." +msgstr "Quanta memória RAM deverá ser usada pelo polipo para cache." + +msgid "In RAM cache size (in bytes)" +msgstr "Tamanho da cache em RAM (bytes)" + +msgid "Listen address" +msgstr "Endereço de escuta" + +msgid "Listen port" +msgstr "Porta de escuta" + +msgid "" +"Location where polipo will cache files permanently. Use of external storage " +"devices is recommended, because the cache can grow considerably. Leave it " +"empty to disable on-disk cache." +msgstr "" +"Local onde o polipo guardará permanentemente os ficheiros de cache. É " +"recomendada a utilização de dispositivos de armazenamento remoto devido ao " +"grande crescimento da cache. Deixe em branco para desactivar a cache em " +"disco." + +msgid "Log file location" +msgstr "Localização do ficheiro de registo" + +msgid "Log to syslog" +msgstr "Registar para o syslog" + +msgid "Logging and RAM" +msgstr "RAM e Logging" + +msgid "Never use system DNS resolver" +msgstr "Nunca usar o DNS de sistema" + +msgid "On-Disk Cache" +msgstr "Cache em disco" + +msgid "PMM segments size (in bytes)" +msgstr "Tamanho do segmento PMM (em bytes)" + +msgid "Parent Proxy" +msgstr "Proxy Superior" + +msgid "Parent proxy address" +msgstr "Endereço do proxy de hierarquia superior." + +msgid "" +"Parent proxy address (in host:port format), to which Polipo will forward the " +"requests." +msgstr "" +"Endereço do proxy de hierarquia superior (no formato host:porta), ao qual o " +"polipo irá encaminhar os seus pedidos." + +msgid "Parent proxy authentication" +msgstr "Autenticação em cache de hierarquia superior" + +msgid "Polipo" +msgstr "Polipo" + +msgid "Polipo Status" +msgstr "Estado do Polipo" + +msgid "Polipo is a small and fast caching web proxy." +msgstr "O polipo é um proxy web ligeiro e rápido." + +msgid "Poor Man's Multiplexing" +msgstr "Multiplexagem simples" + +msgid "" +"Poor Man's Multiplexing (PMM) is a technique that simulates multiplexing by " +"requesting an instance in multiple segments. It tries to lower the latency " +"caused by the weakness of HTTP protocol. NOTE: some sites may not work with " +"PMM enabled." +msgstr "" +"A multiplexagem simples (PMM) consiste na simulação de multiplexagem através " +"da requesição de um pedido em multiplos segmentos. O método tenta baixar a " +"latencia causada pela debilidade do protocolo HTTP. Nota: alguns sites web " +"não funcionam com a activação de PMM." + +msgid "Port on which Polipo will listen" +msgstr "Porta na qual o Polipo irá escutar" + +msgid "Proxy" +msgstr "Proxy" + +msgid "Query DNS by hostname" +msgstr "Pedidos ao DNS através de hostname" + +msgid "Query DNS directly, fallback to system resolver" +msgstr "Consultar o DNS diretamente, voltar à resolução de nomes do sistema" + +msgid "Query DNS directly, for unknown hosts fall back to system resolver" +msgstr "" +"Consultar o DNS diretamente, para hosts desconhecidos voltar à resolução de " +"nomes de sistema" + +msgid "Query DNS for IPv6" +msgstr "Consultar DNS para o IPv6" + +msgid "Query IPv4 and IPv6, prefer IPv4" +msgstr "Consultar IPv4 e IPv6, preferência por IPv4" + +msgid "Query IPv4 and IPv6, prefer IPv6" +msgstr "Consultar IPv4 e IPv6, preferência por IPv6" + +msgid "Query only IPv6" +msgstr "Consultar apenas IPv6" + +msgid "" +"Set the DNS server address to use, if you want Polipo to use different DNS " +"server than the host system." +msgstr "" +"Define o endereço do servidor de DNS a usar, caso pretenda que o polipo " +"utilize um servidor alternativo ao do sistema." + +msgid "Shared cache" +msgstr "Cache partilhada" + +msgid "" +"Size of the first PMM segment. If not defined, it defaults to twice the PMM " +"segment size." +msgstr "" +"Tamanho do primeiro segmento PMM. Se não estiver definido, reverte para o " +"dobro do tamanho do segmento PMM." + +msgid "Size to which cached files should be truncated" +msgstr "Tamanho a partir do qual os ficheiro em cache devem ser truncados" + +msgid "Status" +msgstr "Estado" + +msgid "Syslog facility" +msgstr "Categoria dos eventos polipo no registo do sistema" + +msgid "" +"The interface on which Polipo will listen. To listen on all interfaces use " +"0.0.0.0 or :: (IPv6)." +msgstr "" +"O interface no qual o polipo será activado. Para activar em todos os " +"endereços, use 0.0.0.0 ou :: (IPv6)." + +msgid "Time after which cached files will be deleted" +msgstr "Tempo após o qual os ficheiro em cache devem ser eliminados" + +msgid "Time after which cached files will be truncated" +msgstr "Tempo após o qual os ficheiro em cache devem ser truncados" + +msgid "To enable PMM, PMM segment size must be set to some positive value." +msgstr "" +"Para ativar PMM, o tamanho do segmento PMM tem de ser definido para um valor " +"positivo." + +msgid "Truncate cache files size (in bytes)" +msgstr "Tamanho de trancagem dos ficheiros de cache (bytes)" + +msgid "Truncate cache files time" +msgstr "Tempo de trancagem dos ficheiros de cache" + +msgid "" +"Use of external storage device is recommended, because the log file is " +"written frequently and can grow considerably." +msgstr "" +"É recomendado o recurso a sistemas de armazenamento de ficheiros externos, " +"devido ao rápido crescimento do ficheiro de registo." + +msgid "" +"When listen address is set to 0.0.0.0 or :: (IPv6), you must list clients " +"that are allowed to connect. The format is IP address or network address " +"(192.168.1.123, 192.168.1.0/24, 2001:660:116::/48 (IPv6))" +msgstr "" +"Quando o endereço de escuta está definido como 0.0.0.0 ou :: (IPv6), tem de " +"listar os clientes que estão autorizados a ligar. O formato do endereço IP " +"ou o endereço de rede (192.168.1.123, 192.168.1.0/24, 2001:660:116::/48 " +"(IPv6))" + +msgid "enable" +msgstr "ativar" + +#~ msgid "" +#~ "To enable polipo on-disk cache cleaning (highly recommended), you should " +#~ "add a cron job in Scheduled Tasks services that will execute /usr/sbin/" +#~ "polipo_purge script. For example to perform disk cache cleanup every day " +#~ "at 6:00 in the morning you should add the following line in Scheduled " +#~ "Tasks \"0 6 * * *\\t/usr/sbin/polipo_purge\" (without quotes)." +#~ msgstr "" +#~ "Para activar a limpeza de cache em disco (altamente recomendado), deve " +#~ "acrescentar uma tarefa cron (\"Serviços\") que execute o script /usr/sbin/" +#~ "polipo_purge. Como exemplo, para executar uma limpeza da cache " +#~ "diariamente pelas 06H00 deve acrescentar a seguinte linha: \"0 6 * * * /" +#~ "usr/sbin/polipo_purge\" (sem as aspas)." + +#~ msgid "" +#~ "Size to which cached files should be truncated. (default value: 1048576)" +#~ msgstr "" +#~ "Tamanho com o qual devem ser trancados os ficheiros da cache. (valor pre-" +#~ "definido: 1048576)" + +#~ msgid "" +#~ "Time after which cached files will be truncated. (default value: 4d12h)" +#~ msgstr "" +#~ "Tempo após o qual os ficheiros de cache serão trancados. (valor pre-" +#~ "definido: 4d12h)" + +#~ msgid "Time after which cached files will be deleted. (default value: 32d)" +#~ msgstr "" +#~ "Tempo apos o qual os ficheiros de cache serão removidos. (valor pré-" +#~ "definido: 32d)" + +#~ msgid "General" +#~ msgstr "Geral" + +#~ msgid "" +#~ "When listen address is set to 0.0.0.0 or :: (IPv6), you must list clients " +#~ "that are allowed to connect. The format is IP address or network address " +#~ "(192.168.1.123, 192.168.1.0/24, 2001:660:116::/48 (IPv6))." +#~ msgstr "" +#~ "Quando o endereço de listen fôr 0.0.0.0 (IPv4) ou :: (IPv6), deve listar " +#~ "os clientes que tiverem permissão para ligação. O formato é endereço de " +#~ "host ou endereço de rede (192.168.1.123, 192.168.1.0/24, " +#~ "2001:660:116::/48 (IPv6))." + +#~ msgid "" +#~ "false = Do not query IPv6; reluctantly = Query both, prefer IPv4; happily " +#~ "= Query both, prefer IPv6; true = Query only IPv6" +#~ msgstr "" +#~ "false = Não pedir IPv6; reluctantly=Pedir ambos e preferir IPv4; " +#~ "happily=Pedir ambos, preferir IPv6; true=Pedir apenas IPv6" + +#~ msgid "" +#~ "false = Never use system DNS resolver; reluctantly = Query DNS directly, " +#~ "if DNS server is unavailable fail to system DNS resolver; happily = Query " +#~ "DNS directly, if host could not be found fallback to system DNS resolver; " +#~ "true = Always use system DNS resolver" +#~ msgstr "" +#~ "false=nunca usar o resolver do sistema; reluctantly=pedir DNS " +#~ "directamente, se o servidor DNS estiver indisponivel recorrer do resolver " +#~ "DNS do sistema; happily=pedir DNS directamente, se o host nao for " +#~ "encontrado, recorrer ao resolver DNS do sistema; true=Usar sempre o " +#~ "resolver DNS do sistema" + +#~ msgid "Port on which Polipo will listen. (default value: 8123)" +#~ msgstr "Porta local na qual o polipo será activado. (pre-definido: 8123)" + +#~ msgid "polipo_pmm_pmmsize_desc" +#~ msgstr "" +#~ "Para activar PMM, o tamanho do segmento PMM deve ser definido para um " +#~ "qualquer valor positivo." diff --git a/applications/luci-app-polipo/po/ro/polipo.po b/applications/luci-app-polipo/po/ro/polipo.po new file mode 100644 index 000000000..2c2710a14 --- /dev/null +++ b/applications/luci-app-polipo/po/ro/polipo.po @@ -0,0 +1,206 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2014-06-28 18:42+0200\n" +"Last-Translator: xxvirusxx <condor20_05@yahoo.it>\n" +"Language-Team: none\n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " +"20)) ? 1 : 2);;\n" +"X-Generator: Pootle 2.0.6\n" + +msgid "Advanced Settings" +msgstr "Setări avansate" + +msgid "Allowed clients" +msgstr "" + +msgid "Always use system DNS resolver" +msgstr "" + +msgid "" +"Basic HTTP authentication supported. Provide username and password in " +"username:password format." +msgstr "" + +msgid "Configuration" +msgstr "" + +msgid "DNS and Query Settings" +msgstr "" + +msgid "DNS server address" +msgstr "" + +msgid "Delete cache files time" +msgstr "" + +msgid "Disk cache location" +msgstr "" + +msgid "Do not query IPv6" +msgstr "" + +msgid "Enable if cache (proxy) is shared by multiple users." +msgstr "" + +msgid "First PMM segment size (in bytes)" +msgstr "" + +msgid "General Settings" +msgstr "" + +msgid "How much RAM should Polipo use for its cache." +msgstr "" + +msgid "In RAM cache size (in bytes)" +msgstr "" + +msgid "Listen address" +msgstr "" + +msgid "Listen port" +msgstr "" + +msgid "" +"Location where polipo will cache files permanently. Use of external storage " +"devices is recommended, because the cache can grow considerably. Leave it " +"empty to disable on-disk cache." +msgstr "" + +msgid "Log file location" +msgstr "" + +msgid "Log to syslog" +msgstr "" + +msgid "Logging and RAM" +msgstr "" + +msgid "Never use system DNS resolver" +msgstr "" + +msgid "On-Disk Cache" +msgstr "" + +msgid "PMM segments size (in bytes)" +msgstr "" + +msgid "Parent Proxy" +msgstr "" + +msgid "Parent proxy address" +msgstr "" + +msgid "" +"Parent proxy address (in host:port format), to which Polipo will forward the " +"requests." +msgstr "" + +msgid "Parent proxy authentication" +msgstr "" + +msgid "Polipo" +msgstr "" + +msgid "Polipo Status" +msgstr "" + +msgid "Polipo is a small and fast caching web proxy." +msgstr "" + +msgid "Poor Man's Multiplexing" +msgstr "" + +msgid "" +"Poor Man's Multiplexing (PMM) is a technique that simulates multiplexing by " +"requesting an instance in multiple segments. It tries to lower the latency " +"caused by the weakness of HTTP protocol. NOTE: some sites may not work with " +"PMM enabled." +msgstr "" + +msgid "Port on which Polipo will listen" +msgstr "" + +msgid "Proxy" +msgstr "" + +msgid "Query DNS by hostname" +msgstr "" + +msgid "Query DNS directly, fallback to system resolver" +msgstr "" + +msgid "Query DNS directly, for unknown hosts fall back to system resolver" +msgstr "" + +msgid "Query DNS for IPv6" +msgstr "" + +msgid "Query IPv4 and IPv6, prefer IPv4" +msgstr "" + +msgid "Query IPv4 and IPv6, prefer IPv6" +msgstr "" + +msgid "Query only IPv6" +msgstr "" + +msgid "" +"Set the DNS server address to use, if you want Polipo to use different DNS " +"server than the host system." +msgstr "" + +msgid "Shared cache" +msgstr "" + +msgid "" +"Size of the first PMM segment. If not defined, it defaults to twice the PMM " +"segment size." +msgstr "" + +msgid "Size to which cached files should be truncated" +msgstr "" + +msgid "Status" +msgstr "" + +msgid "Syslog facility" +msgstr "" + +msgid "" +"The interface on which Polipo will listen. To listen on all interfaces use " +"0.0.0.0 or :: (IPv6)." +msgstr "" + +msgid "Time after which cached files will be deleted" +msgstr "" + +msgid "Time after which cached files will be truncated" +msgstr "" + +msgid "To enable PMM, PMM segment size must be set to some positive value." +msgstr "" + +msgid "Truncate cache files size (in bytes)" +msgstr "" + +msgid "Truncate cache files time" +msgstr "" + +msgid "" +"Use of external storage device is recommended, because the log file is " +"written frequently and can grow considerably." +msgstr "" + +msgid "" +"When listen address is set to 0.0.0.0 or :: (IPv6), you must list clients " +"that are allowed to connect. The format is IP address or network address " +"(192.168.1.123, 192.168.1.0/24, 2001:660:116::/48 (IPv6))" +msgstr "" + +msgid "enable" +msgstr "" diff --git a/applications/luci-app-polipo/po/ru/polipo.po b/applications/luci-app-polipo/po/ru/polipo.po new file mode 100644 index 000000000..f1d49688a --- /dev/null +++ b/applications/luci-app-polipo/po/ru/polipo.po @@ -0,0 +1,237 @@ +msgid "" +msgstr "" +"Project-Id-Version: LuCI: polipo\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-05-19 19:36+0200\n" +"PO-Revision-Date: 2012-08-15 17:51+0300\n" +"Last-Translator: Roman A. aka BasicXP <x12ozmouse@ya.ru>\n" +"Language-Team: Russian <x12ozmouse@ya.ru>\n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: Pootle 2.0.4\n" +"X-Poedit-SourceCharset: UTF-8\n" + +msgid "Advanced Settings" +msgstr "Расширенные настройки" + +msgid "Allowed clients" +msgstr "Разрешённые клиенты" + +msgid "Always use system DNS resolver" +msgstr "Всегда использовать системный DNS-клиент" + +msgid "" +"Basic HTTP authentication supported. Provide username and password in " +"username:password format." +msgstr "" +"Поддерживается базовая HTTP-аутентификация. Введите имя пользователя и " +"пароль в формате имя:пароль." + +msgid "Configuration" +msgstr "Конфигурация" + +msgid "DNS and Query Settings" +msgstr "Настройки DNS" + +msgid "DNS server address" +msgstr "Адрес DNS-сервера" + +msgid "Delete cache files time" +msgstr "Время удаления кэш-файлов" + +msgid "Disk cache location" +msgstr "Местоположение кэша" + +msgid "Do not query IPv6" +msgstr "Не запрашивать IPv6" + +msgid "Enable if cache (proxy) is shared by multiple users." +msgstr "" +"Включите, если вы хотите, чтобы кэш (прокси) был общим для нескольких " +"пользователей." + +msgid "First PMM segment size (in bytes)" +msgstr "Размер первого PMM-сегмента (в байтах)" + +msgid "General Settings" +msgstr "Общие настройки" + +msgid "How much RAM should Polipo use for its cache." +msgstr "Количество RAM, отведенное для кеша." + +msgid "In RAM cache size (in bytes)" +msgstr "Размер кэша в RAM (в байтах)" + +msgid "Listen address" +msgstr "Адрес для входящих соединений" + +msgid "Listen port" +msgstr "Порт для входящих соединений" + +msgid "" +"Location where polipo will cache files permanently. Use of external storage " +"devices is recommended, because the cache can grow considerably. Leave it " +"empty to disable on-disk cache." +msgstr "" +"Директория, где Polipo хранит кэш-файлы. Рекомендуется использовать внешнее " +"хранилище, так как размер кэша может увеличиваться. Оставьте пустым, чтобы " +"отключить хранение кэша на диске." + +msgid "Log file location" +msgstr "Местоположение файла журнала" + +msgid "Log to syslog" +msgstr "Записывать сообщения в системный журнал" + +msgid "Logging and RAM" +msgstr "Журналирование и RAM" + +msgid "Never use system DNS resolver" +msgstr "Не использовать системный DNS-клиент" + +msgid "On-Disk Cache" +msgstr "Кэширование на диске" + +msgid "PMM segments size (in bytes)" +msgstr "Размер PMM-сегментов (в байтах)" + +msgid "Parent Proxy" +msgstr "Родительский прокси" + +msgid "Parent proxy address" +msgstr "Адрес родительского прокси" + +msgid "" +"Parent proxy address (in host:port format), to which Polipo will forward the " +"requests." +msgstr "" +"Адрес родительского прокси (в формате хост:порт), на который Polipo будет " +"перенаправлять запросы." + +msgid "Parent proxy authentication" +msgstr "Аутентификация родительского прокси" + +msgid "Polipo" +msgstr "Polipo" + +msgid "Polipo Status" +msgstr "Состояние Polipo" + +msgid "Polipo is a small and fast caching web proxy." +msgstr "Polipo - небольшой веб-прокси, использующий кэширование." + +msgid "Poor Man's Multiplexing" +msgstr "Poor Man's Multiplexing" + +msgid "" +"Poor Man's Multiplexing (PMM) is a technique that simulates multiplexing by " +"requesting an instance in multiple segments. It tries to lower the latency " +"caused by the weakness of HTTP protocol. NOTE: some sites may not work with " +"PMM enabled." +msgstr "" +"Poor Man's Multiplexing (PMM) - это техника, которая позволяет запрашивать " +"данные из нескольких источников. Таким образом, время отклика по HTTP-" +"протоколу сокращается. ПРИМЕЧАНИЕ: некоторые сайты могут не работать с " +"включенным PMM." + +msgid "Port on which Polipo will listen" +msgstr "Порт, на котором Polipo будет ожидать входящие соединения" + +msgid "Proxy" +msgstr "Прокси" + +msgid "Query DNS by hostname" +msgstr "Запрашивать DNS, используя имя хоста" + +msgid "Query DNS directly, fallback to system resolver" +msgstr "" +"Запрашивать DNS напрямую, использовать системный клиент в случае ошибки" + +msgid "Query DNS directly, for unknown hosts fall back to system resolver" +msgstr "" +"Запрашивать DNS напрямую, использовать системный клиент для неизвестных " +"хостов" + +msgid "Query DNS for IPv6" +msgstr "Запрашивать DNS для IPv6" + +msgid "Query IPv4 and IPv6, prefer IPv4" +msgstr "Запрашивать IPv4 и IPv6, предпочитать IPv4" + +msgid "Query IPv4 and IPv6, prefer IPv6" +msgstr "Запрашивать IPv4 и IPv6, предпочитать IPv6" + +msgid "Query only IPv6" +msgstr "Запрашивать только IPv6" + +msgid "" +"Set the DNS server address to use, if you want Polipo to use different DNS " +"server than the host system." +msgstr "" +"Установите адрес DNS-сервера для Polipo в случае, если он отличается от " +"системного." + +msgid "Shared cache" +msgstr "Общий кэш" + +msgid "" +"Size of the first PMM segment. If not defined, it defaults to twice the PMM " +"segment size." +msgstr "" +"Размер первого PMM сегмента. Если не указано, то размер первого сегмента " +"будет равен двум обычным." + +msgid "Size to which cached files should be truncated" +msgstr "Размер, до которого будут сокращены файлы кэша" + +msgid "Status" +msgstr "Состояние" + +msgid "Syslog facility" +msgstr "Системный журнал" + +msgid "" +"The interface on which Polipo will listen. To listen on all interfaces use " +"0.0.0.0 or :: (IPv6)." +msgstr "" +"Интерфейс, на котором Polipo будет ожидать входящие соединения. Чтобы " +"ожидать на всех интерфейсах, используйте 0.0.0.0 или :: (IPv6)." + +msgid "Time after which cached files will be deleted" +msgstr "Интервал, после которого файлы кэша будут удалены" + +msgid "Time after which cached files will be truncated" +msgstr "Интервал, после которого файлы кэша будут сокращены" + +msgid "To enable PMM, PMM segment size must be set to some positive value." +msgstr "Чтобы включить PMM, размер PMM сегмента должен быть установлен." + +msgid "Truncate cache files size (in bytes)" +msgstr "Сократить размер файлов кэша (в байтах)" + +msgid "Truncate cache files time" +msgstr "Время сокращения файлов кэша" + +msgid "" +"Use of external storage device is recommended, because the log file is " +"written frequently and can grow considerably." +msgstr "" +"Рекомендуется использовать внешнее хранилище, так как журнал часто " +"обновляется и может значительно увеличиваться в размере." + +msgid "" +"When listen address is set to 0.0.0.0 or :: (IPv6), you must list clients " +"that are allowed to connect. The format is IP address or network address " +"(192.168.1.123, 192.168.1.0/24, 2001:660:116::/48 (IPv6))" +msgstr "" +"Если адрес для входящих соединений установлен в 0.0.0.0 или :: (IPv6), вам " +"необходимо перечислить клиентов, которым разрешено подключаться. В таком " +"случае формат - это IP-адрес или адрес подсети (192.168.1.123, " +"192.168.1.0/24, 2001:660:116::/48 (IPv6))" + +msgid "enable" +msgstr "включить" diff --git a/applications/luci-app-polipo/po/sk/polipo.po b/applications/luci-app-polipo/po/sk/polipo.po new file mode 100644 index 000000000..e003c175a --- /dev/null +++ b/applications/luci-app-polipo/po/sk/polipo.po @@ -0,0 +1,202 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +msgid "Advanced Settings" +msgstr "" + +msgid "Allowed clients" +msgstr "" + +msgid "Always use system DNS resolver" +msgstr "" + +msgid "" +"Basic HTTP authentication supported. Provide username and password in " +"username:password format." +msgstr "" + +msgid "Configuration" +msgstr "" + +msgid "DNS and Query Settings" +msgstr "" + +msgid "DNS server address" +msgstr "" + +msgid "Delete cache files time" +msgstr "" + +msgid "Disk cache location" +msgstr "" + +msgid "Do not query IPv6" +msgstr "" + +msgid "Enable if cache (proxy) is shared by multiple users." +msgstr "" + +msgid "First PMM segment size (in bytes)" +msgstr "" + +msgid "General Settings" +msgstr "" + +msgid "How much RAM should Polipo use for its cache." +msgstr "" + +msgid "In RAM cache size (in bytes)" +msgstr "" + +msgid "Listen address" +msgstr "" + +msgid "Listen port" +msgstr "" + +msgid "" +"Location where polipo will cache files permanently. Use of external storage " +"devices is recommended, because the cache can grow considerably. Leave it " +"empty to disable on-disk cache." +msgstr "" + +msgid "Log file location" +msgstr "" + +msgid "Log to syslog" +msgstr "" + +msgid "Logging and RAM" +msgstr "" + +msgid "Never use system DNS resolver" +msgstr "" + +msgid "On-Disk Cache" +msgstr "" + +msgid "PMM segments size (in bytes)" +msgstr "" + +msgid "Parent Proxy" +msgstr "" + +msgid "Parent proxy address" +msgstr "" + +msgid "" +"Parent proxy address (in host:port format), to which Polipo will forward the " +"requests." +msgstr "" + +msgid "Parent proxy authentication" +msgstr "" + +msgid "Polipo" +msgstr "" + +msgid "Polipo Status" +msgstr "" + +msgid "Polipo is a small and fast caching web proxy." +msgstr "" + +msgid "Poor Man's Multiplexing" +msgstr "" + +msgid "" +"Poor Man's Multiplexing (PMM) is a technique that simulates multiplexing by " +"requesting an instance in multiple segments. It tries to lower the latency " +"caused by the weakness of HTTP protocol. NOTE: some sites may not work with " +"PMM enabled." +msgstr "" + +msgid "Port on which Polipo will listen" +msgstr "" + +msgid "Proxy" +msgstr "" + +msgid "Query DNS by hostname" +msgstr "" + +msgid "Query DNS directly, fallback to system resolver" +msgstr "" + +msgid "Query DNS directly, for unknown hosts fall back to system resolver" +msgstr "" + +msgid "Query DNS for IPv6" +msgstr "" + +msgid "Query IPv4 and IPv6, prefer IPv4" +msgstr "" + +msgid "Query IPv4 and IPv6, prefer IPv6" +msgstr "" + +msgid "Query only IPv6" +msgstr "" + +msgid "" +"Set the DNS server address to use, if you want Polipo to use different DNS " +"server than the host system." +msgstr "" + +msgid "Shared cache" +msgstr "" + +msgid "" +"Size of the first PMM segment. If not defined, it defaults to twice the PMM " +"segment size." +msgstr "" + +msgid "Size to which cached files should be truncated" +msgstr "" + +msgid "Status" +msgstr "" + +msgid "Syslog facility" +msgstr "" + +msgid "" +"The interface on which Polipo will listen. To listen on all interfaces use " +"0.0.0.0 or :: (IPv6)." +msgstr "" + +msgid "Time after which cached files will be deleted" +msgstr "" + +msgid "Time after which cached files will be truncated" +msgstr "" + +msgid "To enable PMM, PMM segment size must be set to some positive value." +msgstr "" + +msgid "Truncate cache files size (in bytes)" +msgstr "" + +msgid "Truncate cache files time" +msgstr "" + +msgid "" +"Use of external storage device is recommended, because the log file is " +"written frequently and can grow considerably." +msgstr "" + +msgid "" +"When listen address is set to 0.0.0.0 or :: (IPv6), you must list clients " +"that are allowed to connect. The format is IP address or network address " +"(192.168.1.123, 192.168.1.0/24, 2001:660:116::/48 (IPv6))" +msgstr "" + +msgid "enable" +msgstr "" diff --git a/applications/luci-app-polipo/po/sv/polipo.po b/applications/luci-app-polipo/po/sv/polipo.po new file mode 100644 index 000000000..7b64c7ad6 --- /dev/null +++ b/applications/luci-app-polipo/po/sv/polipo.po @@ -0,0 +1,203 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "Advanced Settings" +msgstr "" + +msgid "Allowed clients" +msgstr "" + +msgid "Always use system DNS resolver" +msgstr "" + +msgid "" +"Basic HTTP authentication supported. Provide username and password in " +"username:password format." +msgstr "" + +msgid "Configuration" +msgstr "" + +msgid "DNS and Query Settings" +msgstr "" + +msgid "DNS server address" +msgstr "" + +msgid "Delete cache files time" +msgstr "" + +msgid "Disk cache location" +msgstr "" + +msgid "Do not query IPv6" +msgstr "" + +msgid "Enable if cache (proxy) is shared by multiple users." +msgstr "" + +msgid "First PMM segment size (in bytes)" +msgstr "" + +msgid "General Settings" +msgstr "" + +msgid "How much RAM should Polipo use for its cache." +msgstr "" + +msgid "In RAM cache size (in bytes)" +msgstr "" + +msgid "Listen address" +msgstr "" + +msgid "Listen port" +msgstr "" + +msgid "" +"Location where polipo will cache files permanently. Use of external storage " +"devices is recommended, because the cache can grow considerably. Leave it " +"empty to disable on-disk cache." +msgstr "" + +msgid "Log file location" +msgstr "" + +msgid "Log to syslog" +msgstr "" + +msgid "Logging and RAM" +msgstr "" + +msgid "Never use system DNS resolver" +msgstr "" + +msgid "On-Disk Cache" +msgstr "" + +msgid "PMM segments size (in bytes)" +msgstr "" + +msgid "Parent Proxy" +msgstr "" + +msgid "Parent proxy address" +msgstr "" + +msgid "" +"Parent proxy address (in host:port format), to which Polipo will forward the " +"requests." +msgstr "" + +msgid "Parent proxy authentication" +msgstr "" + +msgid "Polipo" +msgstr "" + +msgid "Polipo Status" +msgstr "" + +msgid "Polipo is a small and fast caching web proxy." +msgstr "" + +msgid "Poor Man's Multiplexing" +msgstr "" + +msgid "" +"Poor Man's Multiplexing (PMM) is a technique that simulates multiplexing by " +"requesting an instance in multiple segments. It tries to lower the latency " +"caused by the weakness of HTTP protocol. NOTE: some sites may not work with " +"PMM enabled." +msgstr "" + +msgid "Port on which Polipo will listen" +msgstr "" + +msgid "Proxy" +msgstr "" + +msgid "Query DNS by hostname" +msgstr "" + +msgid "Query DNS directly, fallback to system resolver" +msgstr "" + +msgid "Query DNS directly, for unknown hosts fall back to system resolver" +msgstr "" + +msgid "Query DNS for IPv6" +msgstr "" + +msgid "Query IPv4 and IPv6, prefer IPv4" +msgstr "" + +msgid "Query IPv4 and IPv6, prefer IPv6" +msgstr "" + +msgid "Query only IPv6" +msgstr "" + +msgid "" +"Set the DNS server address to use, if you want Polipo to use different DNS " +"server than the host system." +msgstr "" + +msgid "Shared cache" +msgstr "" + +msgid "" +"Size of the first PMM segment. If not defined, it defaults to twice the PMM " +"segment size." +msgstr "" + +msgid "Size to which cached files should be truncated" +msgstr "" + +msgid "Status" +msgstr "" + +msgid "Syslog facility" +msgstr "" + +msgid "" +"The interface on which Polipo will listen. To listen on all interfaces use " +"0.0.0.0 or :: (IPv6)." +msgstr "" + +msgid "Time after which cached files will be deleted" +msgstr "" + +msgid "Time after which cached files will be truncated" +msgstr "" + +msgid "To enable PMM, PMM segment size must be set to some positive value." +msgstr "" + +msgid "Truncate cache files size (in bytes)" +msgstr "" + +msgid "Truncate cache files time" +msgstr "" + +msgid "" +"Use of external storage device is recommended, because the log file is " +"written frequently and can grow considerably." +msgstr "" + +msgid "" +"When listen address is set to 0.0.0.0 or :: (IPv6), you must list clients " +"that are allowed to connect. The format is IP address or network address " +"(192.168.1.123, 192.168.1.0/24, 2001:660:116::/48 (IPv6))" +msgstr "" + +msgid "enable" +msgstr "" diff --git a/applications/luci-app-polipo/po/templates/polipo.pot b/applications/luci-app-polipo/po/templates/polipo.pot new file mode 100644 index 000000000..beb0bdb77 --- /dev/null +++ b/applications/luci-app-polipo/po/templates/polipo.pot @@ -0,0 +1,195 @@ +msgid "" +msgstr "Content-Type: text/plain; charset=UTF-8" + +msgid "Advanced Settings" +msgstr "" + +msgid "Allowed clients" +msgstr "" + +msgid "Always use system DNS resolver" +msgstr "" + +msgid "" +"Basic HTTP authentication supported. Provide username and password in " +"username:password format." +msgstr "" + +msgid "Configuration" +msgstr "" + +msgid "DNS and Query Settings" +msgstr "" + +msgid "DNS server address" +msgstr "" + +msgid "Delete cache files time" +msgstr "" + +msgid "Disk cache location" +msgstr "" + +msgid "Do not query IPv6" +msgstr "" + +msgid "Enable if cache (proxy) is shared by multiple users." +msgstr "" + +msgid "First PMM segment size (in bytes)" +msgstr "" + +msgid "General Settings" +msgstr "" + +msgid "How much RAM should Polipo use for its cache." +msgstr "" + +msgid "In RAM cache size (in bytes)" +msgstr "" + +msgid "Listen address" +msgstr "" + +msgid "Listen port" +msgstr "" + +msgid "" +"Location where polipo will cache files permanently. Use of external storage " +"devices is recommended, because the cache can grow considerably. Leave it " +"empty to disable on-disk cache." +msgstr "" + +msgid "Log file location" +msgstr "" + +msgid "Log to syslog" +msgstr "" + +msgid "Logging and RAM" +msgstr "" + +msgid "Never use system DNS resolver" +msgstr "" + +msgid "On-Disk Cache" +msgstr "" + +msgid "PMM segments size (in bytes)" +msgstr "" + +msgid "Parent Proxy" +msgstr "" + +msgid "Parent proxy address" +msgstr "" + +msgid "" +"Parent proxy address (in host:port format), to which Polipo will forward the " +"requests." +msgstr "" + +msgid "Parent proxy authentication" +msgstr "" + +msgid "Polipo" +msgstr "" + +msgid "Polipo Status" +msgstr "" + +msgid "Polipo is a small and fast caching web proxy." +msgstr "" + +msgid "Poor Man's Multiplexing" +msgstr "" + +msgid "" +"Poor Man's Multiplexing (PMM) is a technique that simulates multiplexing by " +"requesting an instance in multiple segments. It tries to lower the latency " +"caused by the weakness of HTTP protocol. NOTE: some sites may not work with " +"PMM enabled." +msgstr "" + +msgid "Port on which Polipo will listen" +msgstr "" + +msgid "Proxy" +msgstr "" + +msgid "Query DNS by hostname" +msgstr "" + +msgid "Query DNS directly, fallback to system resolver" +msgstr "" + +msgid "Query DNS directly, for unknown hosts fall back to system resolver" +msgstr "" + +msgid "Query DNS for IPv6" +msgstr "" + +msgid "Query IPv4 and IPv6, prefer IPv4" +msgstr "" + +msgid "Query IPv4 and IPv6, prefer IPv6" +msgstr "" + +msgid "Query only IPv6" +msgstr "" + +msgid "" +"Set the DNS server address to use, if you want Polipo to use different DNS " +"server than the host system." +msgstr "" + +msgid "Shared cache" +msgstr "" + +msgid "" +"Size of the first PMM segment. If not defined, it defaults to twice the PMM " +"segment size." +msgstr "" + +msgid "Size to which cached files should be truncated" +msgstr "" + +msgid "Status" +msgstr "" + +msgid "Syslog facility" +msgstr "" + +msgid "" +"The interface on which Polipo will listen. To listen on all interfaces use " +"0.0.0.0 or :: (IPv6)." +msgstr "" + +msgid "Time after which cached files will be deleted" +msgstr "" + +msgid "Time after which cached files will be truncated" +msgstr "" + +msgid "To enable PMM, PMM segment size must be set to some positive value." +msgstr "" + +msgid "Truncate cache files size (in bytes)" +msgstr "" + +msgid "Truncate cache files time" +msgstr "" + +msgid "" +"Use of external storage device is recommended, because the log file is " +"written frequently and can grow considerably." +msgstr "" + +msgid "" +"When listen address is set to 0.0.0.0 or :: (IPv6), you must list clients " +"that are allowed to connect. The format is IP address or network address " +"(192.168.1.123, 192.168.1.0/24, 2001:660:116::/48 (IPv6))" +msgstr "" + +msgid "enable" +msgstr "" diff --git a/applications/luci-app-polipo/po/tr/polipo.po b/applications/luci-app-polipo/po/tr/polipo.po new file mode 100644 index 000000000..25982ec16 --- /dev/null +++ b/applications/luci-app-polipo/po/tr/polipo.po @@ -0,0 +1,202 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +msgid "Advanced Settings" +msgstr "" + +msgid "Allowed clients" +msgstr "" + +msgid "Always use system DNS resolver" +msgstr "" + +msgid "" +"Basic HTTP authentication supported. Provide username and password in " +"username:password format." +msgstr "" + +msgid "Configuration" +msgstr "" + +msgid "DNS and Query Settings" +msgstr "" + +msgid "DNS server address" +msgstr "" + +msgid "Delete cache files time" +msgstr "" + +msgid "Disk cache location" +msgstr "" + +msgid "Do not query IPv6" +msgstr "" + +msgid "Enable if cache (proxy) is shared by multiple users." +msgstr "" + +msgid "First PMM segment size (in bytes)" +msgstr "" + +msgid "General Settings" +msgstr "" + +msgid "How much RAM should Polipo use for its cache." +msgstr "" + +msgid "In RAM cache size (in bytes)" +msgstr "" + +msgid "Listen address" +msgstr "" + +msgid "Listen port" +msgstr "" + +msgid "" +"Location where polipo will cache files permanently. Use of external storage " +"devices is recommended, because the cache can grow considerably. Leave it " +"empty to disable on-disk cache." +msgstr "" + +msgid "Log file location" +msgstr "" + +msgid "Log to syslog" +msgstr "" + +msgid "Logging and RAM" +msgstr "" + +msgid "Never use system DNS resolver" +msgstr "" + +msgid "On-Disk Cache" +msgstr "" + +msgid "PMM segments size (in bytes)" +msgstr "" + +msgid "Parent Proxy" +msgstr "" + +msgid "Parent proxy address" +msgstr "" + +msgid "" +"Parent proxy address (in host:port format), to which Polipo will forward the " +"requests." +msgstr "" + +msgid "Parent proxy authentication" +msgstr "" + +msgid "Polipo" +msgstr "" + +msgid "Polipo Status" +msgstr "" + +msgid "Polipo is a small and fast caching web proxy." +msgstr "" + +msgid "Poor Man's Multiplexing" +msgstr "" + +msgid "" +"Poor Man's Multiplexing (PMM) is a technique that simulates multiplexing by " +"requesting an instance in multiple segments. It tries to lower the latency " +"caused by the weakness of HTTP protocol. NOTE: some sites may not work with " +"PMM enabled." +msgstr "" + +msgid "Port on which Polipo will listen" +msgstr "" + +msgid "Proxy" +msgstr "" + +msgid "Query DNS by hostname" +msgstr "" + +msgid "Query DNS directly, fallback to system resolver" +msgstr "" + +msgid "Query DNS directly, for unknown hosts fall back to system resolver" +msgstr "" + +msgid "Query DNS for IPv6" +msgstr "" + +msgid "Query IPv4 and IPv6, prefer IPv4" +msgstr "" + +msgid "Query IPv4 and IPv6, prefer IPv6" +msgstr "" + +msgid "Query only IPv6" +msgstr "" + +msgid "" +"Set the DNS server address to use, if you want Polipo to use different DNS " +"server than the host system." +msgstr "" + +msgid "Shared cache" +msgstr "" + +msgid "" +"Size of the first PMM segment. If not defined, it defaults to twice the PMM " +"segment size." +msgstr "" + +msgid "Size to which cached files should be truncated" +msgstr "" + +msgid "Status" +msgstr "" + +msgid "Syslog facility" +msgstr "" + +msgid "" +"The interface on which Polipo will listen. To listen on all interfaces use " +"0.0.0.0 or :: (IPv6)." +msgstr "" + +msgid "Time after which cached files will be deleted" +msgstr "" + +msgid "Time after which cached files will be truncated" +msgstr "" + +msgid "To enable PMM, PMM segment size must be set to some positive value." +msgstr "" + +msgid "Truncate cache files size (in bytes)" +msgstr "" + +msgid "Truncate cache files time" +msgstr "" + +msgid "" +"Use of external storage device is recommended, because the log file is " +"written frequently and can grow considerably." +msgstr "" + +msgid "" +"When listen address is set to 0.0.0.0 or :: (IPv6), you must list clients " +"that are allowed to connect. The format is IP address or network address " +"(192.168.1.123, 192.168.1.0/24, 2001:660:116::/48 (IPv6))" +msgstr "" + +msgid "enable" +msgstr "" diff --git a/applications/luci-app-polipo/po/uk/polipo.po b/applications/luci-app-polipo/po/uk/polipo.po new file mode 100644 index 000000000..9b1b637b8 --- /dev/null +++ b/applications/luci-app-polipo/po/uk/polipo.po @@ -0,0 +1,206 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2013-09-21 15:36+0200\n" +"Last-Translator: zubr_139 <zubr139@ukr.net>\n" +"Language-Team: none\n" +"Language: uk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: Pootle 2.0.6\n" + +msgid "Advanced Settings" +msgstr "Додаткові налаштування" + +msgid "Allowed clients" +msgstr "" + +msgid "Always use system DNS resolver" +msgstr "" + +msgid "" +"Basic HTTP authentication supported. Provide username and password in " +"username:password format." +msgstr "" + +msgid "Configuration" +msgstr "Конфігурація" + +msgid "DNS and Query Settings" +msgstr "" + +msgid "DNS server address" +msgstr "" + +msgid "Delete cache files time" +msgstr "" + +msgid "Disk cache location" +msgstr "" + +msgid "Do not query IPv6" +msgstr "" + +msgid "Enable if cache (proxy) is shared by multiple users." +msgstr "" + +msgid "First PMM segment size (in bytes)" +msgstr "" + +msgid "General Settings" +msgstr "" + +msgid "How much RAM should Polipo use for its cache." +msgstr "" + +msgid "In RAM cache size (in bytes)" +msgstr "" + +msgid "Listen address" +msgstr "" + +msgid "Listen port" +msgstr "" + +msgid "" +"Location where polipo will cache files permanently. Use of external storage " +"devices is recommended, because the cache can grow considerably. Leave it " +"empty to disable on-disk cache." +msgstr "" + +msgid "Log file location" +msgstr "" + +msgid "Log to syslog" +msgstr "" + +msgid "Logging and RAM" +msgstr "" + +msgid "Never use system DNS resolver" +msgstr "" + +msgid "On-Disk Cache" +msgstr "" + +msgid "PMM segments size (in bytes)" +msgstr "" + +msgid "Parent Proxy" +msgstr "" + +msgid "Parent proxy address" +msgstr "" + +msgid "" +"Parent proxy address (in host:port format), to which Polipo will forward the " +"requests." +msgstr "" + +msgid "Parent proxy authentication" +msgstr "" + +msgid "Polipo" +msgstr "" + +msgid "Polipo Status" +msgstr "" + +msgid "Polipo is a small and fast caching web proxy." +msgstr "" + +msgid "Poor Man's Multiplexing" +msgstr "" + +msgid "" +"Poor Man's Multiplexing (PMM) is a technique that simulates multiplexing by " +"requesting an instance in multiple segments. It tries to lower the latency " +"caused by the weakness of HTTP protocol. NOTE: some sites may not work with " +"PMM enabled." +msgstr "" + +msgid "Port on which Polipo will listen" +msgstr "" + +msgid "Proxy" +msgstr "" + +msgid "Query DNS by hostname" +msgstr "" + +msgid "Query DNS directly, fallback to system resolver" +msgstr "" + +msgid "Query DNS directly, for unknown hosts fall back to system resolver" +msgstr "" + +msgid "Query DNS for IPv6" +msgstr "" + +msgid "Query IPv4 and IPv6, prefer IPv4" +msgstr "" + +msgid "Query IPv4 and IPv6, prefer IPv6" +msgstr "" + +msgid "Query only IPv6" +msgstr "" + +msgid "" +"Set the DNS server address to use, if you want Polipo to use different DNS " +"server than the host system." +msgstr "" + +msgid "Shared cache" +msgstr "" + +msgid "" +"Size of the first PMM segment. If not defined, it defaults to twice the PMM " +"segment size." +msgstr "" + +msgid "Size to which cached files should be truncated" +msgstr "" + +msgid "Status" +msgstr "" + +msgid "Syslog facility" +msgstr "" + +msgid "" +"The interface on which Polipo will listen. To listen on all interfaces use " +"0.0.0.0 or :: (IPv6)." +msgstr "" + +msgid "Time after which cached files will be deleted" +msgstr "" + +msgid "Time after which cached files will be truncated" +msgstr "" + +msgid "To enable PMM, PMM segment size must be set to some positive value." +msgstr "" + +msgid "Truncate cache files size (in bytes)" +msgstr "" + +msgid "Truncate cache files time" +msgstr "" + +msgid "" +"Use of external storage device is recommended, because the log file is " +"written frequently and can grow considerably." +msgstr "" + +msgid "" +"When listen address is set to 0.0.0.0 or :: (IPv6), you must list clients " +"that are allowed to connect. The format is IP address or network address " +"(192.168.1.123, 192.168.1.0/24, 2001:660:116::/48 (IPv6))" +msgstr "" + +msgid "enable" +msgstr "" diff --git a/applications/luci-app-polipo/po/vi/polipo.po b/applications/luci-app-polipo/po/vi/polipo.po new file mode 100644 index 000000000..0765db325 --- /dev/null +++ b/applications/luci-app-polipo/po/vi/polipo.po @@ -0,0 +1,290 @@ +# polipo.pot +# generated from ./applications/luci-polipo/luasrc/i18n/polipo.en.lua +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2009-08-16 06:58+0200\n" +"PO-Revision-Date: 2009-08-13 07:49+0200\n" +"Last-Translator: Hong Phuc Dang <dhppat@gmail.com>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Pootle 1.1.0\n" + +msgid "Advanced Settings" +msgstr "" + +msgid "Allowed clients" +msgstr "Đối tượng cho phép" + +msgid "Always use system DNS resolver" +msgstr "" + +msgid "" +"Basic HTTP authentication supported. Provide username and password in " +"username:password format." +msgstr "" +"Sự chứng thực HTTP Cơ bản được hỗ trợ. Cung cấp tên người dùng và mật khẩu " +"trong tên người dùng: mật khẩu định dạng" + +msgid "Configuration" +msgstr "" + +msgid "DNS and Query Settings" +msgstr "" + +msgid "DNS server address" +msgstr "Địa chỉ tên miền máy chủ" + +msgid "Delete cache files time" +msgstr "Xóa tập tin cạc khi" + +msgid "Disk cache location" +msgstr "Vị trí cạc đĩa" + +msgid "Do not query IPv6" +msgstr "" + +msgid "Enable if cache (proxy) is shared by multiple users." +msgstr "Kích hoạt nếu cạc được chia rẻ bởi nhiều người dùng." + +msgid "First PMM segment size (in bytes)" +msgstr "Dung lượng phân đoạn PMM đầu tiên (in bytes)" + +msgid "General Settings" +msgstr "" + +msgid "How much RAM should Polipo use for its cache." +msgstr "Bao nhiêu RAM Polipo nên dùng cho cạc." + +msgid "In RAM cache size (in bytes)" +msgstr "Trong RAM dung lượng cạc (tính theo bytes)" + +msgid "Listen address" +msgstr "Địa chỉ nge" + +msgid "Listen port" +msgstr "Cổng nghe" + +msgid "" +"Location where polipo will cache files permanently. Use of external storage " +"devices is recommended, because the cache can grow considerably. Leave it " +"empty to disable on-disk cache." +msgstr "" +"Vị trị mà polipo sẽ định các tập tin thường xuyên. Sử dụng thiết bị nhớ " +"ngoài được khuyến khích, bởi vì cạc có thể lớn lên đáng kể. Để lại nó trống " +"để vô hiệu hóa Trên cạc trên đĩa." + +msgid "Log file location" +msgstr "Vị trí tập tin sổ ghi" + +msgid "Log to syslog" +msgstr "Log to syslog" + +msgid "Logging and RAM" +msgstr "" + +msgid "Never use system DNS resolver" +msgstr "" + +msgid "On-Disk Cache" +msgstr "Cạc trên ổ đĩa" + +msgid "PMM segments size (in bytes)" +msgstr "Dung lượng phân đoạn PMM (in bytes)" + +msgid "Parent Proxy" +msgstr "" + +msgid "Parent proxy address" +msgstr "Địa chỉ parent proxy " + +msgid "" +"Parent proxy address (in host:port format), to which Polipo will forward the " +"requests." +msgstr "" +"Địa chỉ parent proxy (in host:port format), cái mà Polipo sẽ chuyển yêu cầu " +"tới." + +msgid "Parent proxy authentication" +msgstr "Xác thực parent proxy " + +msgid "Polipo" +msgstr "Polipo" + +msgid "Polipo Status" +msgstr "" + +msgid "Polipo is a small and fast caching web proxy." +msgstr "Polipo là một web proxy nhỏ và nhanh caching." + +msgid "Poor Man's Multiplexing" +msgstr "Poor Man&#39;s Multiplexing" + +msgid "" +"Poor Man's Multiplexing (PMM) is a technique that simulates multiplexing by " +"requesting an instance in multiple segments. It tries to lower the latency " +"caused by the weakness of HTTP protocol. NOTE: some sites may not work with " +"PMM enabled." +msgstr "" +"Poor Man&#39;s Multiplexing (PMM) là một kỹ thuật kích thích " +"multiplexing bằng cách yêu cầu trường hợp trong nhiều phân đoạn. Nó cố gắng " +"hạ thấp sự trễ nãi do các điểm yếu HTTP protocol gây ra. Chú ý: một số trang " +"web có thể không hoạt động với PMM bật." + +msgid "Port on which Polipo will listen" +msgstr "" + +msgid "Proxy" +msgstr "" + +msgid "Query DNS by hostname" +msgstr "Tra vấn DNS bằng hostname" + +msgid "Query DNS directly, fallback to system resolver" +msgstr "" + +msgid "Query DNS directly, for unknown hosts fall back to system resolver" +msgstr "" + +msgid "Query DNS for IPv6" +msgstr "Tra vấn DNS cho IPv6" + +msgid "Query IPv4 and IPv6, prefer IPv4" +msgstr "" + +msgid "Query IPv4 and IPv6, prefer IPv6" +msgstr "" + +msgid "Query only IPv6" +msgstr "" + +msgid "" +"Set the DNS server address to use, if you want Polipo to use different DNS " +"server than the host system." +msgstr "" +"Cài đặt địa chỉ tên miền máy chủ để sử dụng, nếu bạn muốn Polipo dùng tên " +"miền khác với hệ thông chính. " + +msgid "Shared cache" +msgstr "Cạc trên ổ đĩa" + +msgid "" +"Size of the first PMM segment. If not defined, it defaults to twice the PMM " +"segment size." +msgstr "" +"Dung lượng của phân đoạn PMM đầu tiên. Nếu không định nghĩa sẽ mặc định dung " +"lượng của phân đoạn PMM gấp 2 lần" + +msgid "Size to which cached files should be truncated" +msgstr "" + +msgid "Status" +msgstr "" + +msgid "Syslog facility" +msgstr "Syslog facility" + +msgid "" +"The interface on which Polipo will listen. To listen on all interfaces use " +"0.0.0.0 or :: (IPv6)." +msgstr "" +"Giao diện mà Polipo sẽ nghe. Để nghe trên tất cả các giao diện dùng 0.0.0.0 " +"hoặc :: (IPv6)" + +msgid "Time after which cached files will be deleted" +msgstr "" + +msgid "Time after which cached files will be truncated" +msgstr "" + +msgid "To enable PMM, PMM segment size must be set to some positive value." +msgstr "" + +msgid "Truncate cache files size (in bytes)" +msgstr "Bỏ bớt những tập tin cạc với dung lượng (bytes)" + +msgid "Truncate cache files time" +msgstr "Cắt bỏ tập tin cạc khi" + +msgid "" +"Use of external storage device is recommended, because the log file is " +"written frequently and can grow considerably." +msgstr "" +"Nên dùng bộ nhớ ngoài bởi vì tập tin sổ ghi được viết rất nhiều lần và có " +"thể phát tán rất mạnh. " + +msgid "" +"When listen address is set to 0.0.0.0 or :: (IPv6), you must list clients " +"that are allowed to connect. The format is IP address or network address " +"(192.168.1.123, 192.168.1.0/24, 2001:660:116::/48 (IPv6))" +msgstr "" + +msgid "enable" +msgstr "" + +#~ msgid "" +#~ "To enable polipo on-disk cache cleaning (highly recommended), you should " +#~ "add a cron job in Scheduled Tasks services that will execute /usr/sbin/" +#~ "polipo_purge script. For example to perform disk cache cleanup every day " +#~ "at 6:00 in the morning you should add the following line in Scheduled " +#~ "Tasks \"0 6 * * *\\t/usr/sbin/polipo_purge\" (without quotes)." +#~ msgstr "" +#~ "Để kích hoạt tính năng làm sạch trên cạc đĩa polipo (rất khuyến khích), " +#~ "bạn nên thêm vào một công việc cron trong những công tác đã schedule, nó " +#~ "sẽ thực hiện / usr / sbin / polipo_purge script. Ví dụ: để thực hiện các " +#~ "đĩa bộ nhớ cache mỗi ngày vào lúc 6:00 sáng, bạn nên thêm dòng sau trong " +#~ "Scheduled công việc &quot;0 6 * * * /usr/sbin/polipo_purge&quot; " +#~ "(không có dấu ngoặc kép)." + +#~ msgid "" +#~ "Size to which cached files should be truncated. (default value: 1048576)" +#~ msgstr "Dung lượng mà những tập tin cạc bị cắt bỏ. (Giá trị: 1048576)" + +#~ msgid "" +#~ "Time after which cached files will be truncated. (default value: 4d12h)" +#~ msgstr "Thời gian khi tập tin cạc sẽ bị cắt bỏ (Giá trị: 4d12h)" + +#~ msgid "Time after which cached files will be deleted. (default value: 32d)" +#~ msgstr "Thời gian khi tập tin cạc sẽ bị xóa. (Giá trị: 32d)" + +#~ msgid "General" +#~ msgstr "Tổng quát" + +#~ msgid "" +#~ "When listen address is set to 0.0.0.0 or :: (IPv6), you must list clients " +#~ "that are allowed to connect. The format is IP address or network address " +#~ "(192.168.1.123, 192.168.1.0/24, 2001:660:116::/48 (IPv6))." +#~ msgstr "" +#~ "Khi nghe địa chỉ được đặt ở 0.0.0.0 hoặc :: (IPv6), bạn phải liệt kê " +#~ "những đối tượng được phép kết nối. Định dạng là địa chỉ IP hoặc địa chỉ " +#~ "mạng (192.168.1.123, 192.168.1.0/24, 2001:660:116::/48 (IPv6))." + +#~ msgid "" +#~ "false = Do not query IPv6; reluctantly = Query both, prefer IPv4; happily " +#~ "= Query both, prefer IPv6; true = Query only IPv6" +#~ msgstr "" +#~ "False = Đừng truy vấn IPv6; reluctantly = Truy vấn cả hai, IPv4 được " +#~ "chuộng hơn; happily = truy vấn cả hai, IPv6 chuộng hơn; true = chỉ truy " +#~ "vấn IPv6" + +#~ msgid "" +#~ "false = Never use system DNS resolver; reluctantly = Query DNS directly, " +#~ "if DNS server is unavailable fail to system DNS resolver; happily = Query " +#~ "DNS directly, if host could not be found fallback to system DNS resolver; " +#~ "true = Always use system DNS resolver" +#~ msgstr "" +#~ "false = Đừng bao giờ dùng bộ phân tích hệ thống DNS; reluctantly = Truy " +#~ "vấn DNS trực tiếp, nếu DNS server không có sẵn trong bộ phân tích hệ " +#~ "thống DNS; happily = truy vấn DNS trực tiếp, nếu host bị đẩy lùi so với " +#~ "bộ phân tích hệ thống DNS; true = Luân luân dùng bộ phân tích hệ thống DNS" + +#~ msgid "Port on which Polipo will listen. (default value: 8123)" +#~ msgstr "Cổng mà Polipo sẽ nghe. (giá trị: 8123)" + +#~ msgid "polipo_pmm_pmmsize_desc" +#~ msgstr "" +#~ "Để kích hoạt PMM, dung lượng phân đoạn PMM phải được đặt những giá trị " +#~ "dương." diff --git a/applications/luci-app-polipo/po/zh-cn/polipo.po b/applications/luci-app-polipo/po/zh-cn/polipo.po new file mode 100644 index 000000000..7dcbe2344 --- /dev/null +++ b/applications/luci-app-polipo/po/zh-cn/polipo.po @@ -0,0 +1,205 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2013-10-09 03:47+0200\n" +"Last-Translator: Tanyingyu <Tanyingyu@163.com>\n" +"Language-Team: none\n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Pootle 2.0.6\n" + +msgid "Advanced Settings" +msgstr "高级设置" + +msgid "Allowed clients" +msgstr "允许的客户端" + +msgid "Always use system DNS resolver" +msgstr "始终使用系统DNS解析" + +msgid "" +"Basic HTTP authentication supported. Provide username and password in " +"username:password format." +msgstr "支持HTTP基本身份验证。提供用户名和密码格式为:用户名:密码。" + +msgid "Configuration" +msgstr "配置" + +msgid "DNS and Query Settings" +msgstr "DNS查询设置" + +msgid "DNS server address" +msgstr "DNS地址" + +msgid "Delete cache files time" +msgstr "清除缓存文件周期" + +msgid "Disk cache location" +msgstr "磁盘缓存位置" + +msgid "Do not query IPv6" +msgstr "不能查询IPv6" + +msgid "Enable if cache (proxy) is shared by multiple users." +msgstr "允许多用户共享缓存(代理)。" + +msgid "First PMM segment size (in bytes)" +msgstr "第一的PMM段的大小(字节为单位)" + +msgid "General Settings" +msgstr "通用设置" + +msgid "How much RAM should Polipo use for its cache." +msgstr "" + +msgid "In RAM cache size (in bytes)" +msgstr "" + +msgid "Listen address" +msgstr "监听地址" + +msgid "Listen port" +msgstr "监听端口" + +msgid "" +"Location where polipo will cache files permanently. Use of external storage " +"devices is recommended, because the cache can grow considerably. Leave it " +"empty to disable on-disk cache." +msgstr "polipo将永久缓存文件。建议使用外部存储设备,因为缓存会一直增长。留空表示禁用磁盘缓存。" + +msgid "Log file location" +msgstr "日志存放位置" + +msgid "Log to syslog" +msgstr "吐日志到syslog" + +msgid "Logging and RAM" +msgstr "" + +msgid "Never use system DNS resolver" +msgstr "从不使用系统DNS解析" + +msgid "On-Disk Cache" +msgstr "磁盘缓存" + +msgid "PMM segments size (in bytes)" +msgstr "" + +msgid "Parent Proxy" +msgstr "" + +msgid "Parent proxy address" +msgstr "" + +msgid "" +"Parent proxy address (in host:port format), to which Polipo will forward the " +"requests." +msgstr "" + +msgid "Parent proxy authentication" +msgstr "" + +msgid "Polipo" +msgstr "" + +msgid "Polipo Status" +msgstr "" + +msgid "Polipo is a small and fast caching web proxy." +msgstr "" + +msgid "Poor Man's Multiplexing" +msgstr "" + +msgid "" +"Poor Man's Multiplexing (PMM) is a technique that simulates multiplexing by " +"requesting an instance in multiple segments. It tries to lower the latency " +"caused by the weakness of HTTP protocol. NOTE: some sites may not work with " +"PMM enabled." +msgstr "" + +msgid "Port on which Polipo will listen" +msgstr "" + +msgid "Proxy" +msgstr "" + +msgid "Query DNS by hostname" +msgstr "" + +msgid "Query DNS directly, fallback to system resolver" +msgstr "" + +msgid "Query DNS directly, for unknown hosts fall back to system resolver" +msgstr "" + +msgid "Query DNS for IPv6" +msgstr "" + +msgid "Query IPv4 and IPv6, prefer IPv4" +msgstr "" + +msgid "Query IPv4 and IPv6, prefer IPv6" +msgstr "" + +msgid "Query only IPv6" +msgstr "" + +msgid "" +"Set the DNS server address to use, if you want Polipo to use different DNS " +"server than the host system." +msgstr "" + +msgid "Shared cache" +msgstr "" + +msgid "" +"Size of the first PMM segment. If not defined, it defaults to twice the PMM " +"segment size." +msgstr "" + +msgid "Size to which cached files should be truncated" +msgstr "" + +msgid "Status" +msgstr "" + +msgid "Syslog facility" +msgstr "" + +msgid "" +"The interface on which Polipo will listen. To listen on all interfaces use " +"0.0.0.0 or :: (IPv6)." +msgstr "" + +msgid "Time after which cached files will be deleted" +msgstr "" + +msgid "Time after which cached files will be truncated" +msgstr "" + +msgid "To enable PMM, PMM segment size must be set to some positive value." +msgstr "" + +msgid "Truncate cache files size (in bytes)" +msgstr "" + +msgid "Truncate cache files time" +msgstr "" + +msgid "" +"Use of external storage device is recommended, because the log file is " +"written frequently and can grow considerably." +msgstr "" + +msgid "" +"When listen address is set to 0.0.0.0 or :: (IPv6), you must list clients " +"that are allowed to connect. The format is IP address or network address " +"(192.168.1.123, 192.168.1.0/24, 2001:660:116::/48 (IPv6))" +msgstr "" + +msgid "enable" +msgstr "" diff --git a/applications/luci-app-polipo/po/zh-tw/polipo.po b/applications/luci-app-polipo/po/zh-tw/polipo.po new file mode 100644 index 000000000..5058897bc --- /dev/null +++ b/applications/luci-app-polipo/po/zh-tw/polipo.po @@ -0,0 +1,205 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2014-05-21 13:13+0200\n" +"Last-Translator: omnistack <omnistack@gmail.com>\n" +"Language-Team: none\n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Pootle 2.0.6\n" + +msgid "Advanced Settings" +msgstr "進階設定" + +msgid "Allowed clients" +msgstr "允許的客戶端" + +msgid "Always use system DNS resolver" +msgstr "總是採用系統使用的DNS解析" + +msgid "" +"Basic HTTP authentication supported. Provide username and password in " +"username:password format." +msgstr "基本的HTTP驗證支援. 提供使用者名稱和密碼以username:password格式" + +msgid "Configuration" +msgstr "設定" + +msgid "DNS and Query Settings" +msgstr "DNS及查詢設定值" + +msgid "DNS server address" +msgstr "DNS伺服器位址" + +msgid "Delete cache files time" +msgstr "刪除快取檔的時間" + +msgid "Disk cache location" +msgstr "磁碟快取放置的位置" + +msgid "Do not query IPv6" +msgstr "不使用IPv6查詢" + +msgid "Enable if cache (proxy) is shared by multiple users." +msgstr "假若快取(Proxy)被多個使用者分享使用就啓用" + +msgid "First PMM segment size (in bytes)" +msgstr "第一個PMM段的大小(以bytes方式表示)" + +msgid "General Settings" +msgstr "基本設定" + +msgid "How much RAM should Polipo use for its cache." +msgstr "Polipo拿來當快取的記憶體量是多大?" + +msgid "In RAM cache size (in bytes)" +msgstr "記憶體快取大小(以bytes方式表示)" + +msgid "Listen address" +msgstr "聆聽位址" + +msgid "Listen port" +msgstr "聆聽埠號" + +msgid "" +"Location where polipo will cache files permanently. Use of external storage " +"devices is recommended, because the cache can grow considerably. Leave it " +"empty to disable on-disk cache." +msgstr "Polipo位置將永久快取文件。建議使用外部的存儲設備,因為快取會顯著增長。保留空白以便關閉磁碟快取." + +msgid "Log file location" +msgstr "紀錄檔位置" + +msgid "Log to syslog" +msgstr "記錄到系統記錄syslog中" + +msgid "Logging and RAM" +msgstr "記錄和記憶體" + +msgid "Never use system DNS resolver" +msgstr "從不使用系統DNS解析" + +msgid "On-Disk Cache" +msgstr "磁碟上的快取" + +msgid "PMM segments size (in bytes)" +msgstr "PMM段大小(以bytes表示)" + +msgid "Parent Proxy" +msgstr "上層Proxy" + +msgid "Parent proxy address" +msgstr "上層Proxy位址" + +msgid "" +"Parent proxy address (in host:port format), to which Polipo will forward the " +"requests." +msgstr "Polipo應該重導這個要求所到的上層Proxy(以 主機:埠號 格式表示)." + +msgid "Parent proxy authentication" +msgstr "上層Proxy位址驗證" + +msgid "Polipo" +msgstr "Polipo本地代理伺服器" + +msgid "Polipo Status" +msgstr "Polipo狀況" + +msgid "Polipo is a small and fast caching web proxy." +msgstr "Polipo是一個小型且快速的快取網頁代理" + +msgid "Poor Man's Multiplexing" +msgstr "窮人的多工器Poor Man's Multiplexing" + +msgid "" +"Poor Man's Multiplexing (PMM) is a technique that simulates multiplexing by " +"requesting an instance in multiple segments. It tries to lower the latency " +"caused by the weakness of HTTP protocol. NOTE: some sites may not work with " +"PMM enabled." +msgstr "" + +msgid "Port on which Polipo will listen" +msgstr " Polipo聆聽的埠號" + +msgid "Proxy" +msgstr "代理伺服器" + +msgid "Query DNS by hostname" +msgstr "以主機名稱查詢DNS" + +msgid "Query DNS directly, fallback to system resolver" +msgstr "直接查詢DNS, 回傳給系統解析" + +msgid "Query DNS directly, for unknown hosts fall back to system resolver" +msgstr "直接查詢DNS, 對莫名的主機回傳給系統解析" + +msgid "Query DNS for IPv6" +msgstr "幫IPv6查詢DNS" + +msgid "Query IPv4 and IPv6, prefer IPv4" +msgstr "查詢IPv4和IPv6,IPv4優先" + +msgid "Query IPv4 and IPv6, prefer IPv6" +msgstr "查詢IPv4和IPv6 ,IPv6優先" + +msgid "Query only IPv6" +msgstr "只查詢IPv6" + +msgid "" +"Set the DNS server address to use, if you want Polipo to use different DNS " +"server than the host system." +msgstr "設定DNS伺服器位址以便使用, 假如你要Polipo代理人使用不同的DNS伺服器而非主機系統." + +msgid "Shared cache" +msgstr "分享的快取" + +msgid "" +"Size of the first PMM segment. If not defined, it defaults to twice the PMM " +"segment size." +msgstr "第一個PMM區段的大小, 假若沒定義 ,預設兩次PMM區段的大小." + +msgid "Size to which cached files should be truncated" +msgstr "快取檔被截斷的大小" + +msgid "Status" +msgstr "狀態" + +msgid "Syslog facility" +msgstr "日誌設施" + +msgid "" +"The interface on which Polipo will listen. To listen on all interfaces use " +"0.0.0.0 or :: (IPv6)." +msgstr "Polipo將會聆聽的介面. 要聆聽所有介面使用0.0.0.0 或 :: (IPv6)." + +msgid "Time after which cached files will be deleted" +msgstr "快取將會被刪除的留存時間" + +msgid "Time after which cached files will be truncated" +msgstr "快取將會被斷頭的留存時間" + +msgid "To enable PMM, PMM segment size must be set to some positive value." +msgstr "要啟用PMM, PMM區段大小必須設定些積極的數值." + +msgid "Truncate cache files size (in bytes)" +msgstr "" + +msgid "Truncate cache files time" +msgstr "" + +msgid "" +"Use of external storage device is recommended, because the log file is " +"written frequently and can grow considerably." +msgstr "" + +msgid "" +"When listen address is set to 0.0.0.0 or :: (IPv6), you must list clients " +"that are allowed to connect. The format is IP address or network address " +"(192.168.1.123, 192.168.1.0/24, 2001:660:116::/48 (IPv6))" +msgstr "" + +msgid "enable" +msgstr "" diff --git a/applications/luci-app-polipo/root/etc/uci-defaults/luci-polipo b/applications/luci-app-polipo/root/etc/uci-defaults/luci-polipo new file mode 100755 index 000000000..0c570630d --- /dev/null +++ b/applications/luci-app-polipo/root/etc/uci-defaults/luci-polipo @@ -0,0 +1,11 @@ +#!/bin/sh + +uci -q batch <<-EOF >/dev/null + delete ucitrack.@polipo[-1] + add ucitrack polipo + set ucitrack.@polipo[-1].init=polipo + commit ucitrack +EOF + +rm -f /tmp/luci-indexcache +exit 0 diff --git a/applications/luci-app-polipo/root/usr/sbin/polipo_purge b/applications/luci-app-polipo/root/usr/sbin/polipo_purge new file mode 100755 index 000000000..23ba57192 --- /dev/null +++ b/applications/luci-app-polipo/root/usr/sbin/polipo_purge @@ -0,0 +1,18 @@ +#!/bin/sh + +DAEMON=/usr/sbin/polipo +PIDFILE=`uci get polipo.daemon.pidFile` +CFGFILE=/var/etc/polipo.conf + +[ -e "$PIDFILE" ] && { + PID=`cat $PIDFILE` + + # send Polipo USR1 signal to write its in-memory cache to disk + kill -USR1 $PID + sleep 2 + # start polipo with -x flag to purge the on-disk cache + polipo -c $CFGFILE -x + # send Polipo USR2 signal to discard its in-memory cache + kill -USR2 $PID +} + |