-initial import

git-svn-id: file:///opt/dev/work/svn/svn/basic_and_standard/trunk@1 560d4a0b-fb2f-0410-bc46-b98b48829bb1
master
grimholt 2007-06-26 01:48:41 +00:00
commit fa6dcce11d
120 changed files with 21849 additions and 0 deletions

11
.project Normal file
View File

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>foxyproxy-standard</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
</buildSpec>
<natures>
</natures>
</projectDescription>

27
how-to-build.txt Normal file
View File

@ -0,0 +1,27 @@
How to build foxyproxy-x.x.xpi on Windows/Unix/Linux:
For instruction on setting up a development environment, see
how-to-setup-development-env.txt
This project uses ant (http://ant.apache.org) to build its targets.
Ant is a free, open-source, cross-platform java tool. No IDE is
necessary, but if you want to use Eclipse (http://www.eclipse.org),
an Eclipse .project file is included.
You can either download ant
from http://ant.apache.org/bindownload.cgi or download and install
Eclipse. If you choose ant instead of Eclipse, ensure you also download
a Java Development Environment (JDK) and set appropriate ant environment
variables. Specifically, you might consider adding the ant script to your
PATH variable and exporting the ANT_HOME environment variable. If you use
Eclipse IDE, you neither have to download the JDK nor setup ant environment
variables.
The ant build script is src/build.xml. The default target, named "build",
builds the XPI in the directory /dev/foxyproxy/standard/fx+flock/trunk/src.
If you want to change this directory, change the value of the src-base
property. You might also want to change the value of the temporary directory
which is /tmp/fp-temp and is stored in the variable temp-path. Note that
forward slashes are platform-independent in ant scripts; they work on both
windows and *nix -- providing the directories exist and you have appropriate
permissions on them.

View File

@ -0,0 +1,48 @@
How to setup a FoxyProxy development environment in Firefox on Windows/Unix/Linux:
For build instructions, see how-to-build.txt
1. Modify the way Firefox is started so it includes these command-line arguments:
-console -profileManager
e.g.: "C:\Program Files\Mozilla Firefox\firefox.exe" -console -profileManager
or
/usr/local/bin/firefox -console -profileManager
Now whenever you start Firefox, you can see stdout and stderr in the console.
This is important because all dump() statements in FoxyProxy
write to stdout. The -profileManager argument allows you to create/delete
profiles which you'll need for step 2.
2. Start FF and create a new profile.
3. Install the latest version of Ted's Extension Developer's Extension from
http://ted.mielczarek.org/code/mozilla/extensiondev/
4. Restart FF so the extension is installed.
5. Go to Tools->Extension Developer->Toggle debugging prefs. This will
do things like turn off XUL caching, enable dump() statement output preferences,
etc.
6. Close FF.
7. Find the new profile on your hard drive. Go to its extensions\ directory;
e.g., C:\Documents and Settings\EricJu\Application Data\Mozilla\Firefox\
Profiles\g1jro8hx.dev\extensions
and create a file named {foxyproxy@eric.h.jung}
It should contain a single line that is the path to the src directory you checked
out from FoxyProxy's subversion repository. e.g.:
<drive>:\dev\foxyproxy\trunk\src
or
~/foxyproxy/trunk/src
8. Start FF. You should be able to access FoxyProxy. Any change you
make to non-overlay code in the src/ directory takes effect immediately.
However, you must close and re-open dialogs for dialog-included JS and XUL
changes to be visible (e.g., options.xul). If you make changes to overlay code,
you must restart FF for the changes to take effect.
9. Use dump() statements to output stuff to stdout; alert() statements to
alert.
See http://forums.mozillazine.org/viewtopic.php?t=360892 (page 2) for more info

17
src/LICENSE Normal file
View File

@ -0,0 +1,17 @@
FoxyProxy Extension
Copyright (C) 2006, 2007 LeahScape, Inc. and Eric H. Jung
This program is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free Software
Foundation; either version 2 of the License, or (at your option) any later
version.
This program is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should be able to obtain a copy of the GNU General Public License from
http://www.gnu.org/licenses/gpl.txt; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
ALL RIGHTS RESERVED. U.S. PATENT PENDING.

68
src/build.xml Normal file
View File

@ -0,0 +1,68 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
FoxyProxy
Copyright (C) 2006, 2007 Eric H. Jung and LeahScape, Inc.
http://foxyproxy.mozdev.org/
eric.jung@yahoo.com
This library is free software; you can redistribute it and/or modify it
under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or (at
your option) any later version.
This library is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESSFOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
for more details.
You should have received a copy of the GNU Lesser General Public License
along with this library; if not, write to the Free Software Foundation,
Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
ALL RIGHTS RESERVED. U.S. PATENT PENDING.
-->
<project name="foxyproxy" default="build" basedir="/temp/fp-temp">
<!-- version property is appended to XPI filename; e.g., foxyproxy-1.0.xpi -->
<property name="version" value="2.5.3" />
<property name="temp-path" value="/temp/fp-temp" />
<property name="src-base" value="/dev/foxyproxy/standard/fx+flock/trunk/src"/>
<!-- guid -->
<property name="guid" value="{foxyproxy@eric.h.jung}" />
<target name="copy">
<copy todir="${temp-path}" overwrite="true">
<!-- ignore timestamps -->
<fileset dir="${src-base}" excludes="**/*.xpi/**,**/*.jar/**,**/build.xml/**,**/chrome.manifest/**,**/*.project/**,**/tbird*.*/**" />
</copy>
</target>
<!-- create the jar -->
<target name="jar">
<zip destfile="chrome/foxyproxy.jar">
<zipfileset dir="${temp-path}/content" prefix="content" includes="**/**" />
<zipfileset dir="${temp-path}/skin" prefix="skin" includes="**/**" />
<zipfileset dir="${temp-path}/locale" prefix="locale" includes="**/**" />
</zip>
</target>
<!-- create foxyproxy-x.y.z.xpi in the current dir using install.rdf in the current dir -->
<target name="build-unsigned">
<move file="chrome.manifest.packaging" tofile="chrome.manifest" />
<zip destfile="${src-base}/foxyproxy-${version}-unsigned.xpi">
<fileset dir="${temp-path}" includes="chrome.manifest install.rdf LICENSE chrome/" />
<zipfileset dir="${temp-path}/components" prefix="components" includes="**/**" />
<zipfileset dir="${temp-path}/defaults" prefix="defaults" includes="**/**" />
</zip>
</target>
<target name="clean">
<delete dir="${temp-path}" failonerror="false" />
<mkdir dir="${temp-path}" />
</target>
<target name="build" depends="copy,jar,build-unsigned,clean" />
</project>

36
src/chrome.manifest Normal file
View File

@ -0,0 +1,36 @@
content foxyproxy content/
locale foxyproxy cs-CZ locale/cs-CZ/
locale foxyproxy da-DK locale/da-DK/
locale foxyproxy de-DE locale/de-DE/
locale foxyproxy el-GR locale/el-GR/
locale foxyproxy en-US locale/en-US/
locale foxyproxy es-AR locale/es-AR/
locale foxyproxy es-ES locale/es-ES/
locale foxyproxy fa-IR locale/fa-IR/
locale foxyproxy fr-FR locale/fr-FR/
locale foxyproxy hr-HR locale/hr-HR/
locale foxyproxy hr-HU locale/hr-HU/
locale foxyproxy it-IT locale/it-IT/
locale foxyproxy nl-NL locale/nl-NL/
locale foxyproxy pl-PL locale/pl-PL/
locale foxyproxy pt-BR locale/pt-BR/
locale foxyproxy pt-PT locale/pt-PT/
locale foxyproxy ru-RU locale/ru-RU/
locale foxyproxy sk locale/sk/
locale foxyproxy sv-SE locale/sv-SE/
locale foxyproxy th-TH locale/th-TH/
locale foxyproxy tr-TR locale/tr-TR/
locale foxyproxy uk-UA locale/uk-UA/
locale foxyproxy zh-CN locale/zh-CN/
locale foxyproxy zh-TW locale/zh-TW/
skin foxyproxy classic/1.0 skin/
overlay chrome://browser/content/browser.xul chrome://foxyproxy/content/firefoxOverlay.xul application={ec8030f7-c20a-464f-9b0e-13a3a9e97384}
overlay chrome://browser/content/preferences/preferences.xul chrome://foxyproxy/content/firefoxOptionsOverlay.xul application={ec8030f7-c20a-464f-9b0e-13a3a9e97384}
overlay chrome://global/content/alerts/alert.xul chrome://foxyproxy/content/alertOverlay.xul application={ec8030f7-c20a-464f-9b0e-13a3a9e97384}
style chrome://global/content/customizeToolbar.xul chrome://foxyproxy/content/foxyproxy.css application={ec8030f7-c20a-464f-9b0e-13a3a9e97384}
<!-- tbird -->
overlay chrome://messenger/content/messenger.xul chrome://foxyproxy/content/tbirdOverlay.xul application={3550f703-e582-4d05-9a08-453d09bdfdc6}
style chrome://messenger/content/messenger.xul chrome://foxyproxy/content/foxyproxy.css application={3550f703-e582-4d05-9a08-453d09bdfdc6}
style chrome://global/content/customizeToolbar.xul chrome://foxyproxy/content/foxyproxy.css application={3550f703-e582-4d05-9a08-453d09bdfdc6}

View File

@ -0,0 +1,37 @@
content foxyproxy jar:chrome/foxyproxy.jar!/content/
overlay chrome://browser/content/browser.xul chrome://foxyproxy/content/firefoxOverlay.xul application={ec8030f7-c20a-464f-9b0e-13a3a9e97384}
overlay chrome://browser/content/preferences/preferences.xul chrome://foxyproxy/content/firefoxOptionsOverlay.xul application={ec8030f7-c20a-464f-9b0e-13a3a9e97384}
overlay chrome://global/content/alerts/alert.xul chrome://foxyproxy/content/alertOverlay.xul application={ec8030f7-c20a-464f-9b0e-13a3a9e97384}
locale foxyproxy cs-CZ jar:chrome/foxyproxy.jar!/locale/cs-CZ/
locale foxyproxy da-DK jar:chrome/foxyproxy.jar!/locale/da-DK/
locale foxyproxy de-DE jar:chrome/foxyproxy.jar!/locale/de-DE/
locale foxyproxy el-GR jar:chrome/foxyproxy.jar!/locale/el-GR/
locale foxyproxy en-US jar:chrome/foxyproxy.jar!/locale/en-US/
locale foxyproxy es-AR jar:chrome/foxyproxy.jar!/locale/es-AR/
locale foxyproxy es-ES jar:chrome/foxyproxy.jar!/locale/es-ES/
locale foxyproxy fa-IR jar:chrome/foxyproxy.jar!/locale/fa-IR/
locale foxyproxy fr-FR jar:chrome/foxyproxy.jar!/locale/fr-FR/
locale foxyproxy hr-HR jar:chrome/foxyproxy.jar!/locale/hr-HR/
locale foxyproxy hr-HU jar:chrome/foxyproxy.jar!/locale/hr-HU/
locale foxyproxy it-IT jar:chrome/foxyproxy.jar!/locale/it-IT/
locale foxyproxy nl-NL jar:chrome/foxyproxy.jar!/locale/nl-NL/
locale foxyproxy pl-PL jar:chrome/foxyproxy.jar!/locale/pl-PL/
locale foxyproxy pt-BR jar:chrome/foxyproxy.jar!/locale/pt-BR/
locale foxyproxy pt-PT jar:chrome/foxyproxy.jar!/locale/pt-PT/
locale foxyproxy ru-RU jar:chrome/foxyproxy.jar!/locale/ru-RU/
locale foxyproxy sk jar:chrome/foxyproxy.jar!/locale/sk/
locale foxyproxy sv-SE jar:chrome/foxyproxy.jar!/locale/sv-SE/
locale foxyproxy th-TH jar:chrome/foxyproxy.jar!/locale/th-TH/
locale foxyproxy tr-TR jar:chrome/foxyproxy.jar!/locale/tr-TR/
locale foxyproxy uk-UA jar:chrome/foxyproxy.jar!/locale/uk-UA/
locale foxyproxy zh-CN jar:chrome/foxyproxy.jar!/locale/zh-CN/
locale foxyproxy zh-TW jar:chrome/foxyproxy.jar!/locale/zh-TW/
skin foxyproxy classic/1.0 jar:chrome/foxyproxy.jar!/skin/ application={ec8030f7-c20a-464f-9b0e-13a3a9e97384}
style chrome://global/content/customizeToolbar.xul chrome://foxyproxy/content/foxyproxy.css application={ec8030f7-c20a-464f-9b0e-13a3a9e97384}
<!-- tbird-->
overlay chrome://messenger/content/messenger.xul chrome://foxyproxy/content/tbirdOverlay.xul application={3550f703-e582-4d05-9a08-453d09bdfdc6}
style chrome://messenger/content/messenger.xul chrome://foxyproxy/content/foxyproxy.css application={3550f703-e582-4d05-9a08-453d09bdfdc6}
style chrome://global/content/customizeToolbar.xul chrome://foxyproxy/content/foxyproxy.css application={3550f703-e582-4d05-9a08-453d09bdfdc6}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

1173
src/components/foxyproxy.js Normal file

File diff suppressed because it is too large Load Diff

578
src/components/proxy.js Normal file
View File

@ -0,0 +1,578 @@
/**
FoxyProxy
Copyright (C) 2006, 2007 Eric H. Jung and LeahScape, Inc.
http://foxyproxy.mozdev.org/
eric.jung@yahoo.com
This source code is released under the GPL license,
available in the LICENSE file at the root of this installation
and also online at http://www.gnu.org/licenses/gpl.txt
All Rights Reserved. U.S. PATENT PENDING.
**/
// See http://forums.mozillazine.org/viewtopic.php?t=308369
// Don't const the next line anymore because of the generic reg code
var CI = Components.interfaces, CC = Components.classes, CR = Components.results;
var fp = null;
var proxyService = CC["@mozilla.org/network/protocol-proxy-service;1"].getService(CI.nsIProtocolProxyService);
function gQueryInterface(aIID) {
if(!aIID.equals(CI.nsISupports) && !aIID.equals(CI.nsISupportsWeakReference))
throw CR.NS_ERROR_NO_INTERFACE;
return this;
}
///////////////////////////// Proxy class ///////////////////////
function Proxy() {
this.wrappedJSObject = this;
!fp &&
(fp = CC["@leahscape.org/foxyproxy/service;1"].getService(CI.nsISupports).wrappedJSObject);
this.matches = new Array();
this.name = this.notes = "";
this.manualconf = new ManualConf();
this.autoconf = new AutoConf(this, null);
this.mode = "manual"; // manual, auto, or direct
this.enabled = true;
this.selectedTabIndex = 0;
this.lastresort = false;
this.id = fp.proxies.uniqueRandom();
}
Proxy.prototype = {
QueryInterface: gQueryInterface,
direct: proxyService.newProxyInfo("direct", "", -1, 0, 0, null),
animatedIcons: true,
includeInCycle: true,
__registration: function() {
return ({topics: null,
observerName: null,
contractId: "@leahscape.org/foxyproxy/proxy;1",
classId: Components.ID("{51b469a0-edc1-11da-8ad9-0800200c9a66}"),
constructor: Proxy,
className: "FoxyProxy Proxy Component"});
},
fromDOM : function(node) {
this.name = node.getAttribute("name");
this.id = node.getAttribute("id") || fp.proxies.uniqueRandom();
this.notes = node.getAttribute("notes");
this.enabled = node.getAttribute("enabled") == "true"; // before autoconf so we conditionally load pac file
this.autoconf.fromDOM(node.getElementsByTagName("autoconf")[0]);
this.manualconf.fromDOM(node.getElementsByTagName("manualconf")[0]);
// 1.1 used "manual" instead of "mode" and was true/false only (for manual or auto)
this.mode = node.hasAttribute("manual") ?
(node.getAttribute("manual") == "true" ? "manual" : "auto") :
node.getAttribute("mode");
this.selectedTabIndex = node.getAttribute("selectedTabIndex") || "0";
this.lastresort = node.hasAttribute("lastresort") ? node.getAttribute("lastresort") == "true" : false; // new for 2.0
this.animatedIcons = node.hasAttribute("animatedIcons") ? node.getAttribute("animatedIcons") == "true" : !this.lastresort; // new for 2.4
this.includeInCycle = node.hasAttribute("includeInCycle") ? node.getAttribute("includeInCycle") == "true" : !this.lastresort; // new for 2.5
for (var i=0,temp=node.getElementsByTagName("match"); i<temp.length; i++) {
var j = this.matches.length;
this.matches[j] = new Match();
this.matches[j].fromDOM(temp[i]);
}
this.afterPropertiesSet();
},
toDOM : function(doc) {
var e = doc.createElement("proxy");
e.setAttribute("name", this.name);
e.setAttribute("id", this.id);
e.setAttribute("notes", this.notes);
e.setAttribute("enabled", this.enabled);
e.setAttribute("mode", this.mode);
e.setAttribute("selectedTabIndex", this.selectedTabIndex);
e.setAttribute("lastresort", this.lastresort);
e.setAttribute("animatedIcons", this.animatedIcons);
e.setAttribute("includeInCycle", this.includeInCycle);
var matchesElem = doc.createElement("matches");
e.appendChild(matchesElem);
for (var j=0; j<this.matches.length; j++) {
matchesElem.appendChild(this.matches[j].toDOM(doc));
}
e.appendChild(this.autoconf.toDOM(doc));
e.appendChild(this.manualconf.toDOM(doc));
return e;
},
set enabled(e) {
if (this.lastresort && !e) return; // can't ever disable this guy
this._enabled = e;
this._enabled && this._mode == "auto" && this.autoconf.loadPAC();
this.handleTimer();
},
get enabled() {return this._enabled;},
set mode(m) {
this._mode = m;
this._enabled && this._mode == "auto" && this.autoconf.loadPAC();
this.handleTimer();
},
afterPropertiesSet : function() {
// Load PAC if required. Note that loadPAC() is synchronous and if it fails, it changes our mode to "direct" or disables us.
this._enabled && this._mode == "auto" && this.autoconf.loadPAC();
// Some integrity maintenance: if this is a manual proxy and this.manualconf.proxy wasn't created during deserialization, disable us.
if (this._enabled && this._mode == "manual" && !this.manualconf.proxy) {
if (this.lastresort) {
// Switch lastresort to DIRECT since manualconf is corrupt--someone changed foxyproxy.xml manually, outside our GUI
this._mode = "direct";
}
else
this._enabled = false;
}
!this._enabled &&
fp.proxies.maintainIntegrity(this, false, true, false); // (proxy, isBeingDeleted, isBeingDisabled, isBecomingDIRECT)
},
handleTimer : function() {
var ac = this.autoconf;
ac.timer.cancel(); // always always always cancel first before doing anything
if (this._enabled && this._mode == "auto" && ac._autoReload) {
ac.timer.initWithCallback(ac, ac._reloadFreqMins*60000, CI.nsITimer.TYPE_REPEATING_SLACK);
}
},
get mode() {return this._mode;},
isMatch : function(uriStr) {
var white = -1;
for (var i=0; i<this.matches.length; i++) {
if (this.matches[i].enabled && this.matches[i].regex.test(uriStr)) {
if (this.matches[i].isBlackList) {
return false;
}
else if (white == -1) {
white = i; // continue checking for blacklist matches!
}
}
}
return white == -1 ? false : this.matches[white];
},
resolve : function(spec, host, mp) {
function _notifyUserOfError(spec) {
this.pacErrorNotification && fp.notifier.alert(fp.getMessage("foxyproxy"), fp.getMessage("proxy.error.for.url") + spec);
return null;
}
// See http://wp.netscape.com/eng/mozilla/2.0/relnotes/demo/proxy-live.html
var str = mp.pacResult = this.autoconf._resolver.getProxyForURI(spec, host);
if (str && str != "") {
str = str.toLowerCase();
var tokens = str.split(/\s*;\s*/), // Trim and split
proxies = [];
if (tokens[tokens.length-1] == "") // In case final token ends with semi-colon
tokens.length--;
for (var i=0; i<tokens.length; i++) {
var components = this.autoconf.parser.exec(tokens[i]);
if (!components) continue;
switch (components[1]) {
case "proxy":
proxies.push(proxyService.newProxyInfo("http", components[2], components[3], 0, 0, null));
break;
case "socks":
case "socks5":
proxies.push(proxyService.newProxyInfo("socks", components[2], components[3],
fp._proxyDNS ? CI.nsIProxyInfo.TRANSPARENT_PROXY_RESOLVES_HOST : 0, 0, null));
break;
case "socks4":
proxies.push(proxyService.newProxyInfo("socks4", components[2], components[3],
fp._proxyDNS ? CI.nsIProxyInfo.TRANSPARENT_PROXY_RESOLVES_HOST : 0, 0, null));
break;
case "direct":
proxies.push(this.direct);
break;
default:
return this._notifyUserOfError(spec);
}
}
// Chain the proxies
for (var i=1; i<=proxies.length-1; i++) {
proxies[i-1].failoverTimeout = 1800;
proxies[i-1].failoverProxy = proxies[i];
}
if (proxies[0] == null) {
return this._notifyUserOfError(spec);
}
else if (proxies[1]) {
proxies[0].failoverTimeout = 1800;
proxies[0].failoverProxy = proxies[1];
}
return proxies[0];
}
else {
// Resolver did not find a proxy, but this isn't an error condition
return null;
}
},
getProxy : function(spec, host, mp) {
switch (this._mode) {
case "manual":return this.manualconf.proxy;
case "auto":return this.resolve(spec, host, mp);
case "direct":return this.direct;
}
}
};
///////////////////////////// Match class///////////////////////
function Match() {
this.wrappedJSObject = this;
this.name = this.pattern = "";
this.isMultiLine = this._isRegEx = this.isBlackList = false;
this.enabled = true;
}
Match.prototype = {
QueryInterface: gQueryInterface,
__registration: function() {
return ({topics: null,
observerName: null,
contractId: "@leahscape.org/foxyproxy/match;1",
classId: Components.ID("{2b49ed90-f194-11da-8ad9-0800200c9a66}"),
constructor: Match,
className: "FoxyProxy Match Component"});
},
set pattern(p) {
this._pattern = p == null ? "" : p; // prevent null patterns
this.buildRegEx();
},
get pattern() {
return this._pattern;
},
set isRegEx(r) {
this._isRegEx = r;
this.buildRegEx();
},
get isRegEx() {
return this._isRegEx;
},
set isMultiLine(m) {
this._isMultiLine = m;
this.buildRegEx();
},
get isMultiLine() {
return this._isMultiLine;
},
buildRegEx : function() {
var pat = this._pattern;
if (!this._isRegEx) {
// Wildcards
pat = pat.replace(/\./g, '\\.');
pat = pat.replace(/\*/g, '.*');
pat = pat.replace(/\?/g, '.');
}
if (!this._isMultiLine) {
pat[0] != "^" && (pat = "^" + pat);
pat[pat.length-1] != "$" && (pat = pat + "$");
}
try {
this.regex = new RegExp(pat);
}
catch(e){
// ignore--we might be in a state where the regexp is invalid because
// _isRegEx hasn't been changed to false yet, so we executed the wildcard
// replace() calls. however, this code is about to re-run because we'll be
// changed to a wildcard and re-calculate the regex correctly.
}
},
fromDOM : function(node) {
this.name = node.hasAttribute("notes") ? node.getAttribute("notes") : (node.getAttribute("name") || ""); // name was called notes in v1.0
this._isRegEx = node.getAttribute("isRegEx") == "true";
this._pattern = node.hasAttribute("pattern") ? node.getAttribute("pattern") : "";
this.isBlackList = node.hasAttribute("isBlackList") ? node.getAttribute("isBlackList") == "true" : false; // new for 2.0
this.enabled = node.hasAttribute("enabled") ? node.getAttribute("enabled") == "true" : true; // new for 2.0
this.isMultiLine = node.hasAttribute("isMultiLine") ? node.getAttribute("isMultiLine") == "true" : false; // new for 2.0. Don't set _isMultiLine because isMultiLine sets the regex
},
toDOM : function(doc) {
var matchElem = doc.createElement("match");
matchElem.setAttribute("enabled", this.enabled);
matchElem.setAttribute("name", this.name);
matchElem.setAttribute("pattern", this._pattern);
matchElem.setAttribute("isRegEx", this.isRegEx);
matchElem.setAttribute("isBlackList", this.isBlackList);
matchElem.setAttribute("isMultiLine", this._isMultiLine);
return matchElem;
}
};
///////////////////////////// ManualConf class ///////////////////////
function ManualConf() {
this.wrappedJSObject = this;
}
ManualConf.prototype = {
QueryInterface: gQueryInterface,
_host: "",
_port: "",
_socksversion: "5",
_isSocks: false,
__registration: function() {
return ({topics: null,
observerName: null,
contractId: "@leahscape.org/foxyproxy/manualconf;1",
classId: Components.ID("{457e4d50-f194-11da-8ad9-0800200c9a66}"),
constructor: ManualConf,
className: "FoxyProxy ManualConfiguration Component"});
},
fromDOM : function(node) {
this._host = node.hasAttribute("host")? node.getAttribute("host") :
node.getAttribute("http") ? node.getAttribute("http"):
node.getAttribute("socks") ? node.getAttribute("socks"):
node.getAttribute("ssl") ? node.getAttribute("ssl"):
node.getAttribute("ftp") ? node.getAttribute("ftp"):
node.getAttribute("gopher") ? node.getAttribute("gopher"):""; //"host" is new for 2.5
this._port = node.hasAttribute("port")? node.getAttribute("port") :
node.getAttribute("httpport")? node.getAttribute("httpport"):
node.getAttribute("socksport")? node.getAttribute("socksport"):
node.getAttribute("sslport")? node.getAttribute("sslport"):
node.getAttribute("ftpport")? node.getAttribute("ftpport"):
node.getAttribute("gopherport")? node.getAttribute("gopherport"):""; // "port" is new for 2.5
this._socksversion = node.getAttribute("socksversion");
this._isSocks = node.hasAttribute("isSocks") ? node.getAttribute("isSocks") == "true" :
node.getAttribute("http") ? false:
node.getAttribute("ssl") ? false:
node.getAttribute("ftp") ? false:
node.getAttribute("gopher") ? false:
node.getAttribute("socks") ? true : false; // new for 2.5
this._makeProxy();
},
toDOM : function(doc) {
var e = doc.createElement("manualconf");
e.setAttribute("host", this._host);
e.setAttribute("port", this._port);
e.setAttribute("socksversion", this._socksversion);
e.setAttribute("isSocks", this._isSocks);
return e;
},
_makeProxy : function() {
if (!this._host || !this._port) {
return;
}
this.proxy = this._isSocks ? proxyService.newProxyInfo(this._socksversion == "5"?"socks":"socks4", this._host, this._port,
fp.proxyDNS ? CI.nsIProxyInfo.TRANSPARENT_PROXY_RESOLVES_HOST : 0, 0, null): // never ignore, never failover
proxyService.newProxyInfo("http", this._host, this._port, 0, 0, null);
},
get host() {return this._host;},
set host(e) {
this._host = e;
this._makeProxy();
},
get port() {return this._port;},
set port(e) {
this._port = e;
this._makeProxy();
},
get isSocks() {return this._isSocks;},
set isSocks(e) {
this._isSocks = e;
this._makeProxy();
},
get socksversion() {return this._socksversion;},
set socksversion(e) {
this._socksversion = e;
this._makeProxy();
}
};
///////////////////////////// AutoConf class ///////////////////////
function AutoConf(owner, node) {
this.wrappedJSObject = this;
this.timer = CC["@mozilla.org/timer;1"].createInstance(CI.nsITimer);
this.owner = owner;
this.fromDOM(node);
this._resolver = CC["@mozilla.org/network/proxy-auto-config;1"]
.createInstance(CI.nsIProxyAutoConfig);
}
AutoConf.prototype = {
QueryInterface: gQueryInterface,
parser : /\s*(\S+)\s*(?:([^:]+):?(\d*)\s*[;]?\s*)?/,
status : 0,
error : null,
loadNotification: true,
errorNotification: true,
url: "",
_pac: "",
_autoReload: false,
_reloadFreqMins: 60,
__registration: function() {
return ({topics: null,
observerName: null,
contractId: "@leahscape.org/foxyproxy/autoconf;1",
classId: Components.ID("{54382370-f194-11da-8ad9-0800200c9a66}"),
constructor: AutoConf,
className: "FoxyProxy AutoConfiguration Component"});
},
set autoReload(e) {
this._autoReload = e;
if (!e && this.timer) {
this.timer.cancel();
}
},
get autoReload() {return this._autoReload;},
set reloadFreqMins(e) {
if (isNaN(e) || e < 1) {
e = 60;
}
else {
this._reloadFreqMins = e;
}
},
get reloadFreqMins() {return this._reloadFreqMins;},
fromDOM : function(node) {
if (node) {
this.url = node.getAttribute("url");
this.loadNotification = node.hasAttribute("loadNotification") ? node.getAttribute("loadNotification") == "true" : true; // new for 2.5
this.errorNotification = node.hasAttribute("errorNotification") ? node.getAttribute("errorNotification") == "true" : true; // new for 2.5
this._autoReload = node.hasAttribute("autoReload") ? node.getAttribute("autoReload") == "true" : true; // new for 2.5
this._reloadFreqMins = node.hasAttribute("reloadFreqMins") ? node.getAttribute("reloadFreqMins") : 60; // new for 2.5
}
},
toDOM : function(doc) {
var e = doc.createElement("autoconf");
e.setAttribute("url", this.url);
e.setAttribute("loadNotification", this.loadNotification);
e.setAttribute("errorNotification", this.errorNotification);
e.setAttribute("autoReload", this._autoReload);
e.setAttribute("reloadFreqMins", this._reloadFreqMins);
return e;
},
loadPAC : function() {
this._pac = "";
try {
var req = CC["@mozilla.org/xmlextras/xmlhttprequest;1"]
.createInstance(CI.nsIXMLHttpRequest);
req.open("GET", this.url, false); // false means synchronous
req.send(null);
this.status = req.status;
if (this.status == 200 || (this.status == 0 && (this.url.indexOf("file://") == 0 || this.url.indexOf("ftp://") == 0))) {
try {
this._pac = req.responseText;
this._resolver.init(this.url, this._pac);
this.loadNotification && fp.notifier.alert(fp.getMessage("pac.status"), fp.getMessage("pac.status.success", [this.owner.name]));
this.owner._enabled = true; // Use _enabled so we don't loop infinitely
this.error = null;
}
catch(e) {
this._pac = "";
this.badPAC("pac.status.error", e);
}
}
else {
this.badPAC("pac.status.loadfailure");
}
}
catch(e) {
this.badPAC("pac.status.loadfailure", e);
}
},
notify : function(timer) {
// nsITimer callback
this.loadPAC();
},
badPAC : function(res, e) {
if (e) {
dump(e) + "\n";
this.error = e;
}
this.errorNotification && fp.notifier.alert(fp.getMessage("pac.status"), fp.getMessage(res, [this.owner.name, this.status, this.error]));
if (this.owner.lastresort)
this.owner.mode = "direct"; // don't disable!
else
this.owner.enabled = false;
}
};
///////////////////////////// MatchingProxy class ///////////////////////
function MatchingProxy() {
this.wrappedJSObject = this;
}
MatchingProxy.prototype = {
QueryInterface: gQueryInterface,
errMsg : "", // Default value for MPs which don't have errors
pacResult : "", // Default value for MPs which don't have PAC results (i.e., they probably don't use PACs or the PAC returned null
_init : function() {
this.randomMsg = fp.getMessage("proxy.random");
this.allMsg = fp.getMessage("proxy.all.urls");
this.regExMsg = fp.getMessage("foxyproxy.regex.label");
this.wcMsg = fp.getMessage("foxyproxy.wildcard.label");
this.blackMsg = fp.getMessage("foxyproxy.blacklist.label");
this.whiteMsg = fp.getMessage("foxyproxy.whitelist.label");
},
init : function(proxy, aMatch, uriStr, type, errMsg) {
this.timestamp = Date.now();
(!this.randomMsg && this._init());
this.uri = uriStr;
this.proxy = proxy;
this.proxyName = proxy.name; // Make local copy so logg history doesn't change if user changes proxy
this.proxyNotes = proxy.notes; // ""
if (type == "pat") {
this.matchName = aMatch.name; // Make local copy so logg history doesn't change if user changes proxy
this.matchPattern = aMatch.pattern; // ""
this.matchType = aMatch.isRegEx ? this.regExMsg : this.wcMsg;
this.whiteBlack = aMatch.isBlackList ? this.blackMsg : this.whiteMsg; // ""
}
else if (type == "ded") {
this.whiteBlack = this.matchName = this.matchPattern = this.matchType = this.allMsg;
}
else if (type == "rand") {
this.matchName = this.matchPattern = this.matchType = this.whiteBlack = this.randomMsg;
}
else if (type == "round") {
}
else if (type == "err") {
this.errMsg = errMsg;
}
return this;
},
__registration: function() {
return ({topics: null,
observerName: null,
contractId: "@leahscape.org/foxyproxy/matchingproxy;1",
classId: Components.ID("{c5338500-f195-11da-8ad9-0800200c9a66}"),
constructor: MatchingProxy,
className: "FoxyProxy MatchingProxy Component"});
}
};

149
src/components/register.js Normal file
View File

@ -0,0 +1,149 @@
/*** Generic JS XPCOM registration code ***/
/*** Eric H. Jung (eric.jung @ yahoo.com), inspired by Mook. ***/
// Enter filenames that contain XPCOM components here
var modules = [ "superadd.js", "foxyproxy.js", "proxy.js"];
function DumpException(e) {
try {
dump("File: " + e.filename + "\n");
dump("Line: " + e.lineNumber + "\n");
if (e.location) {
dump("Stack File: " + e.location.filename + "\n");
dump("Stack Line: " + e.location.lineNumber + "\n");
dump("Stack Source: " + e.location.sourceLine + "\n");
}
}
catch(e) {
dump("Can't complete dump: " + e + "\n");
}
dump("Complete exception is " + e + "\n\n");
}
(function(){
const CI = Components.interfaces, CC = Components.classes, CR = Components.results;
var self;
var fileProtocolHandler = CC["@mozilla.org/network/protocol;1?name=file"].createInstance(CI["nsIFileProtocolHandler"]);
if ("undefined" != typeof(__LOCATION__)) {
// preferred way
self = __LOCATION__;
}
else {
self = fileProtocolHandler.getFileFromURLSpec(Components.Exception().filename);
}
var dir = self.parent; // the directory this file is in
var loader = CC["@mozilla.org/moz/jssubscript-loader;1"].createInstance(CI["mozIJSSubScriptLoader"]);
for (var i in modules) {
try {
var filePath = dir.clone();
filePath.append(modules[i]);
// filePath is a nsILocalFile of the file we want to load
var f = fileProtocolHandler.getURLSpecFromFile(filePath);
loader.loadSubScript(f);
}
catch (e) {
dump("Error loading " + modules[i] + "\n");
DumpException(e);
throw(e);
}
}
})();
function ComponentInfo(o) {
if (typeof(o.prototype.__registration) != "function") {
dump("Please define function __registration() in all XPCOM components\n");
}
var r = o.prototype.__registration();
this.classId = r.classId;
this.contractId = r.contractId;
this.className = r.className;
this.topics = r.topics;
this.observerName = r.observerName;
this.factory = {
createInstance: function(aOuter, aIID) {
if (aOuter)
throw CR.NS_ERROR_NO_AGGREGATION;
return (new this.constructor).QueryInterface(aIID);
}
};
this.factory.constructor = r.constructor;
}
ComponentInfo.prototype.printMe = function() {
dump("this.classId = " + this.classId + "\n");
dump("this.contractId = " + this.contractId + "\n");
dump("this.className = " + this.className + "\n");
dump("this.topics = " + this.topics + "\n");
dump("this.observerName = " + this.observerName + "\n");
dump("this.factory = " + this.factory + "\n");
dump("this.factory.constructor = " + this.factory.constructor + "\n");
}
function NSGetModule(compMgr, filespec) {
var gModule = {
CI : Components.interfaces,
CC : Components.classes,
CR : Components.results,
registerSelf: function (aCompMgr, aFileSpec, aLocation, aType) {
try {
var catman = CC["@mozilla.org/categorymanager;1"].getService(CI.nsICategoryManager);
aCompMgr.QueryInterface(CI.nsIComponentRegistrar);
for (var i in this._objects) {
var obj = this._objects[i];
//dump("*** Registering: " + obj.printMe() + "\n");
aCompMgr.registerFactoryLocation(obj.classId, obj.className, obj.contractId, aFileSpec, aLocation, aType);
if (obj.topics && obj.observerName) {
for (var j in obj.topics) {
var contractId = obj.contractId;
if (obj.topics[j] == "app-startup") {
// Weird hack needed for app-startup.
// See my user comment at http://www.xulplanet.com/tutorials/mozsdk/observerserv.php
contractId = "service," + contractId;
}
catman.addCategoryEntry(obj.topics[j], obj.observerName, contractId, true, true);
}
}
}
}
catch (e) {
DumpException(e);
}
},
unregisterSelf: function(aCompMgr, aFileSpec, aLocation) {
var catman = CC["@mozilla.org/categorymanager;1"].getService(CI.nsICategoryManager);
aCompMgr.QueryInterface(CI.nsIComponentRegistrar);
for (var i in this._objects) {
var obj = this._objects[i];
for (var j in obj.topics) {
catman.deleteCategoryEntry(obj.topics[j], obj.observerName, true);
}
aCompMgr.unregisterFactoryLocation(obj.classId, aFileSpec);
}
},
getClassObject: function(aCompMgr, aCID, aIID) {
if (!aIID.equals(CI.nsIFactory)) throw CR.NS_ERROR_NOT_IMPLEMENTED;
for (var i in this._objects) {
if (aCID.equals(this._objects[i].classId))
return this._objects[i].factory;
}
throw CR.NS_ERROR_NO_INTERFACE;
},
canUnload: function(aCompMgr) {
return true;
},
_objects: {} //ComponentInfo instances go here
};
// Enter names of components here
var components = [foxyproxy, MatchingProxy, Proxy, Match, ManualConf, AutoConf];
for (var i in components) {
gModule._objects[i] = new ComponentInfo(components[i]);
}
return gModule;
}

207
src/components/superadd.js Normal file
View File

@ -0,0 +1,207 @@
var CI = Components.interfaces, CC = Components.classes, gFP;
const DEF_PATTERN = "*://${3}${6}/*";
function SuperAdd(e) { this.elemName = e; this.elemNameCamelCase = e=="autoadd"?"AutoAdd":"QuickAdd";}
function QuickAdd() { SuperAdd.apply(this, arguments); }
SuperAdd.prototype = {
owner : null,
_reload : true,
_enabled : false,
_proxy : null,
_notify : true,
_prompt : false,
match : null,
matchName : null,
elemName : null,
elemNameCamelCase : null,
_urlTemplate : DEF_PATTERN,
_ios : CC["@mozilla.org/network/io-service;1"].getService(CI.nsIIOService),
init : function(matchName, fp) {
gFP = fp;
this.matchName = matchName;
this.match = CC["@leahscape.org/foxyproxy/match;1"].createInstance(CI.nsISupports).wrappedJSObject;
this.match.isMultiLine = true;
this.match.name = this.matchName;
},
get enabled() { return this._enabled; },
set enabled(e) {
this._enabled = e;
gFP.writeSettings();
this.elemName == "autoadd" && gBroadcast(e, "foxyproxy-autoadd-toggle");
},
get urlTemplate() { return this._urlTemplate; },
set urlTemplate(u) {
this._urlTemplate = u.replace(/^\s*|\s*$/g,"");
gFP.writeSettings();
},
get reload() { return this._reload; },
set reload(e) {
this._reload = e;
gFP.writeSettings();
},
get proxy() { return this._proxy; },
set proxy(p) {
this._proxy = p;
gFP.writeSettings();
},
get notify() { return this._notify; },
set notify(n) {
this._notify = n;
gFP.writeSettings();
},
get prompt() { return this._prompt; },
set prompt(n) {
this._prompt = n;
gFP.writeSettings();
},
setMatchPattern : function(p) {
this.match.pattern = p.replace(/^\s*|\s*$/g,"");
gFP.writeSettings();
},
setMatchIsRegEx : function(e) {
this.match.isRegEx = e;
gFP.writeSettings();
},
perform : function(location, content) {
var url = location.href;
if (this.match.pattern != "") { // is this necessary anymore now that we have better user input validation?
// Does this URL already match an existing pattern for a proxy?
var p = gFP.proxies.getMatches(url).proxy;
if (p.lastresort) { // no current proxies match (except the lastresort, which matches everything anyway)
if (this.match.regex.test(content)) {
this.addPattern(location);
return true;
}
}
}
},
applyTemplate : function(url) {
try {
var parsedUrl = this._ios.newURI(url, "UTF-8", null).QueryInterface(CI.nsIURL);
var ret = this._urlTemplate.replace("${0}", parsedUrl.scheme?parsedUrl.scheme:"", "g");
ret = ret.replace("${1}", parsedUrl.username?parsedUrl.username:"", "g");
ret = ret.replace("${2}", parsedUrl.password?parsedUrl.password:"", "g");
ret = ret.replace("${3}", parsedUrl.userPass?(parsedUrl.userPass+"@"):"", "g");
ret = ret.replace("${4}", parsedUrl.host?parsedUrl.host:"", "g");
ret = ret.replace("${5}", parsedUrl.port == -1?"":parsedUrl.port, "g");
ret = ret.replace("${6}", parsedUrl.hostPort?parsedUrl.hostPort:"", "g");
ret = ret.replace("${7}", parsedUrl.prePath?parsedUrl.prePath:"", "g");
ret = ret.replace("${8}", parsedUrl.directory?parsedUrl.directory:"", "g");
ret = ret.replace("${9}", parsedUrl.fileBaseName?parsedUrl.fileBaseName:"", "g");
ret = ret.replace("${10}", parsedUrl.fileExtension?parsedUrl.fileExtension:"", "g");
ret = ret.replace("${11}", parsedUrl.fileName?parsedUrl.fileName:"", "g");
ret = ret.replace("${12}", parsedUrl.path?parsedUrl.path:"", "g");
ret = ret.replace("${13}", parsedUrl.ref?parsedUrl.ref:"", "g");
ret = ret.replace("${14}", parsedUrl.query?parsedUrl.query:"", "g");
return ret.replace("${15}", parsedUrl.spec?parsedUrl.spec:"", "g");
}
catch(e) { /*happens for about:blank, about:config, etc.*/}
return url;
},
addPattern : function(location) {
var pat = this.applyTemplate(location.href);
var match = CC["@leahscape.org/foxyproxy/match;1"].createInstance(CI.nsISupports).wrappedJSObject;
match.name = this.matchName;
match.pattern = pat;
match.isRegEx = this.match.isRegEx; // todo: make this dynamic
this._proxy.matches.push(match);
this._notify && gFP.notifier.alert(gFP.getMessage("foxyproxy.quickadd.label"), gFP.getMessage("superadd.url.added", [pat, this._proxy.name]));
this._reload && location.reload();
},
allowed : function() {
for (var i=0,p; i<gFP.proxies.length && (p=gFP.proxies.item(i)); i++)
if (p.enabled && !p.lastresort)
return true;
return false;
},
// Disable superadd if our proxy is being deleted/disabled
maintainIntegrity : function(proxyId, isBeingDeleted) {
if (this._proxy && this._proxy.id == proxyId) {
// Turn it off
this.enabled && (this.enabled = false);
if (isBeingDeleted) {
// Clear it
this.proxy = null;
}
return true;
}
return false;
},
toDOM : function(doc) {
var e = doc.createElement(this.elemName);
e.setAttribute("enabled", this.enabled);
e.setAttribute("urlTemplate", this._urlTemplate);
e.setAttribute("reload", this._reload);
e.setAttribute("notify", this._notify);
e.setAttribute("prompt", this._prompt);
this._proxy && e.setAttribute("proxy-id", this._proxy.id);
e.appendChild(this.match.toDOM(doc));
return e;
},
fromDOM : function(doc) {
var n = doc.getElementsByTagName(this.elemName)[0];
var proxyId;
if (n) {
this._enabled = n.getAttribute("enabled") == "true";
this._urlTemplate = n.getAttribute("urlTemplate");
((!this._urlTemplate || this._urlTemplate == "") && (this._urlTemplate = DEF_PATTERN));
this._reload = n.getAttribute("reload") == "true";
this._notify = n.getAttribute("notify") == "true";
this._prompt = n.getAttribute("prompt") == "true";
proxyId = n.getAttribute("proxy-id");
this.match.fromDOM(n.getElementsByTagName("match")[0]);
(!this.match.name || this.match.name == "") && (this.match.name = gFP.getMessage("foxyproxy.autoadd.pattern.label"));
this.match.isMultiLine = true;
}
var error;
if (proxyId) {
// Ensure it exists and is enabled and isn't "direct"
this._proxy = gFP.proxies.getProxyById(proxyId);
this._enabled && (!this._proxy || !this._proxy.enabled) && (error = true);
}
else if (this._enabled)
error = true;
if (error) {
this._enabled = false;
gFP.alert(null, gFP.getMessage("superadd.error", [this.elemName]));
}
}
};
// Next line must come *after* SuperAdd.prototype definition
QuickAdd.prototype = new SuperAdd();
QuickAdd.prototype._notifyWhenCanceled = true;
QuickAdd.prototype.__defineGetter__("notifyWhenCanceled", function() { return this._notifyWhenCanceled; })
QuickAdd.prototype.__defineSetter__("notifyWhenCanceled", function(n) {
this._notifyWhenCanceled = n;
gFP.writeSettings();
});
QuickAdd.prototype.toDOM = function(doc) {
var e = SuperAdd.prototype.toDOM.apply(this, arguments);
e.setAttribute("notifyWhenCanceled", this._notifyWhenCanceled);
return e;
}
QuickAdd.prototype.fromDOM = function(doc) {
var e = SuperAdd.prototype.fromDOM.apply(this, arguments);
var n = doc.getElementsByTagName(this.elemName)[0];
if (n) {
this._notifyWhenCanceled = n.hasAttribute("notifyWhenCanceled") ?
n.getAttribute("notifyWhenCanceled") == "true" : true;
}
}

31
src/content/about.js Normal file
View File

@ -0,0 +1,31 @@
/**
FoxyProxy
Copyright (C) 2006, 2007 Eric H. Jung and LeahScape, Inc.
http://foxyproxy.mozdev.org/
eric.jung@yahoo.com
This source code is released under the GPL license,
available in the LICENSE file at the root of this installation
and also online at http://www.gnu.org/licenses/gpl.txt
All Rights Reserved. U.S. PATENT PENDING.
**/
var overlay;
function onLoad() {
// window.arguments is null if user opened about.xul from EM's Options button
overlay = window.arguments && window.arguments[0].inn.overlay;
!overlay &&
(overlay = Components.classes["@mozilla.org/appshell/window-mediator;1"]
.getService(Components.interfaces.nsIWindowMediator).getMostRecentWindow("navigator:browser").foxyproxy);
var rdfs = Components.classes["@mozilla.org/rdf/rdf-service;1"]
.getService(Components.interfaces.nsIRDFService);
var ds = Components.classes["@mozilla.org/extensions/manager;1"]
.getService(Components.interfaces.nsIExtensionManager).datasource;
var valueLiteral = ds.GetTarget(rdfs.GetResource("urn:mozilla:item:foxyproxy@eric.h.jung"), rdfs.GetResource("http://www.mozilla.org/2004/em-rdf#version"), true);
var v = valueLiteral.QueryInterface(Components.interfaces.nsIRDFLiteral).Value;
var ver = document.getElementById("ver");
ver.value += " " + v;
sizeToContent();
}

142
src/content/about.xul Normal file
View File

@ -0,0 +1,142 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
FoxyProxy
Copyright (C) 2006, 2007 Eric H. Jung and LeahScape, Inc.
http://foxyproxy.mozdev.org/
eric.jung@yahoo.com
This source code is released under the GPL license,
available in the LICENSE file at the root of this installation
and also online at http://www.gnu.org/licenses/gpl.txt
All Rights Reserved. U.S. PATENT PENDING.
-->
<?xml-stylesheet href="foxyproxy.css" type="text/css"?>
<!DOCTYPE overlay SYSTEM "chrome://foxyproxy/locale/foxyproxy.dtd">
<dialog
id="foxyproxyaboutdlg"
title="&foxyproxy.about.label; &foxyproxy.label;"
orient="vertical"
autostretch="always"
onload="onLoad();"
buttons="accept"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
windowtype="foxyproxy"
persist="screenX screenY width height">
<script src="about.js"/>
<groupbox align="center" orient="horizontal">
<vbox align="center">
<hbox align="center">
<image id="foxyproxy-image"
onclick="overlay.openAndReuseOneTabPerURL('http://foxyproxy.mozdev.org/');"
tooltiptext="http://foxyproxy.mozdev.org/"/>
<grid style="margin-left: 1em;">
<columns>
<column/>
<column/>
</columns>
<groupbox style="margin-left: 1em;">
<rows>
<row>
<label id="ver" value="&foxyproxy.version;" style="font-weight: bold; font-size: large;"/>
<spacer/>
</row>
<row>
<label value="&foxyproxy.createdBy;"/>
<label value="Eric H. Jung" class="text-link"
onclick="overlay.openAndReuseOneTabPerURL('mailto:eric.jung@yahoo.com');" tooltiptext="mailto:eric.jung@yahoo.com"/>
</row>
<row>
<label value="&foxyproxy.website;"/>
<label value="Zenia Zenin"/>
</row>
<row>
<label value="&foxyproxy.graphics;"/>
<label value="Kseniya Galper, Michael Bermudez"/>
</row>
<label value="&foxyproxy.copyright; 2006 LeahScape, Inc."/>
<label value="&foxyproxy.rights;"/>
<label value="&foxyproxy.released;"/>
<label value="http://foxyproxy.mozdev.org"
class="text-link"
onclick="overlay.openAndReuseOneTabPerURL('http://foxyproxy.mozdev.org/');" tooltiptext="http://foxyproxy.mozdev.org/"/>
<label value="http://passwordmaker.org"
class="text-link"
onclick="overlay.openAndReuseOneTabPerURL('http://passwordmaker.org/');" tooltiptext="http://passwordmaker.org/"/>
</rows>
</groupbox>
</grid>
</hbox>
<separator/>
<groupbox style="margin: 1em; padding-left: 1em; padding-right: 1em;">
<caption label="&foxyproxy.translations;"/>
<separator/>
<grid>
<columns>
<column style="margin-right: 2em;"/>
<column/>
</columns>
<rows>
<row>
<grid>
<columns>
<column style="margin-right: 1em;"/>
<column/>
</columns>
<rows>
<row><label value="&foxyproxy.chinese.simplified;"/><label value="rickcart" style="font-weight: bold;"/></row>
<row><label value="&foxyproxy.chinese.traditional;"/><label value="sfyang" style="font-weight: bold;"/></row>
<row><label value="&foxyproxy.croatian;"/><label value="krcko" style="font-weight: bold;"/></row>
<row><label value="&foxyproxy.czech;"/><label value="klokan" style="font-weight: bold;"/></row>
<row><label value="&foxyproxy.danish;"/><label value="AlleyKat" style="font-weight: bold;"/></row>
<row><label value="&foxyproxy.dutch;"/><label value="markh" style="font-weight: bold;"/></row>
<row><label value="&foxyproxy.english;"/><label value="Eric H. Jung" class="text-link" style="font-weight: bold;"
onclick="overlay.openAndReuseOneTabPerURL('mailto:eric.jung@yahoo.com');" tooltiptext="mail"/></row>
<row><label value="&foxyproxy.french;"/><label value="Goofy, jojaba, arno" style="font-weight: bold;"/></row>
<row><label value="&foxyproxy.german;"/><label value="Jörn Hartroth," style="font-weight: bold;"/></row>
<row><spacer/><label value="Marten Seeman" style="font-weight: bold;"/></row>
<row><label value="&foxyproxy.greek;"/><label value="Sonickydon" style="font-weight: bold;"/></row>
<row><label value="&foxyproxy.hungarian;"/><label value="kami" style="font-weight: bold;"/></row>
<row><label value="&foxyproxy.italian;"/><label value="MatrixIsAllOver," style="font-weight: bold;"/></row>
<row><spacer/><label value="l0stintranslation" style="font-weight: bold;"/></row>
</rows>
</grid>
<grid>
<columns>
<column style="margin-right: 1em;"/>
<column/>
</columns>
<rows>
<row><label value="&foxyproxy.persian;"/><label value="Pedram Veisi" style="font-weight: bold;"/></row>
<row><label value="&foxyproxy.polish;"/><label value="teo" style="font-weight: bold;"/></row>
<row><label value="&foxyproxy.portugese.brazilian;"/><label value="pedsann" style="font-weight: bold;"/></row>
<row><label value="&foxyproxy.portugese.portugal;"/><label value="Nuno F." style="font-weight: bold;"/></row>
<row><label value="&foxyproxy.russian;"/><label value="Igor N. Avtaev" style="font-weight: bold;"/></row>
<row><label value="&foxyproxy.slovak;"/><label value="Rastislav Hubocan" style="font-weight: bold;"/></row>
<row><label value="&foxyproxy.spanish.argentina;"/><label value="acushnir" style="font-weight: bold;"/></row>
<row><label value="&foxyproxy.spanish.spain;"/><label value="Proyecto Nave"
onclick="overlay.openAndReuseOneTabPerURL('http://www.proyectonave.es/');"
class="text-link" stlye="font-weight: bold;" tooltiptext="http://www.proyectonave.es/"/></row>
<row><label value="&foxyproxy.thai.thailand;"/><label value="Qen" style="font-weight: bold;"/></row>
<row><label value="&foxyproxy.turkish;"/><label value="consyst" style="font-weight: bold;"/></row>
<row><label value="&foxyproxy.swedish;"/><label value="StiffeL" style="font-weight: bold;"/></row>
<row><label value="&foxyproxy.ukrainian;"/><label value="MozUA" style="font-weight: bold;"/></row>
<row><label value="&foxyproxy.your.language;"/>
<label value="&foxyproxy.your.name.here;" onclick="overlay.openAndReuseOneTabPerURL('http://www.babelzilla.org/');"
class="text-link" style="font-weight: bold;" tooltiptext="http://www.babelzilla.org/"/></row>
</rows>
</grid>
</row>
</rows>
</grid>
<separator class="thin"/>
</groupbox>
</vbox>
</groupbox>
</dialog>

320
src/content/addeditproxy.js Normal file
View File

@ -0,0 +1,320 @@
/**
FoxyProxy
Copyright (C) 2006, 2007 Eric H. Jung and LeahScape, Inc.
http://foxyproxy.mozdev.org/
eric.jung@yahoo.com
This source code is released under the GPL license,
available in the LICENSE file at the root of this installation
and also online at http://www.gnu.org/licenses/gpl.txt
All Rights Reserved. U.S. PATENT PENDING.
**/
var urlsTree, proxy, foxyproxy, autoconfurl, overlay, isWindows;
const CI = Components.interfaces, CC = Components.classes;
function onLoad() {
isWindows = CC["@mozilla.org/xre/app-info;1"].getService(CI.nsIXULRuntime).OS == "WINNT";
overlay = CC["@mozilla.org/appshell/window-mediator;1"]
.getService(CI.nsIWindowMediator).getMostRecentWindow("navigator:browser").foxyproxy;
autoconfurl = document.getElementById("autoconfurl");
foxyproxy = CC["@leahscape.org/foxyproxy/service;1"]
.getService(CI.nsISupports).wrappedJSObject;
if (window.arguments[0].inn.torwiz) {
document.getElementById("torwiz-broadcaster").hidden = true;
document.getElementById("not-torwiz-broadcaster").hidden = false;
urlsTree = document.getElementById("torWizUrlsTree");
}
else
urlsTree = document.getElementById("urlsTree");
proxy = window.arguments[0].inn.proxy;
document.getElementById("proxyname").value = proxy.name;
document.getElementById("proxynotes").value = proxy.notes;
document.getElementById("animatedIcons").checked = proxy.animatedIcons;
document.getElementById("cycleEnabled").checked = proxy.includeInCycle;
document.getElementById("tabs").selectedIndex = proxy.selectedTabIndex;
document.getElementById("proxyenabled").checked = proxy.enabled;
document.getElementById("mode").value = proxy.mode;
toggleMode(proxy.mode);
document.getElementById("host").value = proxy.manualconf.host;
document.getElementById("port").value = proxy.manualconf.port;
document.getElementById("isSocks").checked = proxy.manualconf.isSocks;
onIsSocks(proxy.mode == "manual" && proxy.manualconf.isSocks);
document.getElementById("socksversion").value = proxy.manualconf.socksversion;
autoconfurl.value = proxy.autoconf.url;
if (proxy.lastresort) {
document.getElementById("default-proxy-broadcaster").setAttribute("disabled", "true");
document.getElementById("proxyname").disabled =
document.getElementById("proxynotes").disabled = true;
document.getElementById("patternstab").hidden = true;
}
document.getElementById("pacLoadNotificationEnabled").checked = proxy.autoconf.loadNotification;
document.getElementById("pacErrorNotificationEnabled").checked = proxy.autoconf.errorNotification;
document.getElementById("autoConfURLReloadEnabled").checked = proxy.autoconf.autoReload;
document.getElementById("autoConfReloadFreq").value = proxy.autoconf.reloadFreqMins;
_updateView();
sizeToContent();
}
function trim(s) {
return s.replace(/^\s*|\s*$/g, "");
}
function onOK() {
var name = trim(document.getElementById("proxyname").value);
if (!name) {
foxyproxy.alert(this, foxyproxy.getMessage("proxy.name.required"));
return false;
}
var enabled = document.getElementById("proxyenabled").checked,
host = trim(document.getElementById("host").value),
port = document.getElementById("port").value,
url = trim(autoconfurl.value),
reloadfreq = document.getElementById("autoConfReloadFreq").value;
var mode = document.getElementById("mode").value;
if (enabled) {
if (mode == "auto") {
if (!_checkUri())
return false;
}
else if (mode == "manual") {
if (!host) {
if (!port) {
foxyproxy.alert(this, foxyproxy.getMessage("nohostport"));
return false;
}
foxyproxy.alert(this, foxyproxy.getMessage("nohost2"));
return false;
}
else if (!port) {
foxyproxy.alert(this, foxyproxy.getMessage("noport2"));
return false;
}
}
}
if (!hasWhite() &&
!overlay.ask(this, foxyproxy.getMessage((window.arguments[0].inn.torwiz ? "torwiz.nopatterns" : "no.white.patterns")))) return false;
proxy.name = name;
proxy.notes = document.getElementById("proxynotes").value;
proxy.selectedTabIndex = document.getElementById("tabs").selectedIndex;
proxy.autoconf.url = url;
proxy.autoconf.loadNotification = document.getElementById("pacLoadNotificationEnabled").checked;
proxy.autoconf.errorNotification = document.getElementById("pacErrorNotificationEnabled").checked;
proxy.autoconf.autoReload = document.getElementById("autoConfURLReloadEnabled").checked;
proxy.autoconf.reloadFreqMins = reloadfreq;
proxy.mode = mode; // set this first to control PAC loading
proxy.enabled = enabled;
proxy.manualconf.host = host;
proxy.manualconf.port = port;
proxy.manualconf.isSocks = document.getElementById("isSocks").checked;
proxy.manualconf.socksversion = document.getElementById("socksversion").value;
proxy.animatedIcons = document.getElementById("animatedIcons").checked;
proxy.includeInCycle = document.getElementById("cycleEnabled").checked;
proxy.afterPropertiesSet();
window.arguments[0].out = {proxy:proxy};
return true;
}
function hasWhite() {
for (var i=0, len=proxy.matches.length; i<len; i++)
if (!proxy.matches[i].isBlackList) return true;
return false;
}
function _checkUri() {
var url = trim(autoconfurl.value);
if (url.indexOf("://") == -1) {
// User didn't specify a scheme, so assume he means file:///
url = url.replace(/\\/g,"/"); // replaces backslashes with forward slashes; probably not strictly necessary
if (url[0] != "\\" && url[0] != "/") url="/"+url; // prepend a leading slash if necessary
url="file:///" + (isWindows?"C:":"") + url;
autoconfurl.value = url; // copy back to the UI
}
try {
return CC["@mozilla.org/network/io-service;1"]
.getService(CI.nsIIOService).newURI(url, "UTF-8", null);
}
catch(e) {
foxyproxy.alert(this, foxyproxy.getMessage("invalid.url"));
return false;
}
}
function onAddEdit(isNew) {
var idx = urlsTree.currentIndex;
if (!isNew && idx == -1) return; // safety; may not be necessary anymore
var params = isNew ?
{inn:{overlay:overlay, name:"", pattern:"", regex:false, black:false, enabled:true}, out:null} :
{inn:{overlay:overlay, name:proxy.matches[idx].name,
pattern:proxy.matches[idx].pattern, regex:proxy.matches[idx].isRegEx,
black:proxy.matches[idx].isBlackList,
enabled:proxy.matches[idx].enabled}, out:null};
window.openDialog("chrome://foxyproxy/chrome/pattern.xul", "",
"chrome, dialog, modal, resizable=yes", params).focus();
if (params.out) {
params = params.out;
if (isNew) {
var match = CC["@leahscape.org/foxyproxy/match;1"].createInstance(CI.nsISupports).wrappedJSObject;
match.name = params.name;
match.pattern = params.pattern;
match.isRegEx = params.isRegEx;
match.isBlackList = params.isBlackList;
match.enabled = params.isEnabled;
proxy.matches.push(match);
}
else {
// Store cur selection
var sel = urlsTree.currentIndex;
proxy.matches[idx].name = params.name;
proxy.matches[idx].pattern = params.pattern;
proxy.matches[idx].isRegEx = params.isRegEx;
proxy.matches[idx].isBlackList = params.isBlackList;
proxy.matches[idx].enabled = params.isEnabled;
}
_updateView();
// Select item
urlsTree.view.selection.select(isNew?urlsTree.view.rowCount-1:sel);
}
}
function setButtons() {
document.getElementById("tree-row-selected").setAttribute("disabled", urlsTree.currentIndex == -1);
onAutoConfUrlInput();
}
function _updateView() {
urlsTree.view = {
rowCount : proxy.matches.length,
getCellText : function(row, column) {
var s = column.id ? column.id : column;
switch(s) {
case "nameCol":return proxy.matches[row].name;
case "patternCol":return proxy.matches[row].pattern;
case "patternTypeCol":return foxyproxy.getMessage(proxy.matches[row].isRegEx ? "foxyproxy.regex.label" : "foxyproxy.wildcard.label");
case "blackCol":return foxyproxy.getMessage(proxy.matches[row].isBlackList ? "foxyproxy.blacklist.label" : "foxyproxy.whitelist.label");
}
},
setCellValue: function(row, col, val) {proxy.matches[row].enabled = val;},
getCellValue: function(row, col) {return proxy.matches[row].enabled;},
isSeparator: function(aIndex) { return false; },
isSorted: function() { return false; },
isEditable: function(row, col) { return false; },
isContainer: function(aIndex) { return false; },
setTree: function(aTree){},
getImageSrc: function(aRow, aColumn) {return null;},
getProgressMode: function(aRow, aColumn) {},
cycleHeader: function(aColId, aElt) {},
getRowProperties: function(aRow, aColumn, aProperty) {},
getColumnProperties: function(aColumn, aColumnElement, aProperty) {},
getCellProperties: function(aRow, aProperty) {},
getLevel: function(row){ return 0; }
};
setButtons();
}
function onRemove() {
// Store cur selection
var sel = urlsTree.currentIndex;
proxy.matches = proxy.matches.filter(function(element, index, array) {return index != urlsTree.currentIndex;});
_updateView();
// Reselect what was previously selected
urlsTree.view.selection.select(sel+1>urlsTree.view.rowCount ? 0:sel);
}
function toggleMode(mode) {
// Next line--buggy in FF 1.5.0.1--makes fields enabled but readonly
// document.getElementById("disabled-broadcaster").setAttribute("disabled", mode == "auto" ? "true" : "false");
// Thanks, Andy McDonald.
if (mode == "auto") {
document.getElementById("autoconf-broadcaster1").removeAttribute("disabled");
document.getElementById("disabled-broadcaster").setAttribute("disabled", "true");
onAutoConfUrlInput();
}
else if (mode == "direct") {
document.getElementById("disabled-broadcaster").setAttribute("disabled", "true");
document.getElementById("autoconf-broadcaster1").setAttribute("disabled", "true");
}
else {
document.getElementById("disabled-broadcaster").removeAttribute("disabled");
document.getElementById("autoconf-broadcaster1").setAttribute("disabled", "true");
}
}
function onHelp() {
CC["@mozilla.org/appshell/window-mediator;1"]
.getService(CI.nsIWindowMediator).getMostRecentWindow("navigator:browser").foxyproxy
.openAndReuseOneTabPerURL("http://foxyproxy.mozdev.org/quickstart.html");
}
function onViewAutoConf() {
var w;
_checkUri() &&
(w=open("view-source:" + autoconfurl.value, "", "scrollbars,resizable,modal,chrome,dialog=no,width=450,height=425").focus());
w && (w.windowtype="foxyproxy-options"); // set windowtype so it's forced to close when last browser closes
}
function onTestAutoConf() {
if (_checkUri()) {
var autoConf = CC["@leahscape.org/foxyproxy/autoconf;1"].createInstance(CI.nsISupports).wrappedJSObject;
autoConf.owner = {name: "Test", enabled: true};
autoConf.url = autoconfurl.value;
autoConf._resolver = CC["@mozilla.org/network/proxy-auto-config;1"].createInstance(CI.nsIProxyAutoConfig);
autoConf.loadPAC();
var none=foxyproxy.getMessage("none");
foxyproxy.alert(this, autoConf.owner.enabled ?
foxyproxy.getMessage("autoconfurl.test.success") :
foxyproxy.getMessage("autoconfurl.test.fail", [autoConf.status, autoConf.error?autoConf.error:none]));
}
}
function onAutoConfUrlInput() {
// setAttribute("disabled", true) buggy in FF 1.5.0.4 for the way i've setup the cmd
// so must use removeAttribute()
var b = document.getElementById("autoconf-broadcaster2");
if (autoconfurl.value.length > 0)
b.removeAttribute("disabled");
else
b.setAttribute("disabled", "true");
}
function onSelectAutoConf() {
const nsIFilePicker = CI.nsIFilePicker;
var p = CC["@mozilla.org/filepicker;1"].createInstance(nsIFilePicker);
p.init(window, foxyproxy.getMessage("pac.select"), nsIFilePicker.modeOpen);
p.appendFilters(nsIFilePicker.filterAll);
p.appendFilter(foxyproxy.getMessage("pac.files"), "*.pac");
p.defaultExtension = "pac";
if (p.show() != nsIFilePicker.returnCancel) {
autoconfurl.value = foxyproxy.transformer(p.file, "uri-string");
onAutoConfUrlInput();
}
}
function onUrlsTreeMenuPopupShowing() {
var e = document.getElementById("enabledPopUpMenuItem");
e.setAttribute("checked", proxy.matches[urlsTree.currentIndex].enabled);
}
function toggleEnabled() {
proxy.matches[urlsTree.currentIndex].enabled = !proxy.matches[urlsTree.currentIndex].enabled;
}
function onWildcardReference() {
document.getElementById('wildcardReferencePopup').showPopup(document.getElementById('wildcardRefBtn'), -1, -1, 'popup', 'bottomleft', 'topleft');
}
function onIsSocks(checked) {
document.getElementById("socks5").disabled = document.getElementById("socks4").disabled = !checked;
}

View File

@ -0,0 +1,393 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
FoxyProxy
Copyright (C) 2006, 2007 Eric H. Jung and LeahScape, Inc.
http://foxyproxy.mozdev.org/
eric.jung@yahoo.com
This source code is released under the GPL license,
available in the LICENSE file at the root of this installation
and also online at http://www.gnu.org/licenses/gpl.txt
All Rights Reserved. U.S. PATENT PENDING.
-->
<?xml-stylesheet href="foxyproxy.css" type="text/css"?>
<!DOCTYPE overlay SYSTEM "chrome://foxyproxy/locale/foxyproxy.dtd">
<dialog buttons="accept"
id="foxyproxyaddproxydlg"
ondialogaccept="return onOK();"
onload="onLoad();"
title="&foxyproxy.label; - &foxyproxy.add.title;"
windowtype="foxyproxy"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
persist="screenX screenY width height"
width="&foxyproxy.addeditproxy.width;"
height="&foxyproxy.addeditproxy.height;">
<script src="addeditproxy.js"/>
<vbox observes="torwiz-broadcaster" flex="1">
<tabbox flex="1">
<tabs id="tabs" style="-moz-appearance: none;">
<tab id="generaltab" label="&foxyproxy.tab.general.label;" accesskey="&foxyproxy.tab.general.accesskey;"
tooltiptext="&foxyproxy.tab.general.tooltip;" selected="true"/>
<tab label="&foxyproxy.tab.proxy.label;" accesskey="&foxyproxy.tab.proxy.accesskey;"
tooltiptext="&foxyproxy.tab.proxy.tooltip;"/>
<tab id="patternstab" label="&foxyproxy.tab.patterns.label;" accesskey="&foxyproxy.tab.patterns.accesskey;"
tooltiptext="&foxyproxy.tab.patterns.tooltip;"/>
</tabs>
<tabpanels style="-moz-appearance: none;" flex="1">
<tabpanel flex="1" orient="vertical">
<separator class="thin" />
<hbox>
<checkbox id="proxyenabled" flex="1" observes="default-proxy-broadcaster" checked="true" label="&foxyproxy.enabled.label;" accesskey="&foxyproxy.enabled.accesskey;"/>
</hbox>
<!-- thanks Teo! -->
<grid class="indent">
<columns>
<column/>
<column flex="1"/>
</columns>
<rows>
<row align="center">
<label value="&foxyproxy.proxy.name.label;" observes="default-proxy-broadcaster" control="proxyname" accesskey="&foxyproxy.proxy.name.accesskey;"
tooltiptext="&foxyproxy.proxy.name.tooltip;"/>
<textbox id="proxyname" flex="1"/>
</row>
<row align="center">
<label value="&foxyproxy.proxy.notes.label;" control="proxynotes" accesskey="&foxyproxy.proxy.notes.accesskey;"
tooltiptext="&foxyproxy.proxy.notes.tooltip;" observes="default-proxy-broadcaster"/>
<textbox id="proxynotes" flex="1" multiline="true"/>
</row>
</rows>
</grid>
<checkbox id="animatedIcons"
class="indent"
label="&foxyproxy.animatedicons.label;"
accesskey="&foxyproxy.animatedicons.accesskey;"
tooltiptext="&foxyproxy.animatedicons.tooltip;"/>
<checkbox id="cycleEnabled"
class="indent"
label="&foxyproxy.includeincycle.label;"
accesskey="&foxyproxy.includeincycle.accesskey;"
tooltiptext="&foxyproxy.includeincycle.tooltip;"/>
</tabpanel>
<tabpanel flex="1" orient="vertical">
<separator class="thin" />
<radiogroup id="mode">
<groupbox>
<radio id="direct" value="direct" label="&foxyproxy.add.option.direct.label;"
oncommand="toggleMode('direct');"
accesskey="&foxyproxy.add.option.direct.accesskey;"
tooltiptext="&foxyproxy.add.option.direct.tooltip;"/>
</groupbox>
<separator class="thin"/>
<groupbox>
<radio id="manual" value="manual" label="&foxyproxy.add.option.manual.label;"
oncommand="toggleMode('manual');"
accesskey="&foxyproxy.add.option.manual.accesskey;"
tooltiptext="&foxyproxy.add.option.manual.tooltip;"/>
<hbox align="center" class="indent">
<label value="&foxyproxy.changes.msg1;" class="text-link" popup="newGUIPopup" tooltiptext="&foxyproxy.changes.msg1;"/>
</hbox>
<separator class="thin"/>
<hbox align="center" class="indent">
<label value="&foxyproxy.host.label;" accesskey="&foxyproxy.host.accesskey;"
tooltiptext="&foxyproxy.host.tooltip;"
control="host"/>
<textbox id="host" flex="1" observes="disabled-broadcaster" tooltiptext="&foxyproxy.host.tooltip;"/>
<label value="&foxyproxy.port.label;" control="port" accesskey="&foxyproxy.port.accesskey;" tooltiptext="&foxyproxy.port.tooltip;"/>
<textbox id="port" size="5" oninput="if (/\D/.test(this.value)) this.value='';" observes="disabled-broadcaster" tooltiptext="&foxyproxy.port.tooltip;"/>
</hbox>
<hbox class="indent">
<checkbox id="isSocks"
label="&foxyproxy.issocks.label;"
accesskey="&foxyproxy.issocks.accesskey;"
tooltiptext="&foxyproxy.issocks.tooltip;"
observes="disabled-broadcaster"
oncommand="onIsSocks(this.checked)"/>
<radiogroup id="socksversion" orient="horizontal">
<radio id="socks4" value="4" label="&foxyproxy.socks.v4;" accesskey="4" observes="disabled-broadcaster"/>
<radio id="socks5" value="5" label="&foxyproxy.socks.v5;" accesskey="5" observes="disabled-broadcaster"/>
</radiogroup>
</hbox>
</groupbox>
<separator class="thin"/>
<groupbox>
<radio id="auto"
value="auto"
label="&foxyproxy.auto.url.label;"
oncommand="toggleMode('auto');"
accesskey="&foxyproxy.auto.url.accesskey;"
tooltiptext="&foxyproxy.auto.url.tooltip;"
control="autoconfurl"/>
<grid class="indent" flex="1">
<columns>
<column flex="1"/>
<column/>
</columns>
<rows>
<row align="center">
<textbox id="autoconfurl" size="50" observes="autoconf-broadcaster1"
tooltiptext="&foxyproxy.auto.url.tooltip;"
oninput="onAutoConfUrlInput();"/>
<button style="min-width: 0.5em;" oncommand="onSelectAutoConf();"
label="..." tooltiptext="&foxyproxy.auto.url.tooltip;" observes="autoconf-broadcaster1"/>
<button command="viewAutoConfCmd"/>
<button command="testAutoConfCmd"/>
<toolbarbutton class="foxyproxy-ref"
popup="pacTipsPopup"
tooltiptext="&foxyproxy.tip.label;"
observes="autoconf-broadcaster2"/>
</row>
<row align="center">
<hbox align="center">
<checkbox id="autoConfURLReloadEnabled"
label="&foxyproxy.autoconfurl.reload.label;"
accesskey="&foxyproxy.autoconfurl.reload.accesskey;"
tooltiptext="&foxyproxy.autoconfurl.reload.tooltip;"
observes="autoconf-broadcaster1"/>
<textbox id="autoConfReloadFreq" size="3" observes="autoconf-broadcaster1"
tooltiptext="&foxyproxy.autoconfurl.reload.tooltip;"
oninput="if (/\D/.test(this.value)) this.value='';"/>
<label value="&foxyproxy.minutes.label;" tooltiptext="&foxyproxy.minutes.tooltip;"/>
</hbox>
</row>
<separator class="thin"/>
<groupbox>
<caption
label="&foxyproxy.notifications.label;"
accesskey="&foxyproxy.notifications.accesskey;"
tooltiptext="&foxyproxy.notifications.tooltip;"/>
<row align="center">
<checkbox
id="pacLoadNotificationEnabled"
label="&foxyproxy.pacloadnotification.label;"
accesskey="&foxyproxy.pacloadnotification.accesskey;"
tooltiptext="&foxyproxy.pacloadnotification.tooltip;"
observes="autoconf-broadcaster1"/>
</row>
<row align="center">
<checkbox
id="pacErrorNotificationEnabled"
label="&foxyproxy.pacerrornotification.label;"
accesskey="&foxyproxy.pacerrornotification.accesskey;"
tooltiptext="&foxyproxy.pacerrornotification.tooltip;"
observes="autoconf-broadcaster1"/>
</row>
</groupbox>
</rows>
</grid>
</groupbox>
</radiogroup>
</tabpanel>
<tabpanel flex="1" orient="vertical">
<separator class="thin" />
<description>&foxyproxy.pattern.description;</description>
<separator class="thin"/>
<hbox>
<button command="addCmd" flex="1"/>
<button command="editSelectionCmd" flex="1"/>
<button command="deleteSelectionCmd" flex="1"/>
<button command="helpCmd" flex="1"/>
<button id="wildcardRefBtn" command="wildcardReferenceCmd" flex="1"/>
</hbox>
<separator class="thin"/>
<hbox flex="1">
<tree id="urlsTree" flex="1" align="stretch" enableColumnDrag="true" seltype="single" onselect="setButtons();"
onclick="overlay.onTreeClick(event, this);">
<treecols id="treeCols" pickertooltiptext="&foxyproxy.tree.pickertooltiptext.label;">
<treecol id="enabledCol" label="&foxyproxy.enabled.label;" type="checkbox" flex="1" persist="width ordinal hidden"/><splitter class="tree-splitter"/>
<treecol id="nameCol" label="&foxyproxy.pattern.name.label;" flex="1" persist="width ordinal hidden"/><splitter class="tree-splitter"/>
<treecol id="patternCol" label="&foxyproxy.url.pattern.label;" flex="1" persist="width ordinal hidden"/><splitter class="tree-splitter"/>
<treecol id="patternTypeCol" label="&foxyproxy.pattern.type.label;" flex="1" persist="width ordinal hidden"/><splitter class="tree-splitter"/>
<treecol id="blackCol" label="&foxyproxy.whitelist.blacklist.label;" flex="1" persist="width ordinal hidden"/><splitter class="tree-splitter"/>
</treecols>
<treechildren context="urlsTreeContext" ondblclick="onAddEdit(false);"/>
</tree>
</hbox>
</tabpanel>
</tabpanels>
</tabbox>
</vbox>
<vbox width="&foxyproxy.torwiz.width;" height="&foxyproxy.torwiz.height;" observes="not-torwiz-broadcaster" flex="1">
<iframe class="foxyproxy-border" src="chrome://foxyproxy/locale/torwizhelp.html" flex="1"/>
<separator/>
<description>&foxyproxy.pattern.description;</description>
<separator class="thin"/>
<hbox>
<button command="addCmd" flex="1"/>
<button command="editSelectionCmd" flex="1"/>
<button command="deleteSelectionCmd" flex="1"/>
<button command="helpCmd" flex="1"/>
<button id="wildcardRefBtn" command="wildcardReferenceCmd" flex="1"/>
</hbox>
<separator/>
<hbox flex="1">
<tree id="torWizUrlsTree" flex="1" align="stretch" enableColumnDrag="true" seltype="single" onselect="setButtons();">
<treecols id="treeCols" pickertooltiptext="&foxyproxy.tree.pickertooltiptext.label;">
<treecol id="enabledCol" label="&foxyproxy.enabled.label;" type="checkbox" flex="1" persist="width ordinal hidden"/><splitter class="tree-splitter"/>
<treecol id="nameCol" label="&foxyproxy.pattern.name.label;" flex="1" persist="width ordinal hidden"/><splitter class="tree-splitter"/>
<treecol id="patternCol" label="&foxyproxy.url.pattern.label;" flex="1" persist="width ordinal hidden"/><splitter class="tree-splitter"/>
<treecol id="patternTypeCol" label="&foxyproxy.pattern.type.label;" flex="1" persist="width ordinal hidden"/><splitter class="tree-splitter"/>
<treecol id="blackCol" label="&foxyproxy.whitelist.blacklist.label;" flex="1" persist="width ordinal hidden"/><splitter class="tree-splitter"/>
</treecols>
<treechildren context="urlsTreeContext" ondblclick="onAddEdit(false);"/>
</tree>
</hbox>
</vbox>
<popupset>
<popup id="newGUIPopup" style="height: &foxyproxy.newGUI.popup.height;; width: &foxyproxy.newGUI.popup.width;;">
<vbox class="foxyproxy-border" style="margin: .5em;">
<description class="foxyproxy-tooltip">
&foxyproxy.newGUI1.label;</description>
<description class="foxyproxy-tooltip">&foxyproxy.newGUI2.label;</description>
<description class="text-link" onclick="overlay.openAndReuseOneTabPerURL('http://foxyproxy.mozdev.org/settings-gui.html');">
&foxyproxy.newGUI4.label;</description>
</vbox>
</popup>
<popup id="pacTipsPopup" style="height: &foxyproxy.pactips.popup.height;; width: &foxyproxy.pactips.popup.width;;">
<vbox class="foxyproxy-border" style="margin: .5em;">
<description class="foxyproxy-tooltip">&foxyproxy.pactip1.label;</description>
<description class="foxyproxy-tooltip">&foxyproxy.pactip2.label;</description>
<description class="foxyproxy-tooltip">&foxyproxy.pactip3.label;</description>
</vbox>
</popup>
<popup id="urlsTreeContext" onpopupshowing="onUrlsTreeMenuPopupShowing();">
<menuitem id="enabledPopUpMenuItem" command="toggleEnabledCmd" type="checkbox"/>
<menuseparator/>
<menuitem class="menuitem-non-iconic" command="addCmd"/>
<menuitem class="menuitem-non-iconic" command="editSelectionCmd"/>
<menuitem class="menuitem-non-iconic" command="deleteSelectionCmd"/>
<menuseparator/>
<menuitem class="menuitem-non-iconic" command="helpCmd"/>
<menuitem class="menuitem-non-iconic" command="closeCmd"/>
</popup>
<!-- Thanks, DownThemAll -->
<popup id="wildcardReferencePopup" position="before_end" style="height: &foxyproxy.wildcard.reference.popup.height;;">
<label id="wildcardref" value="&foxyproxy.wildcard.reference.label;" style="font-weight: bold; text-align: center; margin: 1em 0 0 0;" />
<label id="wildcardrefSub" value="&foxyproxy.wildcard.reference.subtitle.label;" style="text-align: center; margin: 0 0 1.5em 0;" />
<grid class="border" style="margin: 0 .5em 0 .5em;">
<columns><column style="width: 10em; margin-right: 1em;"/><column style="width: 10em; margin-right: 1em;"/><column style="width: 10em; margin-right: 1em;"/><column style="width: 10em;"/></columns>
<rows>
<row>
<description class="heading">
&foxyproxy.wildcard.reference.goal.label;</description>
<description class="heading">
&foxyproxy.wildcard.reference.correct.label;</description>
<description class="heading red">
&foxyproxy.wildcard.reference.incorrect.label;</description>
<description class="heading">
&foxyproxy.wildcard.reference.incorrect.reason.label;</description>
</row>
<row style="margin-bottom: 1em;">
<description>&foxyproxy.wildcard.reference.goal1.label;</description>
<description>http://www.myspace.com/*</description>
<description class="red">http://www.myspace.com</description>
<description>&foxyproxy.wildcard.reference.incorrect.reason1.label;</description>
</row>
<row style="margin-bottom: 1em;">
<description>&foxyproxy.wildcard.reference.goal2.label;</description>
<vbox>
<description>&foxyproxy.wildcard.reference.correct2.label;:</description>
<description>*://localhost/*</description>
<description>*://127.0.0.1/*</description>
</vbox>
<description class="red">localhost, 127.0.0.1</description>
<description>&foxyproxy.wildcard.reference.incorrect.reason2.label;</description>
</row>
<row style="margin-bottom: 1em;">
<description>&foxyproxy.wildcard.reference.goal3.label;</description>
<description>*.abc.com/*</description>
<description class="red">.abc.com</description>
<description>&foxyproxy.wildcard.reference.incorrect.reason3.label;</description>
</row>
<row>
<description>&foxyproxy.wildcard.reference.goal4.label;</description>
<description>*.a.foo.com/*</description>
<description class="red">a.foo.com</description>
<description>&foxyproxy.wildcard.reference.incorrect.reason4.label;</description>
</row>
</rows>
</grid>
</popup>
</popupset>
<command id="toggleEnabledCmd"
label="&foxyproxy.enabled.label;"
tooltiptext="&foxyproxy.enabled.tooltip;"
accesskey="&foxyproxy.enabled.accesskey;"
oncommand="toggleEnabled();"/>
<command id="addCmd"
label="&foxyproxy.add.new.pattern.label;"
oncommand="onAddEdit(true);"
accesskey="&foxyproxy.add.new.pattern.accesskey;"
tooltiptext="&foxyproxy.add.new.pattern.tooltip;"/>
<command id="deleteSelectionCmd"
label="&foxyproxy.delete.selection.label;"
accesskey="&foxyproxy.delete.selection.accesskey;"
tooltiptext="&foxyproxy.delete.selection.tooltip;"
observes="tree-row-selected"
oncommand="onRemove();"/>
<command id="editSelectionCmd"
label="&foxyproxy.edit.selection.label;"
accesskey="&foxyproxy.edit.selection.accesskey;"
tooltiptext="&foxyproxy.edit.selection.tooltip;"
observes="tree-row-selected"
oncommand="onAddEdit(false);"/>
<command id="helpCmd"
label="&foxyproxy.help.label;"
accesskey="&foxyproxy.help.accesskey;"
tooltiptext="&foxyproxy.help.tooltip;"
oncommand="onHelp();"/>
<command id="wildcardReferenceCmd"
label="&foxyproxy.wildcard.reference.label;"
accesskey="&foxyproxy.wildcard.reference.accesskey;"
tooltiptext="&foxyproxy.wildcard.reference.tooltip;"
oncommand="onWildcardReference();"/>
<command id="closeCmd"
label="&foxyproxy.close.label;"
accesskey="&foxyproxy.close.accesskey;"
tooltiptext="&foxyproxy.close.tooltip;"
oncommand="window.close();"/>
<command id="viewAutoConfCmd"
disabled="true"
label="&foxyproxy.autoconfurl.view.label;"
accesskey="&foxyproxy.autoconfurl.view.accesskey;"
tooltiptext="&foxyproxy.autoconfurl.view.tooltip;"
oncommand="onViewAutoConf();"
observes="autoconf-broadcaster2"/>
<command id="testAutoConfCmd"
disabled="true"
label="&foxyproxy.autoconfurl.test.label;"
accesskey="&foxyproxy.autoconfurl.test.accesskey;"
tooltiptext="&foxyproxy.autoconfurl.test.tooltip;"
oncommand="onTestAutoConf();"
observes="autoconf-broadcaster2"/>
<broadcasterset>
<broadcaster id="autoconf-broadcaster1" disabled="true"/>
<broadcaster id="autoconf-broadcaster2" disabled="true"/>
<broadcaster id="tree-row-selected" disabled="true"/>
<broadcaster id="torwiz-broadcaster" hidden="false"/>
<broadcaster id="not-torwiz-broadcaster" hidden="true"/>
<broadcaster id="disabled-broadcaster" disabled="false"/>
<broadcaster id="default-proxy-broadcaster" disabled="false"/>
<broadcaster id="issocks-broadcaster" disabled="false"/>
</broadcasterset>
</dialog>

View File

@ -0,0 +1,29 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
FoxyProxy
Copyright (C) 2006, 2007 Eric H. Jung and LeahScape, Inc.
http://foxyproxy.mozdev.org/
eric.jung@yahoo.com
This source code is released under the GPL license,
available in the LICENSE file at the root of this installation
and also online at http://www.gnu.org/licenses/gpl.txt
All Rights Reserved. U.S. PATENT PENDING.
http://lxr.mozilla.org/mozilla1.8.0/source/toolkit/components/alerts/resources/content/alert.xul?raw=1
http://lxr.mozilla.org/mozilla1.8.0/source/themes/modern/communicator/alerts/alert.css?raw=1
-->
<?xml-stylesheet href="foxyproxy.css" type="text/css"?>
<!DOCTYPE overlay SYSTEM "chrome://foxyproxy/locale/foxyproxy.dtd">
<overlay id="foxyproxy-overlay" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<window id="alertNotification"
windowtype="alert:alert"
xmlns:xhtml2="http://www.w3.org/TR/xhtml2"
xmlns:wairole="http://www.w3.org/2005/01/wai-rdf/GUIRoleTaxonomy#"
xhtml2:role="wairole:alert"
align="start"
onload="onAlertLoad()"
onclick="window.close();"/>
</overlay>

View File

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
FoxyProxy
Copyright (C) 2006, 2007 Eric H. Jung and LeahScape, Inc.
http://foxyproxy.mozdev.org/
eric.jung@yahoo.com
This source code is released under the GPL license,
available in the LICENSE file at the root of this installation
and also online at http://www.gnu.org/licenses/gpl.txt
All Rights Reserved. U.S. PATENT PENDING.
-->
<overlay id="foxyproxy-overlay2" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<script src="chrome://foxyproxy/content/optionsOverlay.js"/>
</overlay>

View File

@ -0,0 +1,81 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
FoxyProxy
Copyright (C) 2006, 2007 Eric H. Jung and LeahScape, Inc.
http://foxyproxy.mozdev.org/
eric.jung@yahoo.com
This source code is released under the GPL license,
available in the LICENSE file at the root of this installation
and also online at http://www.gnu.org/licenses/gpl.txt
All Rights Reserved. U.S. PATENT PENDING.
-->
<?xml-stylesheet href="foxyproxy.css" type="text/css"?>
<!DOCTYPE overlay SYSTEM "chrome://foxyproxy/locale/foxyproxy.dtd">
<overlay id="foxyproxy-overlay" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<script src="chrome://foxyproxy/content/overlay.js"/>
<stringbundleset id="foxyproxy-strings">
<stringbundle src="chrome://foxyproxy/locale/foxyproxy.properties"/>
</stringbundleset>
<!-- menu -->
<menupopup id="menu_ToolsPopup">
<menu id="foxyproxy-tools-menu-1" label="&foxyproxy.label;" insertbefore="devToolsSeparator" position="9"
accesskey="&foxyproxy.accesskey;" class="menu-iconic foxyproxybutton-small"
mode="patterns" persist="mode">
<menupopup id="foxyproxy-toolsmenu-popup"
onpopupshowing="foxyproxy.onPopupShowing(this, event);"
onpopuphiding="foxyproxy.onPopupHiding();"/>
</menu>
</menupopup>
<keyset id="mainKeyset">
<!-- accel is ctrl on windows, cmd on mac -->
<key id="key_foxyproxyfocus" keycode="VK_F2" modifiers="accel" oncommand="foxyproxy.onOptionsDialog();"/>
<key id="key_foxyproxyfocus" keycode="VK_F2" modifiers="alt" oncommand="foxyproxy.onQuickAddDialog(event);"/>
</keyset>
<popup id="contentAreaContextMenu">
<menu id="foxyproxy-context-menu-1" label="&foxyproxy.label;"
accesskey="&foxyproxy.accesskey;" class="menu-iconic foxyproxybutton-small"
mode="patterns" persist="mode hidden" hidden="false">
<menupopup id="foxyproxy-contextmenu-popup"
onpopupshowing="foxyproxy.onPopupShowing(this, event);"
onpopuphiding="foxyproxy.onPopupHiding();"/>
</menu>
</popup>
<statusbar id="status-bar">
<hbox>
<popupset style="overflow: auto;">
<tooltip id="foxyproxy-popup" style="max-height: none; max-width: none;" onclick="this.hidePopup();"/>
</popupset>
</hbox>
<menupopup id="foxyproxy-statusbar-popup"
onpopupshowing="foxyproxy.onPopupShowing(this, event);"
onpopuphiding="foxyproxy.onPopupHiding();"/>
<statusbarpanel
id="foxyproxy-status-text"
onclick="foxyproxy.onSBTBClick(event, foxyproxy.fp.statusbar);"
mode="patterns" persist="mode hidden" hidden="true"/>
<statusbarpanel
id="foxyproxy-status-icon"
onclick="foxyproxy.onSBTBClick(event, foxyproxy.fp.statusbar);"
class="statusbarpanel-menu-iconic foxyproxybutton-small"
mode="patterns" persist="mode hidden" hidden="true"/>
</statusbar>
<toolbarpalette id="BrowserToolbarPalette">
<toolbarbutton id="foxyproxy-button-1" type="menu" mode="patterns" persist="mode" label="&foxyproxy.label;"
class="toolbarbutton-1 chromeclass-toolbar-additional foxyproxybutton"
onclick="foxyproxy.onSBTBClick(event, foxyproxy.fp.toolbar);event.stopPropagation();event.preventDefault();return false;">
<menupopup id="foxyproxy-toolbarbutton-popup"
onpopuphiding="foxyproxy.onPopupHiding();"
onpopupshowing="event.stopPropagation();event.preventDefault();return false;"/> <!-- todo: do i really need all 3 of these? -->
</toolbarbutton>
</toolbarpalette>
</overlay>

115
src/content/foxyproxy.css Normal file
View File

@ -0,0 +1,115 @@
/**
FoxyProxy
Copyright (C) 2006, 2007 Eric H. Jung and LeahScape, Inc.
http://foxyproxy.mozdev.org/
eric.jung@yahoo.com
This source code is released under the GPL license,
available in the LICENSE file at the root of this installation
and also online at http://www.gnu.org/licenses/gpl.txt
All Rights Reserved. U.S. PATENT PENDING.
**/
@import url(chrome://global/skin/);
tree {min-height: 50px;}
/*treechildren::-moz-tree-row(grey) {
background-color: rgb(80%, 80%, 80%);
}*/
#foxyproxy-button-1[mode="patterns"],
#foxyproxy-context-menu-1[mode="patterns"],
#foxyproxy-tools-menu-1[mode="patterns"],
#foxyproxy-status-icon[mode="patterns"]
{list-style-image: url("chrome://foxyproxy/content/images/patterns.gif");}
#foxyproxy-button-1[mode="static"],
#foxyproxy-context-menu-1[mode="static"],
#foxyproxy-tools-menu-1[mode="static"],
#foxyproxy-status-icon[mode="static"]
{list-style-image: url("chrome://foxyproxy/content/images/static.gif");}
#foxyproxy-button-1[mode="disabled"],
#foxyproxy-context-menu-1[mode="disabled"],
#foxyproxy-tools-menu-1[mode="disabled"],
#foxyproxy-status-icon[mode="disabled"]
{list-style-image: url("chrome://foxyproxy/content/images/disabled.gif");}
#foxyproxy-button-1[mode="random"],
#foxyproxy-context-menu-1[mode="random"],
#foxyproxy-tools-menu-1[mode="random"],
#foxyproxy-status-icon[mode="random"]
{list-style-image: url("chrome://foxyproxy/content/images/random.gif");}
#foxyproxy-button-1[mode="patterns"][animated="true"],
#foxyproxy-context-menu-1[mode="patterns"][animated="true"],
#foxyproxy-tools-menu-1[mode="patterns"][animated="true"],
#foxyproxy-status-icon[mode="patterns"][animated="true"]
{list-style-image: url("chrome://foxyproxy/content/images/patterns-ani.gif");}
#foxyproxy-button-1[mode="static"][animated="true"],
#foxyproxy-context-menu-1[mode="static"][animated="true"],
#foxyproxy-tools-menu-1[mode="static"][animated="true"],
#foxyproxy-status-icon[mode="static"][animated="true"]
{list-style-image: url("chrome://foxyproxy/content/images/static-ani.gif");}
#foxyproxy-button-1[mode="random"][animated="true"],
#foxyproxy-context-menu-1[mode="random"][animated="true"],
#foxyproxy-tools-menu-1[mode="random"][animated="true"],
#foxyproxy-status-icon[mode="random"][animated="true"]
{list-style-image: url("chrome://foxyproxy/content/images/random-ani.gif");}
.foxyproxybutton
{-moz-image-region: rect(0px 24px 24px 0px);}
.foxyproxybutton:hover
{-moz-image-region: rect(24px 24px 48px 0px);}
[iconsize="small"] .foxyproxybutton
{-moz-image-region: rect(0px 40px 16px 24px);}
[iconsize="small"] .foxyproxybutton:hover
{-moz-image-region: rect(16px 40px 32px 24px);}
.foxyproxybutton-small
{-moz-image-region: rect(0px 40px 16px 24px);}
.foxyproxybutton-small:hover
{-moz-image-region: rect(16px 40px 32px 24px);}
treechildren::-moz-tree-checkbox(checked) {
/* css for checked cells */
list-style-image: url("chrome://global/skin/checkbox/cbox-check.gif");
}
#up-button {
list-style-image: url("chrome://foxyproxy/content/images/up.gif");
}
#down-button {
list-style-image: url("chrome://foxyproxy/content/images/down.gif");
}
#foxyproxy-image {
cursor: pointer;
list-style-image: url("chrome://foxyproxy/content/images/foxyproxy-with-copy.gif");
}
.heading {text-decoration: underline; font-weight:bold;}
.foxyproxy-ref {
list-style-image: url("chrome://foxyproxy/content/images/info.png");
max-width: 32px;
padding-left: 6px;
}
.red { color: red; }
.purple { color: purple; }
.blue { color: blue; }
.orange { color: #E78500; }
.foxyproxy-tooltip {
text-align: justify;
margin: 1em;
}
.foxyproxy-border {
border: thin black solid;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

BIN
src/content/images/down.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 822 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.5 KiB

BIN
src/content/images/info.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 960 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

BIN
src/content/images/up.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 821 B

468
src/content/options.js Normal file
View File

@ -0,0 +1,468 @@
/**
FoxyProxy
Copyright (C) 2006, 2007 Eric H. Jung and LeahScape, Inc.
http://foxyproxy.mozdev.org/
eric.jung@yahoo.com
This source code is released under the GPL license,
available in the LICENSE file at the root of this installation
and also online at http://www.gnu.org/licenses/gpl.txt
All Rights Reserved. U.S. PATENT PENDING.
**/
var foxyproxy, proxyTree, logTree, monthslong, dayslong, overlay,
quickAddTemplateExample, autoAddTemplateExample, timeformat, saveLogCmd, noURLsCmd,
common;
const CI = Components.interfaces, CC = Components.classes;
function onLoad() {
foxyproxy = CC["@leahscape.org/foxyproxy/service;1"]
.getService(CI.nsISupports).wrappedJSObject;
document.getElementById("maxSize").value = foxyproxy.logg.maxSize;
overlay = CC["@mozilla.org/appshell/window-mediator;1"]
.getService(CI.nsIWindowMediator).getMostRecentWindow("navigator:browser").foxyproxy;
common=overlay.common;
monthslong = [foxyproxy.getMessage("months.long.1"), foxyproxy.getMessage("months.long.2"),
foxyproxy.getMessage("months.long.3"), foxyproxy.getMessage("months.long.4"), foxyproxy.getMessage("months.long.5"),
foxyproxy.getMessage("months.long.6"), foxyproxy.getMessage("months.long.7"), foxyproxy.getMessage("months.long.8"),
foxyproxy.getMessage("months.long.9"), foxyproxy.getMessage("months.long.10"), foxyproxy.getMessage("months.long.11"),
foxyproxy.getMessage("months.long.12")];
dayslong = [foxyproxy.getMessage("days.long.1"), foxyproxy.getMessage("days.long.2"),
foxyproxy.getMessage("days.long.3"), foxyproxy.getMessage("days.long.4"), foxyproxy.getMessage("days.long.5"),
foxyproxy.getMessage("days.long.6"), foxyproxy.getMessage("days.long.7")];
proxyTree = document.getElementById("proxyTree");
logTree = document.getElementById("logTree");
autoAddTemplateExample = document.getElementById("autoAddTemplateExample");
quickAddTemplateExample = document.getElementById("quickAddTemplateExample");
saveLogCmd = document.getElementById("saveLogCmd");
clearLogCmd = document.getElementById("clearLogCmd");
noURLsCmd = document.getElementById("noURLsCmd");
timeformat = foxyproxy.getMessage("timeformat");
_initSettings();
}
function _initSettings() {
_updateView(false, true);
document.getElementById("settingsURL").value = foxyproxy.getSettingsURI("uri-string");
document.getElementById("tabs").selectedIndex = foxyproxy.selectedTabIndex;
document.getElementById("autoAddUrlTemplate").value = foxyproxy.autoadd.urlTemplate;
document.getElementById("autoAddPattern").value = foxyproxy.autoadd.match.pattern;
document.getElementById("quickAddUrlTemplate").value = foxyproxy.quickadd.urlTemplate;
document.getElementById("autoAddMatchType").value = foxyproxy.autoadd.match.isRegEx ? "r" : "w";
document.getElementById("quickAddMatchType").value = foxyproxy.quickadd.match.isRegEx ? "r" : "w";
updateTemplateExample("autoAddUrlTemplate", "autoAddTemplateExample", foxyproxy.autoadd);
updateTemplateExample("quickAddUrlTemplate", "quickAddTemplateExample", foxyproxy.quickadd);
}
function onUsingPFF(usingPFF) {
document.getElementById("settingsURLBtn").disabled = usingPFF;
foxyproxy.setSettingsURI(usingPFF?foxyproxy.PFF:foxyproxy.getDefaultPath());
_initSettings();
}
function _updateLogView() {
saveLogCmd.setAttribute("disabled", foxyproxy.logg.length == 0);
clearLogCmd.setAttribute("disabled", foxyproxy.logg.length == 0);
noURLsCmd.setAttribute("checked", foxyproxy.logg.noURLs);
logTree.view = {
rowCount : foxyproxy.logg.length,
getCellText : function(row, column) {
var mp = foxyproxy.logg.item(row);
if (!mp) return;
switch(column.id) {
case "timeCol":return format(mp.timestamp);
case "urlCol":return mp.uri;
case "nameCol":return mp.proxyName;
case "notesCol":return mp.proxyNotes;
case "mpNameCol":return mp.matchName;
case "mpCol":return mp.matchPattern;
case "mpTypeCol":return mp.matchType;
case "mpBlackCol":return mp.whiteBlack;
case "pacResult":return mp.pacResult;
case "errCol":return mp.errMsg;
}
},
isSeparator: function(aIndex) { return false; },
isSorted: function() { return false; },
isEditable: function(row, col) { return false; },
isContainer: function(aIndex) { return false; },
setTree: function(aTree){},
getImageSrc: function(aRow, aColumn) {return null;},
getProgressMode: function(aRow, aColumn) {},
getCellValue: function(row, col) {},
cycleHeader: function(aColId, aElt) {},
getRowProperties: function(row, col, props) {
/*if (foxyproxy.logg.item(row) && foxyproxy.logg.item(row).matchPattern == NA) {
var a = Components.classes["@mozilla.org/atom-service;1"].
getService(Components.interfaces.nsIAtomService);
col.AppendElement(a.getAtom("grey"));
}*/
},
getColumnProperties: function(aColumn, aColumnElement, props) {},
getCellProperties: function(aRow, props) {},
getLevel: function(row){ return 0; }
};
}
// Thanks for the inspiration, Tor2k (http://www.codeproject.com/jscript/dateformat.asp)
function format(d) {
d = new Date(d);
if (!d.valueOf())
return '&nbsp;';
return timeformat.replace(/(yyyy|mmmm|mmm|mm|dddd|ddd|dd|hh|HH|nn|ss|zzz|a\/p)/gi,
function($1) {
switch ($1) {
case 'yyyy': return d.getFullYear();
case 'mmmm': return monthslong[d.getMonth()];
case 'mmm': return monthslong[d.getMonth()].substr(0, 3);
case 'mm': return zf((d.getMonth() + 1), 2);
case 'dddd': return dayslong[d.getDay()];
case 'ddd': return dayslong[d.getDay()].substr(0, 3);
case 'dd': return zf(d.getDate(), 2);
case 'hh': return zf(((h = d.getHours() % 12) ? h : 12), 2);
case 'HH': return zf(d.getHours(), 2);
case 'nn': return zf(d.getMinutes(), 2);
case 'ss': return zf(d.getSeconds(), 2);
case 'zzz': return zf(d.getSeconds(), 3);
case 'a/p': return d.getHours() < 12 ? 'AM' : 'PM';
}
}
);
}
// My own zero-fill fcn, not Tor 2k's. Assumes (n==2 || n == 3) && c<=n.
function zf(c, n) { c=""+c; return c.length == 1 ? (n==2?'0'+c:'00'+c) : (c.length == 2 ? (n==2?c:'0'+c) : c); }
function _updateModeMenu() {
var menu = document.getElementById("modeMenu");
var popup=menu.firstChild;
common.removeChildren(popup);
popup.appendChild(common.createMenuItem({idVal:"patterns", labelId:"mode.patterns.label"}));
for (var i=0,p; i<foxyproxy.proxies.length && ((p=foxyproxy.proxies.item(i)) || 1); i++)
popup.appendChild(common.createMenuItem({idVal:p.id, labelId:"mode.custom.label", labelArgs:[p.name], type:"radio", name:"foxyproxy-enabled-type"}));
//popup.appendChild(common.createMenuItem({idVal["random", labelId:"mode.random.label"}));
popup.appendChild(common.createMenuItem({idVal:"disabled", labelId:"mode.disabled.label"}));
menu.value = foxyproxy.mode;
if (foxyproxy.mode != "patterns" && foxyproxy.mode != "disabled" &&
foxyproxy.mode != "random") {
if (!foxyproxy.proxies.item(menu.selectedIndex-1).enabled) { // subtract 1 because first element, patterns, is not in the proxies array
// User disabled or deleted the proxy; select default setting.
foxyproxy.setMode("disabled", true);
menu.value = "disabled";
}
}
}
function onSettingsURLBtn() {
const nsIFilePicker = CI.nsIFilePicker;
var fp = CC["@mozilla.org/filepicker;1"].createInstance(nsIFilePicker);
fp.init(window, foxyproxy.getMessage("file.select"), nsIFilePicker.modeSave);
fp.defaultString = "foxyproxy.xml";
fp.appendFilters(nsIFilePicker.filterAll|nsIFilePicker.filterXML);
if (fp.show() != nsIFilePicker.returnCancel) {
foxyproxy.setSettingsURI(fp.file);
_initSettings();
}
}
/* Contains items which can be updated via toolbar/statusbar/menubar/context-menu as well as the options dialog,
so we don't include these in onLoad() or init() */
function _updateView(writeSettings, updateLogView) {
document.getElementById("dnsEnabled").checked = foxyproxy.proxyDNS;
document.getElementById("enableLogging").checked = foxyproxy.logging;
//document.getElementById("randomIncludeDirect").checked = foxyproxy.random.includeDirect;
//document.getElementById("randomIncludeDisabled").checked = foxyproxy.random.includeDisabled;
document.getElementById("usingPFF").checked =
document.getElementById("settingsURLBtn").disabled = foxyproxy.isUsingPFF();
_updateSuperAdd(foxyproxy.autoadd, "auto");
_updateSuperAdd(foxyproxy.quickadd, "quick");
function _updateSuperAdd(saObj, str) {
var temp = saObj.enabled;
document.getElementById(str + "AddEnabled").checked = temp;
document.getElementById(str + "AddBroadcaster").hidden = !temp;
document.getElementById(str + "AddReload").checked = saObj.reload;
document.getElementById(str + "AddNotify").checked = saObj.notify;
}
// quick-add-specific stuff
document.getElementById("quickAddPrompt").checked = foxyproxy.quickadd.prompt;
document.getElementById("quickAddNotifyWhenCanceled").checked = foxyproxy.quickadd.notifyWhenCanceled;
document.getElementById("toolsMenuEnabled").checked = foxyproxy.toolsMenu;
document.getElementById("contextMenuEnabled").checked = foxyproxy.contextMenu;
document.getElementById("statusbarIconEnabled").checked = foxyproxy.statusbar.iconEnabled;
document.getElementById("statusbarTextEnabled").checked = foxyproxy.statusbar.textEnabled;
document.getElementById("advancedMenusEnabled").checked = foxyproxy.advancedMenus;
document.getElementById("sbLeftClickMenu").value = foxyproxy.statusbar.leftClick;
document.getElementById("sbMiddleClickMenu").value = foxyproxy.statusbar.middleClick;
document.getElementById("sbRightClickMenu").value = foxyproxy.statusbar.rightClick;
document.getElementById("tbLeftClickMenu").value = foxyproxy.toolbar.leftClick;
document.getElementById("tbMiddleClickMenu").value = foxyproxy.toolbar.middleClick;
document.getElementById("tbRightClickMenu").value = foxyproxy.toolbar.rightClick;
_updateModeMenu();
var menu = document.getElementById("autoAddProxyMenu");
common.updateSuperAddProxyMenu(foxyproxy.autoadd, menu, onAutoAddProxyChanged);
if (!menu.firstChild.firstChild) {
document.getElementById("autoAddEnabled").checked = false;
onAutoAddEnabled(false);
}
menu = document.getElementById("quickAddProxyMenu");
common.updateSuperAddProxyMenu(foxyproxy.quickadd, menu, common.onQuickAddProxyChanged);
if (!menu.firstChild.firstChild) {
document.getElementById("quickAddEnabled").checked = false;
onQuickAddEnabled(false);
}
proxyTree.view = {
rowCount : foxyproxy.proxies.length,
getCellText : function(row, column) {
var i = foxyproxy.proxies.item(row);
switch(column.id) {
case "nameCol":return i.name;
case "descriptionCol":return i.notes;
case "modeCol":return foxyproxy.getMessage(i.mode);
case "hostCol":return i.manualconf.host;
case "isSocksCol":return i.manualconf.isSocks?foxyproxy.getMessage("yes"):foxyproxy.getMessage("no");
case "portCol":return i.manualconf.port;
case "socksverCol":return i.manualconf.socksversion == "5" ? "5" : "4/4a";
case "autopacCol":return i.autoconf.url;
case "animatedIconsCol":return i.animatedIcons?foxyproxy.getMessage("yes"):foxyproxy.getMessage("no");
case "cycleCol":return i.includeInCycle?foxyproxy.getMessage("yes"):foxyproxy.getMessage("no");
}
},
setCellValue: function(row, col, val) {foxyproxy.proxies.item(row).enabled = val;},
getCellValue: function(row, col) {return foxyproxy.proxies.item(row).enabled;},
isSeparator: function(aIndex) { return false; },
isSorted: function() { return false; },
isEditable: function(row, col) { return false; },
isContainer: function(aIndex) { return false; },
setTree: function(aTree){},
getImageSrc: function(aRow, aColumn) {return null;},
getProgressMode: function(aRow, aColumn) {},
cycleHeader: function(aColId, aElt) {},
getRowProperties: function(aRow, aColumn, aProperty) {},
getColumnProperties: function(aColumn, aColumnElement, aProperty) {},
getCellProperties: function(aRow, aProperty) {},
getLevel: function(row){ return 0; }
};
writeSettings && foxyproxy.writeSettings();
setButtons();
updateLogView && _updateLogView();
}
function onEnableTypeChanged(menu) {
foxyproxy.setMode(menu.selectedItem.id, true);
_updateView();
}
function onDeleteSelection() {
if (_isDefaultProxySelected())
overlay.alert(this, foxyproxy.getMessage("delete.proxy.default"));
else if (overlay.ask(this, foxyproxy.getMessage("delete.proxy.confirm"))) {
// Store cur selection
var sel = proxyTree.currentIndex;
foxyproxy.proxies.remove(proxyTree.currentIndex);
_updateView(true);
// Reselect what was previously selected
proxyTree.view.selection.select(sel+1>proxyTree.view.rowCount ? 0:sel);
}
}
function onCopySelection() {
if (_isDefaultProxySelected())
overlay.alert(this, foxyproxy.getMessage("copy.proxy.default"));
else {
// Store cur selection
var sel = proxyTree.currentIndex;
var dom = foxyproxy.proxies.item(proxyTree.currentIndex).toDOM(document);
var p = CC["@leahscape.org/foxyproxy/proxy;1"].createInstance(CI.nsISupports).wrappedJSObject;
p.fromDOM(dom);
p.id = foxyproxy.proxies.uniqueRandom(); // give it its own id
foxyproxy.proxies.push(p);
_updateView(true);
// Reselect what was previously selected
proxyTree.view.selection.select(sel);
}
}
function move(direction) {
// Store cur selection
var sel = proxyTree.currentIndex;
foxyproxy.proxies.move(proxyTree.currentIndex, direction) && _updateView(true);
// Reselect what was previously selected
proxyTree.view.selection.select(sel + (direction=="up"?-1:1));
}
function onSettings(isNew) {
var sel = proxyTree.currentIndex;
params = {inn:{proxy:isNew ?
CC["@leahscape.org/foxyproxy/proxy;1"].createInstance(CI.nsISupports).wrappedJSObject :
foxyproxy.proxies.item(proxyTree.currentIndex)}, out:null};
window.openDialog("chrome://foxyproxy/chrome/addeditproxy.xul", "",
"chrome, dialog, modal, resizable=yes", params).focus();
if (params.out) {
isNew && foxyproxy.proxies.push(params.out.proxy);
_updateView(true);
foxyproxy.writeSettings();
// Reselect what was previously selected or the new item
proxyTree.view.selection.select(isNew?proxyTree.view.rowCount-2:sel);
}
}
function setButtons() {
document.getElementById("tree-row-selected").setAttribute("disabled", proxyTree.currentIndex == -1);
document.getElementById("moveUpCmd").setAttribute("disabled",
proxyTree.currentIndex == -1 || proxyTree.currentIndex == 0 || _isDefaultProxySelected());
document.getElementById("moveDownCmd").setAttribute("disabled",
proxyTree.currentIndex == -1 || proxyTree.currentIndex == foxyproxy.proxies.length-1 ||
(proxyTree.currentIndex+1 < foxyproxy.proxies.length && foxyproxy.proxies.item(proxyTree.currentIndex+1).lastresort));
}
function onMaxSize() {
var v = document.getElementById("maxSize").value;
var passed = true;
if (/\D/.test(v)) {
foxyproxy.alert(this, foxyproxy.getMessage("torwiz.nan"));
passed = false;
}
v > 9999 &&
!overlay.ask(this, foxyproxy.getMessage("logg.maxsize.maximum")) &&
(passed = false);
if (!passed) {
document.getElementById("maxSize").value = foxyproxy.logg.maxSize;
return;
}
if (overlay.ask(this, foxyproxy.getMessage("logg.maxsize.change"))) {
foxyproxy.logg.maxSize = v;
_updateView(false, true);
}
else
document.getElementById("maxSize").value = foxyproxy.logg.maxSize;
}
/*
function onIncludeDirectInRandom() {
// TODO: ERROR CHECKING
overlay.alert(this, foxyproxy.getMessage('random.applicable'));
foxyproxy.random.includeDirect = this.checked;
}
function onIncludeDisabledInRandom() {
// TODO: ERROR CHECKING
overlay.alert(this, foxyproxy.getMessage('random.applicable'));
foxyproxy.random.includeDisabled = this.checked;
}*/
function updateTemplateExample(controlName, exampleControlName, saObj) {
controlName && (document.getElementById(controlName).value = saObj.urlTemplate);
document.getElementById(exampleControlName+"2").value = saObj.applyTemplate(document.getElementById(exampleControlName+"1").value);
}
function onAutoAddProxyChanged(proxyId) {
foxyproxy.autoadd.proxy = foxyproxy.proxies.getProxyById(proxyId);
}
function onAutoAddEnabled(cb) {
if (cb.checked) {
if (foxyproxy.autoadd.allowed()) {
foxyproxy.autoadd.enabled = true;
document.getElementById("autoAddBroadcaster").hidden = false;
common.updateSuperAddProxyMenu(foxyproxy.autoadd, document.getElementById("autoAddProxyMenu"), onAutoAddProxyChanged);
overlay.alert(this, foxyproxy.getMessage("autoadd.notice"));
}
else {
overlay.alert(this, foxyproxy.getMessage("superadd.verboten2", [foxyproxy.getMessage("foxyproxy.tab.autoadd.label")]));
cb.checked = false;
}
}
else {
document.getElementById("autoAddBroadcaster").hidden = true;
foxyproxy.autoadd.enabled = false;
}
}
function onQuickAddEnabled(cb) {
if (cb.checked) {
if (foxyproxy.quickadd.allowed()) {
foxyproxy.quickadd.enabled = true;
document.getElementById("quickAddBroadcaster").hidden = false;
common.updateSuperAddProxyMenu(foxyproxy.quickadd, document.getElementById("quickAddProxyMenu"), common.onQuickAddProxyChanged);
//overlay.alert(this, foxyproxy.getMessage("autoadd.notice"));
}
else {
overlay.alert(this, foxyproxy.getMessage("superadd.verboten2", [foxyproxy.getMessage("foxyproxy.quickadd.label")]));
cb.checked = false;
}
}
else {
document.getElementById("quickAddBroadcaster").hidden = true;
foxyproxy.quickadd.enabled = false;
}
}
function saveLog() {
const nsIFilePicker = CI.nsIFilePicker;
var fp = CC["@mozilla.org/filepicker;1"].createInstance(nsIFilePicker);
fp.init(this, foxyproxy.getMessage("log.save"), nsIFilePicker.modeSave);
fp.defaultExtension = "html";
fp.appendFilters(nsIFilePicker.filterHTML | nsIFilePicker.filterAll);
if (fp.show() == nsIFilePicker.returnCancel)
return;
var os = CC["@mozilla.org/intl/converter-output-stream;1"].createInstance(CI.nsIConverterOutputStream);
var fos = CC["@mozilla.org/network/file-output-stream;1"].createInstance(CI.nsIFileOutputStream); // create the output stream
fos.init(fp.file, 0x02 | 0x08 | 0x20 /*write | create | truncate*/, 0664, 0);
os.init(fos, "UTF-8", 0, 0x0000);
os.writeString(foxyproxy.logg.toHTML());
os.close();
if (overlay.ask(this, foxyproxy.getMessage("log.saved2", [fp.file.path]))) {
var win = CC["@mozilla.org/appshell/window-mediator;1"].getService(CI.nsIWindowMediator).getMostRecentWindow("navigator:browser");
win.gBrowser.selectedTab = win.gBrowser.addTab(fp.file.path);
}
}
function importSettings() {
}
function exportSettings() {
}
function importProxyList() {
}
function onProxyTreeSelected() {
setButtons();
}
function onProxyTreeMenuPopupShowing() {
var e = document.getElementById("enabledPopUpMenuItem"), f = document.getElementById("menuSeperator");
e.hidden = f.hidden = _isDefaultProxySelected();
e.setAttribute("checked", foxyproxy.proxies.item(proxyTree.currentIndex).enabled);
}
function toggleEnabled() {
var p = foxyproxy.proxies.item(proxyTree.currentIndex);
p.enabled = !p.enabled;
_updateView(true, false);
}
function _isDefaultProxySelected() {
return foxyproxy.proxies.item(proxyTree.currentIndex).lastresort;
}
function onOK() {
var r1 = document.getElementById("autoAddRegEx").selected,
p1 = overlay.common.validatePattern(window, r1, document.getElementById("autoAddTemplateExample2").value, foxyproxy.getMessage("foxyproxy.tab.autoadd.label")),
r2 = document.getElementById("quickAddRegEx").selected,
p2 = overlay.common.validatePattern(window, r2, document.getElementById("quickAddTemplateExample2").value, foxyproxy.getMessage("foxyproxy.quickadd.label"));
p1 && p2 && window.close();
}

1206
src/content/options.xul Normal file

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,43 @@
/**
FoxyProxy
Copyright (C) 2006, 2007 Eric H. Jung and LeahScape, Inc.
http://foxyproxy.mozdev.org/
eric.jung@yahoo.com
This source code is released under the GPL license,
available in the LICENSE file at the root of this installation
and also online at http://www.gnu.org/licenses/gpl.txt
All Rights Reserved. U.S. PATENT PENDING.
**/
// begin FF 1.5.x stuff
function onConnectionSettings() {
var fp = Components.classes["@leahscape.org/foxyproxy/service;1"]
.getService(Components.interfaces.nsISupports).wrappedJSObject;
if (fp.mode == "disabled")
document.documentElement.openSubDialog("chrome://browser/content/preferences/connection.xul", "", null);
else {
var wm = Components.classes["@mozilla.org/appshell/window-mediator;1"]
.getService(Components.interfaces.nsIWindowMediator);
var win = wm.getMostRecentWindow("navigator:browser");
if (win && win.foxyproxy)
win.foxyproxy.onOptionsDialog();
else {
alert("FoxyProxy Error");
document.documentElement.openSubDialog("chrome://browser/content/preferences/connection.xul", "", null);
}
}
}
window.onload=function(){
var e = document.getElementById("catProxiesButton");
e && e.setAttribute("oncommand", "onConnectionSettings();");
try {
gAdvancedPane && (gAdvancedPane.showConnections = onConnectionSettings);
}
catch (e) {/*wtf*/}
}
// end FF 1.5.x stuff
// FF 2.0.x stuff

890
src/content/overlay.js Normal file
View File

@ -0,0 +1,890 @@
/**
FoxyProxy
Copyright (C) 2006, 2007 Eric H. Jung and LeahScape, Inc.
http://foxyproxy.mozdev.org/
eric.jung@yahoo.com
This source code is released under the GPL license,
available in the LICENSE file at the root of this installation
and also online at http://www.gnu.org/licenses/gpl.txt
All Rights Reserved. U.S. PATENT PENDING.
**/
var foxyproxy = {
checkboxType : Components.interfaces.nsITreeColumn.TYPE_CHECKBOX,
fp : Components.classes["@leahscape.org/foxyproxy/service;1"]
.getService(Components.interfaces.nsISupports).wrappedJSObject,
statusIcon : null,
contextMenuIcon : null,
toolbarIcon : null,
toolsMenuIcon : null,
notes: ["foxyproxy-statusbar-icon","foxyproxy-statusbar-text","foxyproxy-toolsmenu",
"foxyproxy-contextmenu","foxyproxy-mode-change","foxyproxy-throb","foxyproxy-updateviews","foxyproxy-autoadd-toggle"],
alert : function(wnd, str) {
Components.classes["@mozilla.org/embedcomp/prompt-service;1"]
.getService(Components.interfaces.nsIPromptService)
.alert(null, this.fp.getMessage("foxyproxy"), str);
},
observe: function(subj, topic, str) {
try {
var e = subj.QueryInterface(Components.interfaces.nsISupportsPRBool).data;
}
catch(e) {}
switch (topic) {
case "foxyproxy-throb":
this.throb(subj);
break;
case "foxyproxy-statusbar-icon":
this.toggleStatusBarIcon(e);
break;
case "foxyproxy-statusbar-text":
this.toggleStatusBarText(e);
break;
case "foxyproxy-autoadd-toggle":
this.checkPageLoad();
break;
case "foxyproxy-mode-change":
this.setMode(str);
this.checkPageLoad();
break;
case "foxyproxy-toolsmenu":
this.toggleToolsMenu(e);
break;
case "foxyproxy-contextmenu":
this.toggleContextMenu(e);
break;
case "foxyproxy-updateviews":
this.updateViews(false, false);
break;
}
},
onLoad : function() {
this.fp.init();
this.statusIcon = document.getElementById("foxyproxy-status-icon");
this.contextMenuIcon = document.getElementById("foxyproxy-context-menu-1");
this.toolbarIcon = document.getElementById("foxyproxy-button-1");
this.toolsMenuIcon = document.getElementById("foxyproxy-tools-menu-1");
var obSvc = Components.classes["@mozilla.org/observer-service;1"].getService(Components.interfaces.nsIObserverService);
for (var i in this.notes) {
obSvc.addObserver(this, this.notes[i], false);
}
this.toggleToolsMenu(this.fp.toolsMenu);
this.toggleContextMenu(this.fp.contextMenu);
this.checkPageLoad();
this.toggleStatusBarIcon(this.fp.statusbar.iconEnabled);
this.toggleStatusBarText(this.fp.statusbar.textEnabled);
this.setMode(this.fp.mode);
this._firstRunCheck();
},
toggleToolsMenu : function(e) {
this.toolsMenuIcon.hidden = !e;
},
toggleContextMenu : function(e) {
this.contextMenuIcon.hidden = !e;
},
onPageLoad : function(evt) {
var doc = evt.originalTarget; // doc is document that triggered "onload" event
(doc && doc.location && foxyproxy.fp.autoadd.perform(doc.location, doc.documentElement.innerHTML) && foxyproxy.fp.writeSettings());
},
_firstRunCheck : function() {
var notFirstRun = false;
try {
notFirstRun = this.fp.getPrefsService("extensions.foxyproxy.").getBoolPref("firstrun");
}
catch(e) {}
if (!notFirstRun) {
this.torWizard(true);
this.fp.getPrefsService("extensions.foxyproxy.").setBoolPref("firstrun", true);
}
},
torWizard : function(firstTime) {
var owner = foxyproxy._getOptionsDlg();
if (this.ask(owner, (firstTime ? (this.fp.getMessage("welcome") + " ") : "") +
this.fp.getMessage("torwiz.configure"))) {
var withoutPrivoxy = this.ask(owner,
this.fp.getMessage("torwiz.with.without.privoxy"),
this.fp.getMessage("torwiz.without"),
this.fp.getMessage("torwiz.with"));
!withoutPrivoxy && (withoutPrivoxy = !this.ask(owner, this.fp.getMessage("torwiz.privoxy.not.required")));
var input = {value:withoutPrivoxy?"9050":"8118"};
var ok, title = this.fp.getMessage("foxyproxy"),
portMsg = this.fp.getMessage("torwiz.port", [this.fp.getMessage(withoutPrivoxy?"tor":"privoxy")]);
do {
ok = Components.classes["@mozilla.org/embedcomp/prompt-service;1"]
.getService(Components.interfaces.nsIPromptService)
.prompt(owner, title, portMsg, input, null, {});
if (ok) {
if (isNaN(input.value) || input.value == "") {
foxyproxy.alert(owner, this.fp.getMessage("torwiz.nan"));
ok = false;
}
}
else
break;
} while (!ok);
var proxyDNS;
ok && (proxyDNS = this.ask(owner, this.fp.getMessage("torwiz.proxydns")));
if (ok) {
var p = Components.classes["@leahscape.org/foxyproxy/proxy;1"]
.createInstance(Components.interfaces.nsISupports).wrappedJSObject;
p.name = this.fp.getMessage("tor");
p.notes = this.fp.getMessage("torwiz.proxy.notes");
var match = Components.classes["@leahscape.org/foxyproxy/match;1"]
.createInstance(Components.interfaces.nsISupports).wrappedJSObject;
match.name = this.fp.getMessage("torwiz.google.mail");
match.pattern = this.fp.getMessage("torwiz.pattern");
p.matches.push(match);
p.selectedTabIndex = 2;
p.mode = "manual";
if (withoutPrivoxy) {
p.manualconf.host="127.0.0.1";
p.manualconf.port=9050;
p.manualconf.isSocks=true;
}
else {
p.manualconf.host="127.0.0.1";
p.manualconf.port=8118;
p.manualconf.isSocks=false;
}
p.manualconf.socksversion=5;
p.autoconf.url = "";
var params = {inn:{proxy:p, torwiz:true}, out:null};
var win = owner?owner:window;
win.openDialog("chrome://foxyproxy/chrome/addeditproxy.xul", "",
"chrome,dialog,modal,resizable=yes,center", params).focus();
if (params.out) {
this.fp.proxies.push(params.out.proxy);
this.fp.proxyDNS = proxyDNS;
foxyproxy.updateViews(true);
foxyproxy.alert(owner, this.fp.getMessage("torwiz.congratulations"));
proxyDNS && this.ask(owner, this.fp.getMessage("foxyproxy.proxydns.notice")) && this.fp.restart();
}
else
ok = false;
}
!ok && foxyproxy.alert(owner, this.fp.getMessage("torwiz.cancelled"));
}
},
/**
* Open or focus the main window/dialog
*/
onOptionsDialog : function() {
this.onDialog("foxyproxy-options", "chrome://foxyproxy/chrome/options.xul", "foxyproxy-quickadd");
},
onDialog : function(id, xulFile, args, parms, idToClose) {
// If there's a window/dialog already open, just focus it and return.
var wnd = foxyproxy.findWindow(id);
if (wnd) {
try {
wnd.focus();
}
catch (e) {
// nsIFilePicker dialog is open. Best we can do is flash the window.
wnd.getAttentionWithCycleCount(4);
}
}
else {
if (idToClose) {
var wnd = foxyproxy.findWindow(idToClose); // close competing dialog to minimize synchronization issues between the two
wnd && wnd.close();
}
window.openDialog(xulFile, "", "minimizable,dialog,chrome,resizable=yes" + (args?(","+args):""), parms).focus();
}
},
onQuickAddDialog : function(evt) {
var fp=this.fp;
if (fp.mode != "disabled" && fp.quickadd.enabled) {
if (!evt.view || !evt.view.content || !evt.view.content.document || !evt.view.content.document.location) {
fp.notifier.alert(fp.getMessage("foxyproxy"), fp.getMessage("quickadd.nourl"));
return;
}
if (fp.quickadd._prompt) {
// Close Options dialog if it's open to prevent sync problems between the two dialogs
var p = {out:null};
this.onDialog("foxyproxy-quickadd", "chrome://foxyproxy/chrome/quickadd.xul", "modal", p, "foxyproxy-options");
if (p.out) {
fp.quickadd.reload = p.out.reload;
fp.quickadd.notify = p.out.notify;
fp.quickadd.prompt = p.out.prompt;
fp.quickadd.notifyWhenCanceled = p.out.notifyWhenCanceled;
this.common.onQuickAddProxyChanged(p.out.proxy);
fp.quickadd.urlTemplate = p.out.urlTemplate;
fp.quickadd.setMatchIsRegEx(p.out.matchType=="r");
_qAdd();
}
// if !p.out then the user canceled QuickAdd
}
else {
_qAdd();
}
}
function _qAdd() {
var loc = evt.view.content.document.location;
var m = fp.quickadd._proxy.isMatch(loc.href);
if (m) {
fp.quickadd._notify &&
fp.notifier.alert(fp.getMessage("foxyproxy.quickadd.label"), fp.getMessage("quickadd.quickadd.canceled", [m.name, fp.quickadd._proxy.name]));
}
else {
fp.quickadd.addPattern(loc);
fp.writeSettings();
}
}
},
updateViews : function(writeSettings, updateLogView) {
// Update view if it's open
var optionsDlg = foxyproxy._getOptionsDlg();
optionsDlg && optionsDlg._updateView(false, updateLogView); // don't write settings here because optionsDlg mayn't be open
writeSettings && this.fp.writeSettings();
},
_getOptionsDlg : function() {
return Components.classes["@mozilla.org/appshell/window-mediator;1"]
.getService(Components.interfaces.nsIWindowMediator).getMostRecentWindow("foxyproxy-options");
},
/**
* Find and return the dialog/window if it's open (or null if it's not)
*/
findWindow : function(id) {
// Same as _getOptionsDlg() but we need a windowManager for later
var windowManager =
Components.classes['@mozilla.org/appshell/window-mediator;1'].getService(Components.interfaces.nsIWindowMediator);
var win0 =
windowManager.getMostRecentWindow(id);
if (win0) {
var enumerator = windowManager.getEnumerator(null);
while (enumerator.hasMoreElements()) {
var win1 = enumerator.getNext();
var winID = win1.document.documentElement.id;
if (winID == "commonDialog" && win1.opener == win0)
return win1;
}
return win0;
}
return null;
},
/**
* Function for displaying dialog box with yes/no buttons (not OK/Cancel buttons),
* or any arbitrary button labels.
*/
ask : function(parent, text, btn1Text, btn2Text) {
var prompts = Components.classes["@mozilla.org/embedcomp/prompt-service;1"]
.getService(Components.interfaces.nsIPromptService);
!btn1Text && (btn1Text = this.fp.getMessage("yes"));
!btn2Text && (btn2Text = this.fp.getMessage("no"));
return prompts.confirmEx(parent, this.fp.getMessage("foxyproxy"), text,
prompts.BUTTON_TITLE_IS_STRING * prompts.BUTTON_POS_0 +
prompts.BUTTON_TITLE_IS_STRING * prompts.BUTTON_POS_1,
btn1Text, btn2Text, null, null, {}) == 0; // 0 means first button ("yes") was pressed
},
checkPageLoad : function() {
var e = this.fp.mode != "disabled" && this.fp.autoadd.enabled;
var appcontent = document.getElementById("appcontent");
if (appcontent) {
appcontent.removeEventListener("load", this.onPageLoad, true); // safety
if (e) {
appcontent.addEventListener("load", this.onPageLoad, true);
}
else {
appcontent.removeEventListener("load", this.onPageLoad, true);
}
}
},
throb : function(mp) {
if (mp.wrappedJSObject.animatedIcons) {
this.statusIcon.setAttribute("animated", "true");
// this.toolbarIcon is null if user hasn't placed it in the toolbar, so we check its existance before calling setAttribute()
this.toolbarIcon && this.toolbarIcon.setAttribute("animated", "true");
this.contextMenuIcon.setAttribute("animated", "true");
this.toolsMenuIcon.setAttribute("animated", "true");
}
this.setStatusText(mp.wrappedJSObject.name, true);
setTimeout("foxyproxy.unthrob()", 800);
},
unthrob : function() {
this.statusIcon.removeAttribute("animated");
this.contextMenuIcon.removeAttribute("animated");
// this.toolbarIcon is null if user hasn't placed it in the toolbar, so we check its existance before calling setAttribute()
this.toolbarIcon && this.toolbarIcon.removeAttribute("animated");
this.toolsMenuIcon.removeAttribute("animated");
this.setStatusText(this.getModeAsText(this.fp.mode), false);
},
openAndReuseOneTabPerURL : function(aURL) {
var wm = Components.classes["@mozilla.org/appshell/window-mediator;1"]
.getService(Components.interfaces.nsIWindowMediator);
var winEnum = wm.getEnumerator("navigator:browser");
while (winEnum.hasMoreElements()) {
var win = winEnum.getNext();
var browser = win.getBrowser();
for (var i = 0; i < browser.mTabs.length; i++) {
if (aURL == browser.getBrowserForTab(browser.mTabs[i]).currentURI.spec) {
win.focus(); // bring wnd to the foreground
browser.selectedTab = browser.mTabs[i];
return;
}
}
}
// Our URL isn't open. Open it now.
var w = wm.getMostRecentWindow("navigator:browser");
if (w) {
// Use an existing browser window
w.delayedOpenTab(aURL, null, null, null, null);
}
else
window.open(aURL);
},
///////////////// statusbar \\\\\\\\\\\\\\\\\\\\\
toggleStatusBarIcon : function(e) {
this.statusIcon.hidden = !e;
},
toggleStatusBarText : function(e) {
var s=document.getElementById("foxyproxy-status-text");
// Statusbars don't exist on all windows (e.g,. View Source) so check for existence first,
// otherwise we get a JS error.
s && (s.hidden = !e);
},
setMode : function(mode) {
var m = this.getModeAsText(mode);
this.toolsMenuIcon.setAttribute("mode", m);
this.contextMenuIcon.setAttribute("mode", m);
// this.toolbarIcon is null if user hasn't placed it in the toolbar, so we check its existance before calling setAttribute()
this.toolbarIcon && this.toolbarIcon.setAttribute("mode", m);
this.statusIcon.setAttribute("mode", m);
this.setStatusText(m, null);
},
getModeAsText : function(mode) {
return mode != "patterns" && mode != "disabled" && mode != "random" ? "static" : mode;
},
setStatusText : function(m, literal) {
if (literal) {
this._adorn(m, null);
return;
}
switch(m) {
case "patterns":
this._adorn(this.fp.getMessage("foxyproxy.tab.patterns.label"), "orange");
break;
case "disabled":
this._adorn(this.fp.getMessage("disabled"), "red");
break;
case "random":
this._adorn(this.fp.getMessage("random"), "purple");
break;
default:
this._adorn(this.fp._selectedProxy.name, "blue");
};
},
_adorn : function(m, c) {
var e = document.getElementById("foxyproxy-status-text");
var txt = this.fp.getMessage("foxyproxy") + ": " + m;
// Statusbars don't exist on all windows (e.g,. View Source) so check for existence first,
// otherwise we get a JS error.
e && e.setAttribute("label", txt);
c && e.setAttribute("class", c);
foxyproxy.toolsMenuIcon.setAttribute("tooltiptext", txt);
foxyproxy.contextMenuIcon.setAttribute("tooltiptext", txt);
// this.toolbarIcon is null if user hasn't placed it in the toolbar, so we check its existance before calling setAttribute()
foxyproxy.toolbarIcon && foxyproxy.toolbarIcon.setAttribute("tooltiptext", txt);
foxyproxy.statusIcon.setAttribute("tooltiptext", txt);
},
///////////////// utilities \\\\\\\\\\\\\\\
onTreeClick : function(e, tree) {
var row = {}, col = {};
tree.treeBoxObject.getCellAt(e.clientX, e.clientY, row, col, {});
row.value > -1 && col.value && col.value.type == this.checkboxType && tree.view.selection.select(row.value);
},
///////////////// menu \\\\\\\\\\\\\\\\\\\\\
_cmd : "foxyproxy.fp.setMode(event.target.id, true);foxyproxy.updateViews(true);",
_popupShowing : 0,
onSBTBClick : function(e, o) {
if (e.button==0) {
_act(o.leftClick, e);
}
else if (e.button==1) {
_act(o.middleClick, e);
}
else if (e.button==2) {
_act(o.rightClick, e);
}
function _act(x, e) {
var fp=foxyproxy.fp;
switch (x) {
case "options":
foxyproxy.onOptionsDialog();
break;
case "cycle":
fp.cycleMode();
break;
case "contextmenu":
this._popupShowing = 0;
document.getElementById("foxyproxy-statusbar-popup").showPopup(e.target, -1, -1, "popup", "bottomleft", "topleft");
break;
case "reloadcurtab":
gBrowser.reloadTab(gBrowser.mCurrentTab);
break;
case "reloadtabsinbrowser":
gBrowser.reloadAllTabs();
break;
case "reloadtabsinallbrowsers":
for (var b,
e = Components.classes["@mozilla.org/appshell/window-mediator;1"]
.getService(Components.interfaces.nsIWindowMediator).getEnumerator("navigator:browser");
e.hasMoreElements();
b = e.getNext().getBrowser() && b.reloadAllTabs());
break;
case "removeallcookies":
Components.classes["@mozilla.org/cookiemanager;1"].
getService(Components.interfaces.nsICookieManager).removeAll();
fp.notifier.alert(fp.getMessage("foxyproxy"), fp.getMessage("cookies.allremoved"));
break;
}
}
},
onPopupHiding : function() {
this._popupShowing > 0 && this._popupShowing--;
},
onPopupShowing : function(menupopup, evt) {
this._popupShowing++;
if (this._popupShowing == 1) {
while (menupopup.hasChildNodes()) {
menupopup.removeChild(menupopup.firstChild);
}
/*var asb = document.createElement("arrowscrollbox");
asb.setAttribute("style", "max-height: 400px;");
asb.setAttribute("flex", "1");
asb.setAttribute("orient", "vertical");*/
var checkOne = new Array();
var itm = _createRadioMenuItem(menupopup,
"patterns",
this._cmd,
this.fp.getMessage("mode.patterns.accesskey"),
this.fp.getMessage("mode.patterns.label"),
this.fp.getMessage("mode.patterns.tooltip"));
itm.setAttribute("class", "orange");
checkOne.push(itm);
for (var i=0; i<this.fp.proxies.length; i++) {
var p = this.fp.proxies.item(i);
var pName = p.name;
// Set the submenu based on advancedMenus enabled/disabled
var sbm = this.fp.advancedMenus ? _createMenu(menupopup, pName, pName.substring(0, 1), pName) : menupopup;
var curProxy = "foxyproxy.fp.proxies.item(" + i + ").";
if (this.fp.advancedMenus) {
// Enable/disable checkbox for each proxy.
// Don't provide enable/disable to lastresort proxy.
!p.lastresort && _createCheckMenuItem(sbm,
curProxy + "enabled=!" + curProxy + "enabled;",
p.enabled,
this.fp.getMessage("foxyproxy.enabled.accesskey"),
this.fp.getMessage("foxyproxy.enabled.label"),
this.fp.getMessage("foxyproxy.enabled.tooltip"));
_createCheckMenuItem(sbm,
curProxy + "animatedIcons=!" + curProxy + "animatedIcons;",
p.animatedIcons,
this.fp.getMessage("foxyproxy.animatedicons.accesskey"),
this.fp.getMessage("foxyproxy.animatedicons.label"),
this.fp.getMessage("foxyproxy.animatedicons.tooltip"));
}
itm = _createRadioMenuItem(sbm,
p.id,
this._cmd,
pName.substring(0, 1),
this.fp.getMessage("mode.custom.label", [pName]),
this.fp.getMessage("mode.custom.tooltip", [pName]));
itm.setAttribute("style", "color: blue;");
checkOne.push(itm);
if (this.fp.advancedMenus) {
var numMatches = this.fp.proxies.item(i).matches.length;
if (!p.lastresort && numMatches > 0) {
// Don't provide patterns list to lastresort proxy
// and proxies with no patterns
var pmp = _createMenu(sbm,
this.fp.getMessage("foxyproxy.tab.patterns.label"),
this.fp.getMessage("foxyproxy.tab.patterns.accesskey"),
this.fp.getMessage("foxyproxy.tab.patterns.tooltip"));
for (var j=0; j<numMatches; j++) {
var m = this.fp.proxies.item(i).matches[j];
var curMatch = curProxy + "matches[" + j + "].";
_createCheckMenuItem(pmp,
curMatch + "enabled=!" + curMatch + "enabled;foxyproxy.fp.writeSettings();",
m.enabled,
m.pattern.substring(0, 1),
m.pattern,
m.name);
}
}
}
}
/*itm = _createRadioMenuItem(menupopup,
"random",
this._cmd,
this.fp.getMessage("mode.random.accesskey"),
this.fp.getMessage("mode.random.label"),
this.fp.getMessage("mode.random.tooltip"));
itm.setAttribute("style", "color: purple;");
checkOne.push(itm); */
itm = _createRadioMenuItem(menupopup,
"disabled",
this._cmd,
this.fp.getMessage("mode.disabled.accesskey"),
this.fp.getMessage("mode.disabled.label"),
this.fp.getMessage("mode.disabled.tooltip"));
itm.setAttribute("style", "color: red;");
checkOne.push(itm);
// Check the appropriate one
for (var i=0; i<checkOne.length; i++) {
if (checkOne[i].getAttribute("value") == this.fp.mode) {
checkOne[i].setAttribute("checked", "true");
//checkOne[i].parentNode.setAttribute("style", "font-weight: bold;");
break;
}
}
menupopup.appendChild(document.createElement("menuseparator"));
// Advanced menuing
if (this.fp.advancedMenus) {
var submenu = document.createElement("menu");
submenu.setAttribute("label", this.fp.getMessage("more.label"));
submenu.setAttribute("accesskey", this.fp.getMessage("more.accesskey"));
submenu.setAttribute("tooltiptext", this.fp.getMessage("more.tooltip"));
var submenupopup = document.createElement("menupopup");
submenu.appendChild(submenupopup);
var gssubmenupopup =
_createMenu(submenupopup,
this.fp.getMessage("foxyproxy.tab.global.label"),
this.fp.getMessage("foxyproxy.tab.global.accesskey"),
this.fp.getMessage("foxyproxy.tab.global.tooltip"));
_createCheckMenuItem(gssubmenupopup,
"foxyproxy.fp.proxyDNS=!foxyproxy.fp.proxyDNS;foxyproxy.updateViews(false);foxyproxy.ask(null, foxyproxy.fp.getMessage('foxyproxy.proxydns.notice')) && foxyproxy.fp.restart();",
this.fp.proxyDNS,
this.fp.getMessage("foxyproxy.proxydns.accesskey"),
this.fp.getMessage("foxyproxy.proxydns.label"),
this.fp.getMessage("foxyproxy.proxydns.tooltip"));
_createCheckMenuItem(gssubmenupopup,
"foxyproxy.fp.statusbar.iconEnabled=!foxyproxy.fp.statusbar.iconEnabled;foxyproxy.updateViews(false);",
this.fp.statusbar.iconEnabled,
this.fp.getMessage("foxyproxy.showstatusbaricon.accesskey"),
this.fp.getMessage("foxyproxy.showstatusbaricon.label"),
this.fp.getMessage("foxyproxy.showstatusbaricon.tooltip"));
_createCheckMenuItem(gssubmenupopup,
"foxyproxy.fp.statusbar.textEnabled=!foxyproxy.fp.statusbar.textEnabled;foxyproxy.updateViews(false);",
this.fp.statusbar.textEnabled,
this.fp.getMessage("foxyproxy.showstatusbarmode.accesskey"),
this.fp.getMessage("foxyproxy.showstatusbarmode.label"),
this.fp.getMessage("foxyproxy.showstatusbarmode.tooltip"));
_createCheckMenuItem(gssubmenupopup,
"foxyproxy.fp.toolsMenu=!foxyproxy.fp.toolsMenu;foxyproxy.updateViews(false);",
this.fp.toolsMenu,
this.fp.getMessage("foxyproxy.toolsmenu.accesskey"),
this.fp.getMessage("foxyproxy.toolsmenu.label"),
this.fp.getMessage("foxyproxy.toolsmenu.tooltip"));
_createCheckMenuItem(gssubmenupopup,
"foxyproxy.fp.contextMenu=!foxyproxy.fp.contextMenu;foxyproxy.updateViews(false);",
this.fp.contextMenu,
this.fp.getMessage("foxyproxy.contextmenu.accesskey"),
this.fp.getMessage("foxyproxy.contextmenu.label"),
this.fp.getMessage("foxyproxy.contextmenu.tooltip"));
_createCheckMenuItem(gssubmenupopup,
// no need to write settings because changing the attribute makes the fp service re-write the settings
"foxyproxy.fp.advancedMenus=!foxyproxy.fp.advancedMenus;foxyproxy.updateViews(false);",
this.fp.advancedMenus,
this.fp.getMessage("foxyproxy.advancedmenus.accesskey"),
this.fp.getMessage("foxyproxy.advancedmenus.label"),
this.fp.getMessage("foxyproxy.advancedmenus.tooltip"));
var logsubmenupopup =
_createMenu(submenupopup,
this.fp.getMessage("foxyproxy.tab.logging.label"),
this.fp.getMessage("foxyproxy.tab.logging.accesskey"),
this.fp.getMessage("foxyproxy.tab.logging.tooltip"));
_createCheckMenuItem(logsubmenupopup,
// no need to write settings because changing the attribute makes the fp service re-write the settings
"foxyproxy.fp.logging=!foxyproxy.fp.logging;foxyproxy.updateViews(false);",
foxyproxy.fp.logging,
this.fp.getMessage("foxyproxy.enabled.accesskey"),
this.fp.getMessage("foxyproxy.enabled.label"),
this.fp.getMessage("foxyproxy.enabled.tooltip"));
_createMenuItem(logsubmenupopup,
this.fp.getMessage("foxyproxy.clear.label"),
"foxyproxy.fp.logg.clear();foxyproxy.updateViews(false, true);",
this.fp.getMessage("foxyproxy.clear.accesskey"),
this.fp.getMessage("foxyproxy.clear.tooltip"));
_createMenuItem(logsubmenupopup,
this.fp.getMessage("foxyproxy.refresh.label"),
// Need to refresh the log view so the refresh button is enabled/disabled appropriately
"foxyproxy.updateViews(false, true);",
this.fp.getMessage("foxyproxy.refresh.accesskey"),
this.fp.getMessage("foxyproxy.refresh.tooltip"));
_createCheckMenuItem(logsubmenupopup,
// no need to write settings because changing the attribute makes the fp service re-writes the settings
"foxyproxy.onToggleNoURLs();",
foxyproxy.fp.logg.noURLs,
this.fp.getMessage("foxyproxy.logging.noURLs.accesskey"),
this.fp.getMessage("foxyproxy.logging.noURLs.label"),
this.fp.getMessage("foxyproxy.logging.noURLs.tooltip"));
submenupopup.appendChild(document.createElement("menuseparator"));
itm =_createMenuItem(submenupopup,
this.fp.getMessage("foxyproxy.options.label"),
"foxyproxy.onOptionsDialog();",
this.fp.getMessage("foxyproxy.options.accesskey"),
this.fp.getMessage("foxyproxy.options.tooltip"));
itm.setAttribute("key", "key_foxyproxyfocus");
_createMenuItem(submenupopup,
this.fp.getMessage("foxyproxy.help.label"),
"foxyproxy.openAndReuseOneTabPerURL('http://foxyproxy.mozdev.org/quickstart.html');",
this.fp.getMessage("foxyproxy.help.accesskey"),
this.fp.getMessage("foxyproxy.help.tooltip"));
//menupopup.appendChild(asb);
try {
menupopup.appendChild(submenu);
}
catch (e) {
// dunno why it throws
}
}
else {
// advanced menus are disabled
itm = _createMenuItem(menupopup,
this.fp.getMessage("foxyproxy.options.label"),
"foxyproxy.onOptionsDialog();",
this.fp.getMessage("foxyproxy.options.accesskey"),
this.fp.getMessage("foxyproxy.options.tooltip"));
itm.setAttribute("key", "key_foxyproxyfocus");
_createCheckMenuItem(menupopup,
"foxyproxy.fp.advancedMenus = true;foxyproxy.updateViews(false);",
this.fp.advancedMenus,
this.fp.getMessage("foxyproxy.advancedmenus.accesskey"),
this.fp.getMessage("foxyproxy.advancedmenus.label"),
this.fp.getMessage("foxyproxy.advancedmenus.tooltip"));
}
}
// Open link with proxy...
/*var target = gContextMenu.target;
// target can be null when opening something like chrome://passwdmaker/chrome/uris.xul directly in the browser.
if (target && target.tagName == "A") {
menupopup.appendChild(document.createElement("menuseparator"));
for (var i=0; i<this.fp.proxies.length; i++) {
var p = this.fp.proxies.item(i);
var pName = p.name;
// Set the submenu based on advancedMenus enabled/disabled
//var sbm = this.fp.advancedMenus ? _createMenu(menupopup, pName, pName.substring(0, 1), pName) : menupopup;
var curProxy = "foxyproxy.fp.proxies.item(" + i + ").";
_createMenuItem(menupopup,
this.fp.getMessage("openwithproxy.label", [pName]),
"alert('yo baby yo');",
this.fp.getMessage("openwithproxy.accesskey"),
this.fp.getMessage("openwithproxy.tooltip"));
}
// Save a reference to the object being clicked
foxyproxy.clickedElement = target;
}*/
function _createMenu(menupopup, label, accesskey, tooltip) {
var submenu = document.createElement("menu");
submenu.setAttribute("label", label);
submenu.setAttribute("accesskey", accesskey);
submenu.setAttribute("tooltiptext", tooltip);
var submenupopup = document.createElement("menupopup");
submenu.appendChild(submenupopup);
menupopup.appendChild(submenu);
return submenupopup;
}
function _createMenuItem(menupopup, label, cmd, accesskey, tooltip) {
var e = document.createElement("menuitem");
e.setAttribute("label", label);
e.setAttribute("oncommand", cmd);
e.setAttribute("accesskey", accesskey);
e.setAttribute("tooltiptext", tooltip);
menupopup.appendChild(e);
return e;
}
function _createRadioMenuItem(menupopup, id, cmd, accesskey, label, tooltip) {
var e = document.createElement("menuitem");
e.setAttribute("label", label);
e.setAttribute("id", id);
e.setAttribute("value", id);
e.setAttribute("type", "radio");
e.setAttribute("name", "foxyproxy-enabled-type");
e.setAttribute("tooltiptext", tooltip);
e.setAttribute("oncommand", cmd);
e.setAttribute("accesskey", accesskey);
menupopup.appendChild(e);
return e;
}
function _createCheckMenuItem(menupopup, cmd, checked, accesskey, label, tooltip) {
var e = document.createElement("menuitem");
e.setAttribute("label", label);
e.setAttribute("type", "checkbox");
e.setAttribute("checked", checked);
e.setAttribute("tooltiptext", tooltip);
e.setAttribute("oncommand", cmd);
e.setAttribute("accesskey", accesskey);
menupopup.appendChild(e);
return e;
}
},
// common fcns used in overlay.js and options.js
onToggleNoURLs : function(owner) {
this.fp.logg.noURLs=!this.fp.logg.noURLs;
if (this.fp.logg.noURLs && this.fp.logg.length > 0) {
var q=this.ask(owner?owner:window, this.fp.getMessage("log.scrub"));
if (q) {
this.fp.logg.scrub();
this.updateViews(false, true);
}
}
},
// common fcns used in options.js and quickadd.js and elsewhere
common : {
fp : Components.classes["@leahscape.org/foxyproxy/service;1"]
.getService(Components.interfaces.nsISupports).wrappedJSObject,
validatePattern : function(win, isRegEx, p, msgPrefix) {
var origPat = p;
p = p.replace(/^\s*|\s*$/g,"");
if (p == "") {
foxyproxy.alert(window, (msgPrefix?msgPrefix+": ":"") + this.fp.getMessage("pattern.required"));
return false;
}
if (isRegEx) {
try {
new RegExp((p[0]=="^"?"":"^") + p + (p[p.length-1]=="$"?"":"$"));
}
catch(e) {
foxyproxy.alert(win, (msgPrefix?msgPrefix+": ":"") + this.fp.getMessage("pattern.invalid.regex", [origPat]));
return false;
}
}
else if (p.indexOf("*") == -1 && p.indexOf("?") == -1 && !this.fp.warnings.noWildcards) {
// No wildcards present; warn user
var cb = {};
var ret = (Components.classes["@mozilla.org/embedcomp/prompt-service;1"].getService(Components.interfaces.nsIPromptService)
.confirmCheck(win, this.fp.getMessage("foxyproxy"), (msgPrefix?msgPrefix+": ":"") + this.fp.getMessage("no.wildcard.characters", [p]), this.fp.getMessage("message.stop"), cb));
this.fp.warnings.noWildcards = cb.value;
if (!ret) return false;
}
return p;
},
onQuickAddProxyChanged : function(proxyId) {
this.fp.quickadd.proxy = this.fp.proxies.getProxyById(proxyId);
},
removeChildren : function(node) {
while (node.hasChildNodes())
node.removeChild(node.firstChild);
},
createMenuItem : function(args) {
var e = document.createElement("menuitem");
e.setAttribute("id", args["idVal"]);
e.setAttribute("label", args["labelId"]?this.fp.getMessage(args["labelId"], args["labelArgs"]) : args["labelVal"]);
e.setAttribute("value", args["idVal"]);
args["type"] && e.setAttribute("type", args["type"]);
args["name"] && e.setAttribute("name", args["name"]);
return e;
},
updateSuperAddProxyMenu : function(superadd, menu, fcn) {
if (!superadd.enabled) return;
var popup=menu.firstChild;
this.removeChildren(popup);
for (var i=0,c=0,p; i<this.fp.proxies.length && ((p=this.fp.proxies.item(i)) || 1); i++) {
if (!p.lastresort && p.enabled) {
popup.appendChild(this.createMenuItem({idVal:p.id, labelVal:p.name, type:"radio", name:"foxyproxy-enabled-type"}));
//popup.appendChild(this.createMenuItem({idVal:"disabled", labelId:"mode.disabled.label"}));
c++;
}
}
function selFirst() {
// select the first one
var temp = popup.firstChild && popup.firstChild.id;
temp && fcn((menu.value = temp));
}
if (superadd.proxy) {
menu.value = superadd.proxy.id;
}
else
selFirst();
menu.selectedIndex == -1 && selFirst();
}
}
};
///////////////////////////////////////////////////////
window.addEventListener("load", function(e) { foxyproxy.onLoad(e); }, false);
window.addEventListener("unload", function(e) {
document.getElementById("appcontent") && document.getElementById("appcontent").removeEventListener("load", this.onPageLoad, true);
var obSvc = Components.classes["@mozilla.org/observer-service;1"].getService(Components.interfaces.nsIObserverService);
for (var i in foxyproxy.notes) {
obSvc.removeObserver(foxyproxy, foxyproxy.notes[i]);
}
}, false);

36
src/content/pattern.js Normal file
View File

@ -0,0 +1,36 @@
/**
FoxyProxy
Copyright (C) 2006, 2007 Eric H. Jung and LeahScape, Inc.
http://foxyproxy.mozdev.org/
eric.jung@yahoo.com
This source code is released under the GPL license,
available in the LICENSE file at the root of this installation
and also online at http://www.gnu.org/licenses/gpl.txt
All Rights Reserved. U.S. PATENT PENDING.
**/
var overlay;
function onOK() {
var r = document.getElementById("regex").selected;
var p = overlay.common.validatePattern(window, r, document.getElementById("pattern").value);
if (p) {
window.arguments[0].out = {name:document.getElementById("name").value,
pattern:p, isRegEx:r,
isBlackList:document.getElementById("black").selected,
isEnabled:document.getElementById("enabled").checked};
return true;
}
return false;
}
function onLoad() {
overlay = window.arguments[0].inn.overlay;
document.getElementById("name").value = window.arguments[0].inn.name;
document.getElementById("pattern").value = window.arguments[0].inn.pattern;
document.getElementById("matchtype").selectedIndex = window.arguments[0].inn.regex ? 1 : 0;
document.getElementById("whiteblacktype").selectedIndex = window.arguments[0].inn.black ? 1 : 0;
document.getElementById("enabled").checked = window.arguments[0].inn.enabled;
sizeToContent();
}

165
src/content/pattern.xul Normal file
View File

@ -0,0 +1,165 @@
<?xml version="1.0"?>
<!--
FoxyProxy
Copyright (C) 2006, 2007 Eric H. Jung and LeahScape, Inc.
http://foxyproxy.mozdev.org/
eric.jung@yahoo.com
This source code is released under the GPL license,
available in the LICENSE file at the root of this installation
and also online at http://www.gnu.org/licenses/gpl.txt
All Rights Reserved. U.S. PATENT PENDING.
-->
<?xml-stylesheet href="foxyproxy.css" type="text/css"?>
<!DOCTYPE overlay SYSTEM "chrome://foxyproxy/locale/foxyproxy.dtd">
<dialog
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
id="foxyproxypatterndlg"
title="&foxyproxy.label; - &foxyproxy.addeditpattern.title;"
ondialogaccept="return onOK();"
onload="onLoad();"
persist="screenX screenY width height"
windowtype="foxyproxy">
<script src="pattern.js"/>
<grid flex="1">
<columns>
<column/>
<column flex="1"/>
</columns>
<rows>
<row align="center">
<checkbox id="enabled" label="&foxyproxy.enabled.label;" accesskey="&foxyproxy.enabled.accesskey;"
tooltiptext="&foxyproxy.enabled.tooltip;"/>
<spacer/>
</row>
<row align="center">
<label value="&foxyproxy.pattern.name.label;" control="name"
tooltiptext="&foxyproxy.pattern.name.tooltip;" accesskey="&foxyproxy.pattern.name.accesskey;"/>
<textbox id="name" tooltiptext="&foxyproxy.pattern.name.tooltip;" accesskey="&foxyproxy.pattern.name.accesskey;"/>
</row>
<row align="center">
<label value="&foxyproxy.url.pattern.label;" tooltiptext="&foxyproxy.url.pattern.tooltip;" accesskey="&foxyproxy.url.pattern.accesskey;" control="pattern"/>
<textbox id="pattern" tooltiptext="&foxyproxy.url.pattern.tooltip;" accesskey="&foxyproxy.url.pattern.accesskey;"/>
<toolbarbutton class="foxyproxy-ref" popup="wildcardReferencePopup" tooltiptext="&foxyproxy.wildcard.reference.tooltip;"/>
</row>
<radiogroup id="whiteblacktype" orient="vertical">
<groupbox>
<caption label="&foxyproxy.pattern.whiteblack.label;"/>
<vbox maxwidth="450">
<description>&foxyproxy.whiteblack.description.label;</description>
</vbox>
<grid><columns><column/><column/><column/></columns>
<rows>
<row align="center">
<radio id="white" selected="true"
accesskey="&foxyproxy.whitelist.accesskey;"
tooltiptext="&foxyproxy.whitelist.tooltip;"/>
<label value="&foxyproxy.whitelist.label;"
style="color: blue; cursor: pointer; margin-left: -0.5em;"
tooltiptext="&foxyproxy.whitelist.tooltip;"
class="text-link"
onclick="overlay.openAndReuseOneTabPerURL('http://en.wikipedia.org/wiki/Whitelist');"/>
<label value="&foxyproxy.whitelist.description.label;"/>
</row>
<row align="center">
<radio id="black"
accesskey="&foxyproxy.blacklist.accesskey;"
tooltiptext="&foxyproxy.blacklist.tooltip;"/>
<label value="&foxyproxy.blacklist.label;"
style="margin-left: -0.5em;"
tooltiptext="&foxyproxy.blacklist.tooltip;"
class="text-link"
onclick="overlay.openAndReuseOneTabPerURL('http://en.wikipedia.org/wiki/Blacklist');"/>
<label value="&foxyproxy.blacklist.description.label;"/>
</row>
</rows>
</grid>
</groupbox>
</radiogroup>
<radiogroup id="matchtype" orient="horizontal">
<groupbox flex="1">
<caption label="&foxyproxy.pattern.matchtype.label;"/>
<grid><columns><column/><column/><column/></columns>
<rows>
<row align="center">
<radio id="wildcard"
selected="true"
accesskey="&foxyproxy.wildcard.accesskey;"
tooltiptext="&foxyproxy.wildcard.tooltip;"/>
<label value="&foxyproxy.wildcard.label;"
style="margin-left: -0.5em;"
class="text-link"
onclick="overlay.openAndReuseOneTabPerURL('http://foxyproxy.mozdev.org/quickstart.html#wildcards');"
tooltiptext="&foxyproxy.wildcard.tooltip;"/>
<label value="&foxyproxy.wildcard.example.label;"/>
</row>
<row align="center">
<radio id="regex"
accesskey="&foxyproxy.regex.accesskey;"
tooltiptext="&foxyproxy.regex.tooltip;"/>
<label value="&foxyproxy.regex.label;"
style="margin-left: -0.5em;"
class="text-link"
onclick="overlay.openAndReuseOneTabPerURL('http://foxyproxy.mozdev.org/quickstart.html#regex');"
tooltiptext="&foxyproxy.regex.tooltip;"/>
<label value="&foxyproxy.regex.example.label;"/>
</row>
</rows>
</grid>
</groupbox>
</radiogroup>
</rows>
</grid>
<popupset>
<!-- Thanks, DownThemAll -->
<popup id="wildcardReferencePopup" position="before_end" style="height: &foxyproxy.wildcard.reference.popup.height;;">
<label value="&foxyproxy.wildcard.reference.label;" style="font-weight: bold; text-align: center; margin: 1em 0 0 0;" />
<label value="&foxyproxy.wildcard.reference.subtitle.label;" style="text-align: center; margin: 0 0 1.5em 0;" />
<grid class="foxyproxy-border" style="margin: 0 .5em 0 .5em;">
<columns><column style="width: 10em; margin-right: 1em;"/><column style="width: 10em; margin-right: 1em;"/><column style="width: 10em; margin-right: 1em;"/><column style="width: 10em;"/></columns>
<rows>
<row>
<description class="heading">
&foxyproxy.wildcard.reference.goal.label;</description>
<description class="heading">
&foxyproxy.wildcard.reference.correct.label;</description>
<description class="heading red">
&foxyproxy.wildcard.reference.incorrect.label;</description>
<description class="heading">
&foxyproxy.wildcard.reference.incorrect.reason.label;</description>
</row>
<row style="margin-bottom: 1em;">
<description>&foxyproxy.wildcard.reference.goal1.label;</description>
<description>http://www.myspace.com/*</description>
<description class="red">http://www.myspace.com</description>
<description>&foxyproxy.wildcard.reference.incorrect.reason1.label;</description>
</row>
<row style="margin-bottom: 1em;">
<description>&foxyproxy.wildcard.reference.goal2.label;</description>
<vbox>
<description>&foxyproxy.wildcard.reference.correct2.label;:</description>
<description>*://localhost/*</description>
<description>*://127.0.0.1/*</description>
</vbox>
<description class="red">localhost, 127.0.0.1</description>
<description>&foxyproxy.wildcard.reference.incorrect.reason2.label;</description>
</row>
<row style="margin-bottom: 1em;">
<description>&foxyproxy.wildcard.reference.goal3.label;</description>
<description>*.abc.com/*</description>
<description class="red">.abc.com</description>
<description>&foxyproxy.wildcard.reference.incorrect.reason3.label;</description>
</row>
<row>
<description>&foxyproxy.wildcard.reference.goal4.label;</description>
<description>*.a.foo.com/*</description>
<description class="red">a.foo.com</description>
<description>&foxyproxy.wildcard.reference.incorrect.reason4.label;</description>
</row>
</rows>
</grid>
</popup>
</popupset>
</dialog>

89
src/content/quickadd.js Normal file
View File

@ -0,0 +1,89 @@
/**
FoxyProxy
Copyright (C) 2006, 2007 Eric H. Jung and LeahScape, Inc.
http://foxyproxy.mozdev.org/
eric.jung@yahoo.com
This source code is released under the GPL license,
available in the LICENSE file at the root of this installation
and also online at http://www.gnu.org/licenses/gpl.txt
All Rights Reserved. U.S. PATENT PENDING.
**/
var fp, overlay, common;
const CI = Components.interfaces, CC = Components.classes;
function onOK() {
var r = document.getElementById("regex").selected;
var p = overlay.common.validatePattern(window, r, document.getElementById("quickAddTemplateExample2").value);
if (p) {
cleanup();
window.arguments[0].out = {reload:document.getElementById("quickAddReload").checked,
notify:document.getElementById("quickAddNotify").checked, prompt:document.getElementById("quickAddPrompt").checked,
proxy:document.getElementById("quickAddProxyMenu").value,
notifyWhenCanceled:document.getElementById("quickAddNotifyWhenCanceled").checked,
urlTemplate:p,
matchType:document.getElementById("quickAddMatchType").value};
return true;
}
return false;
}
function onCancel() {
cleanup();
return true;
}
function cleanup() {
var obSvc = CC["@mozilla.org/observer-service;1"].getService(CI.nsIObserverService);
obSvc.removeObserver(window, "foxyproxy-mode-change");
obSvc.removeObserver(window, "foxyproxy-updateviews");
}
function observe(subj, topic, str) {
switch (topic) {
case "foxyproxy-mode-change":
dump("mode change: " + str + "\n");
str == "disabled" && window.close();
// TODO: does this call onOK() or onCancel()?
break;
case "foxyproxy-updateviews":
this.updateViews(false, false);
break;
}
}
/* Contains items which can be updated via toolbar/statusbar/menubar/context-menu as well as the options dialog,
so we don't include these in onLoad() */
function updateView() {
document.getElementById("quickAddUrlTemplate").value = fp.quickadd.urlTemplate;
document.getElementById("quickAddMatchType").value = fp.quickadd.match.isRegEx ? "r" : "w";
document.getElementById("quickAddReload").checked = fp.quickadd.reload;
document.getElementById("quickAddNotify").checked = fp.quickadd.notify;
document.getElementById("quickAddNotifyWhenCanceled").checked = fp.quickadd.notifyWhenCanceled;
document.getElementById("quickAddPrompt").checked = fp.quickadd.prompt;
common.updateSuperAddProxyMenu(fp.quickadd, document.getElementById("quickAddProxyMenu"), common.onQuickAddProxyChanged);
}
function onLoad() {
overlay = CC["@mozilla.org/appshell/window-mediator;1"]
.getService(CI.nsIWindowMediator).getMostRecentWindow("navigator:browser").foxyproxy;
common=overlay.common;
fp = CC["@leahscape.org/foxyproxy/service;1"].getService(CI.nsISupports).wrappedJSObject;
var obSvc = CC["@mozilla.org/observer-service;1"].getService(CI.nsIObserverService);
obSvc.addObserver(window, "foxyproxy-mode-change", false);
obSvc.addObserver(window, "foxyproxy-updateviews", false);
var w = CC["@mozilla.org/appshell/window-mediator;1"]
.getService(CI.nsIWindowMediator).getMostRecentWindow("navigator:browser");
document.getElementById("quickAddTemplateExample1").value = w ? w.content.document.location.href : "";
updateTemplateExample("quickAddUrlTemplate", "quickAddTemplateExample", fp.quickadd);
updateView();
sizeToContent();
}
function updateTemplateExample(controlName, exampleControlName, saObj) {
controlName && (document.getElementById(controlName).value = saObj.urlTemplate);
document.getElementById(exampleControlName+"2").value = saObj.applyTemplate(document.getElementById(exampleControlName+"1").value);
}

364
src/content/quickadd.xul Normal file
View File

@ -0,0 +1,364 @@
<?xml version="1.0"?>
<!--
FoxyProxy
Copyright (C) 2006, 2007 Eric H. Jung and LeahScape, Inc.
http://foxyproxy.mozdev.org/
eric.jung@yahoo.com
This source code is released under the GPL license,
available in the LICENSE file at the root of this installation
and also online at http://www.gnu.org/licenses/gpl.txt
All Rights Reserved. U.S. PATENT PENDING.
-->
<?xml-stylesheet href="foxyproxy.css" type="text/css"?>
<!DOCTYPE overlay SYSTEM "chrome://foxyproxy/locale/foxyproxy.dtd">
<dialog
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
id="foxyproxyquickadddlg"
title="&foxyproxy.quickadd.label;"
xmlns:html="http://www.w3.org/1999/xhtml"
ondialogaccept="return onOK();"
ondialogcancel="return onCancel();"
onload="onLoad();"
persist="screenX screenY"
windowtype="foxyproxy-quickadd">
<script src="quickadd.js"/>
<separator class="thin" />
<groupbox>
<grid>
<columns>
<column />
<column />
</columns>
<rows>
<row align="center">
<checkbox id="quickAddReload"
label="&foxyproxy.autoadd.reload.label;"
accesskey="&foxyproxy.autoadd.reload.accesskey;"
tooltiptext="&foxyproxy.autoadd.reload.tooltip;"/>
<checkbox id="quickAddNotify"
label="&foxyproxy.quickadd.notify.label;"
accesskey="&foxyproxy.quickadd.notify.accesskey;"
tooltiptext="&foxyproxy.quickadd.notify.tooltip;"/>
</row>
<row align="center">
<checkbox id="quickAddPrompt"
label="&foxyproxy.quickadd.prompt.label;"
accesskey="&foxyproxy.quickadd.prompt.accesskey;"
tooltiptext="&foxyproxy.quickadd.prompt.tooltip;"
checked="true"/>
<checkbox id="quickAddNotifyWhenCanceled"
label="&foxyproxy.quickadd.notify.whencanceled.label;"
accesskey="&foxyproxy.quickadd.notify.whencanceled.accesskey;"
tooltiptext="&foxyproxy.quickadd.notify.whencanceled.tooltip;"/>
</row>
</rows>
</grid>
</groupbox>
<groupbox>
<grid>
<columns>
<column />
<column flex="1" />
</columns>
<rows>
<row align="center">
<label
value="&foxyproxy.quickadd.proxy.label;"
tooltiptext="&foxyproxy.quickadd.proxy.tooltip;"
accesskey="&foxyproxy.quickadd.proxy.accesskey;"/>
<menulist id="quickAddProxyMenu"
tooltiptext="&foxyproxy.quickadd.proxy.tooltip;"
style="min-height: 1.8em;" flex="1">
<menupopup/>
</menulist>
</row>
<row align="center">
<label
value="&foxyproxy.pattern.template.label;"
tooltiptext="&foxyproxy.pattern.template.tooltip;"
accesskey="&foxyproxy.pattern.template.accesskey;"
control="quickAddUrlTemplate" />
<textbox id="quickAddUrlTemplate"
type="timed" timeout="500"
tooltiptext="&foxyproxy.pattern.template.tooltip;"
oncommand="fp.quickadd.urlTemplate = this.value;updateTemplateExample(null, 'quickAddTemplateExample', fp.quickadd);"
accesskey="&foxyproxy.pattern.template.accesskey;" />
<toolbarbutton class="foxyproxy-ref"
popup="patternTemplatePopup"
tooltiptext="&foxyproxy.pattern.template.reference.tooltip;" />
</row>
<row align="center">
<label value="&foxyproxy.pattern.template.currenturl.label;"
control="quickAddTemplateExample1" tooltiptext="&foxyproxy.pattern.template.currenturl.tooltip;" accesskey="&foxyproxy.pattern.template.currenturl.accesskey;"/>
<textbox id="quickAddTemplateExample1" tooltiptext="&foxyproxy.pattern.template.currenturl.tooltip;"
readonly="true"/>
</row>
<row align="center">
<label value="&foxyproxy.pattern.template.generatedpattern.label;"
control="quickAddTemplateExample2" tooltiptext="&foxyproxy.pattern.template.generatedpattern.tooltip;" accesskey="&foxyproxy.pattern.template.generatedpattern.accesskey;"/>
<textbox id="quickAddTemplateExample2" tooltiptext="&foxyproxy.pattern.template.generatedpattern.tooltip;"
readonly="true" style="font-weight: bold;"/>
</row>
</rows>
</grid>
</groupbox>
<radiogroup id="quickAddMatchType" orient="horizontal">
<groupbox flex="1">
<caption
label="&foxyproxy.pattern.template.matchtype.label;" />
<grid>
<columns>
<column />
<column />
<column />
</columns>
<rows>
<row align="center">
<radio id="wildcard" selected="true"
accesskey="&foxyproxy.wildcard.accesskey;"
tooltiptext="&foxyproxy.wildcard.tooltip;"
value="w"/>
<label
value="&foxyproxy.wildcard.label;"
style="margin-left: -0.5em;" class="text-link"
onclick="overlay.openAndReuseOneTabPerURL('http://foxyproxy.mozdev.org/quickstart.html#wildcards');"
tooltiptext="&foxyproxy.wildcard.tooltip;" />
<label
value="&foxyproxy.wildcard.example.label;" />
</row>
<row align="center">
<radio id="regex"
accesskey="&foxyproxy.regex.accesskey;"
tooltiptext="&foxyproxy.regex.tooltip;"
value="r"/>
<label
value="&foxyproxy.regex.label;" style="margin-left: -0.5em;"
class="text-link"
onclick="overlay.openAndReuseOneTabPerURL('http://foxyproxy.mozdev.org/quickstart.html#regex');"
tooltiptext="&foxyproxy.regex.tooltip;" />
<label
value="&foxyproxy.regex.example.label;" />
</row>
</rows>
</grid>
</groupbox>
</radiogroup>
<popupset>
<popup id="patternTemplatePopup" position="before_end"
style="height: &foxyproxy.pattern.template.reference.popup.height;; width: &foxyproxy.pattern.template.reference.popup.width;;">
<description
style="font-weight: bold; text-align: center; margin: 1em 0 0 0;">
&foxyproxy.pattern.template.reference.label;
</description>
<!--
<description style="text-align: center; margin: 0 0 1.5em 0;">&foxyproxy.pattern.template.reference.subtitle.label;</description>
-->
<grid class="foxyproxy-border"
style="margin: 0 .5em 0 .5em;">
<columns>
<column style="width: 10em; margin-right: 1em;" />
<column style="width: 10em; margin-right: 1em;" />
</columns>
<rows>
<row>
<description class="heading">
&foxyproxy.pattern.template.reference.specialstring.label;
</description>
<description class="heading">
&foxyproxy.pattern.template.reference.subststring.label;
</description>
<description class="heading">
&foxyproxy.pattern.template.reference.example.label;
</description>
</row>
<row>
<description>${0}</description>
<description>
&foxyproxy.pattern.template.reference.scheme.label;
</description>
<description>
<html:span class="red">http</html:span>
://user:pass@foo.com:8080/news/bar.htm#anchor?query=abc
</description>
</row>
<row>
<description>${1}</description>
<description>
&foxyproxy.pattern.template.reference.username.label;
</description>
<description>
http://
<html:span class="red">user</html:span>
:pass@foo.com:8080/news/bar.htm#anchor?query=abc
</description>
</row>
<row>
<description>${2}</description>
<description>
&foxyproxy.pattern.template.reference.password.label;
</description>
<description>
http://user:
<html:span class="red">pass</html:span>
@foo.com:8080/news/bar.htm#anchor?query=abc
</description>
</row>
<row>
<description>${3}</description>
<description>
&foxyproxy.pattern.template.reference.userpass.label;
</description>
<description>
http://
<html:span class="red">user:pass</html:span>
@foo.com:8080/news/bar.htm#anchor?query=abc
</description>
</row>
<row>
<description>${4}</description>
<description>
&foxyproxy.pattern.template.reference.host.label;
</description>
<description>
http://user:pass@
<html:span class="red">foo.com</html:span>
:8080/news/bar.htm#anchor?query=abc
</description>
</row>
<row>
<description>${5}</description>
<description>
&foxyproxy.pattern.template.reference.port.label;
</description>
<description>
http://user:pass@foo.com:
<html:span class="red">8080</html:span>
/news/bar.htm#anchor?query=abc
</description>
</row>
<row>
<description>${6}</description>
<description>
&foxyproxy.pattern.template.reference.hostport.label;
</description>
<description>
http://user:pass@
<html:span class="red">
foo.com:8080
</html:span>
/news/bar.htm#anchor?query=abc
</description>
</row>
<row>
<description>${7}</description>
<description>
&foxyproxy.pattern.template.reference.prepath.label;
</description>
<description>
<html:span class="red">
http://user:pass@foo.com:8080
</html:span>
/news/bar.htm#anchor?query=abc
</description>
</row>
<row>
<description>${8}</description>
<description>
&foxyproxy.pattern.template.reference.directory.label;
</description>
<description>
http://user:pass@foo.com:8080
<html:span class="red">/news/</html:span>
bar.htm#anchor?query=abc
</description>
</row>
<row>
<description>${9}</description>
<description>
&foxyproxy.pattern.template.reference.filebasename.label;
</description>
<description>
http://user:pass@foo.com:8080/news/
<html:span class="red">bar</html:span>
.htm#anchor?query=abc
</description>
</row>
<row>
<description>${10}</description>
<description>
&foxyproxy.pattern.template.reference.fileextension.label;
</description>
<description>
http://user:pass@foo.com:8080/news/bar.
<html:span class="red">htm</html:span>
#anchor?query=abc
</description>
</row>
<row>
<description>${11}</description>
<description>
&foxyproxy.pattern.template.reference.filename.label;
</description>
<description>
http://user:pass@foo.com:8080/news/
<html:span class="red">bar.htm</html:span>
#anchor?query=abc
</description>
</row>
<row>
<description>${12}</description>
<description>
&foxyproxy.pattern.template.reference.path.label;
</description>
<description>
http://user:pass@foo.com:8080
<html:span class="red">
/news/bar.htm
</html:span>
#anchor?query=abc
</description>
</row>
<row>
<description>${13}</description>
<description>
&foxyproxy.pattern.template.reference.ref.label;
</description>
<description>
http://user:pass@foo.com:8080/news/bar.htm#
<html:span class="red">anchor</html:span>
?query=abc
</description>
</row>
<row>
<description>${14}</description>
<description>
&foxyproxy.pattern.template.reference.query.label;
</description>
<description>
http://user:pass@foo.com:8080/news/bar.htm#anchor?
<html:span class="red">query=abc</html:span>
</description>
</row>
<row>
<description>${15}</description>
<description>
&foxyproxy.pattern.template.reference.spec.label;
</description>
<description>
<html:span class="red">
http://user:pass@foo.com:8080/news/bar.htm#anchor?query=abc
</html:span>
</description>
</row>
</rows>
</grid>
</popup>
</popupset>
</dialog>

114
src/content/strings.xml Normal file
View File

@ -0,0 +1,114 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
FoxyProxy
Copyright (C) 2006, 2007 Eric H. Jung and LeahScape, Inc.
http://foxyproxy.mozdev.org/
eric.jung@yahoo.com
This source code is released under the GPL license,
available in the LICENSE file at the root of this installation
and also online at http://www.gnu.org/licenses/gpl.txt
All Rights Reserved. U.S. PATENT PENDING.
-->
<?xml-stylesheet href="foxyproxy.css" type="text/css"?>
<!DOCTYPE overlay SYSTEM "chrome://foxyproxy/locale/foxyproxy.dtd">
<root>
<i18n id="foxyproxy.proxydns.label" value="&foxyproxy.proxydns.label;"/>
<i18n id="foxyproxy.proxydns.accesskey" value="&foxyproxy.proxydns.accesskey;"/>
<i18n id="foxyproxy.proxydns.tooltip" value="&foxyproxy.proxydns.tooltip;"/>
<i18n id="foxyproxy.proxydns.notice" value="&foxyproxy.proxydns.notice;"/>
<i18n id="foxyproxy.showstatusbaricon.label" value="&foxyproxy.showstatusbaricon.label;"/>
<i18n id="foxyproxy.showstatusbaricon.accesskey" value="&foxyproxy.showstatusbaricon.accesskey;"/>
<i18n id="foxyproxy.showstatusbaricon.tooltip" value="&foxyproxy.showstatusbaricon.tooltip;"/>
<i18n id="foxyproxy.showstatusbarmode.label" value="&foxyproxy.showstatusbarmode.label;"/>
<i18n id="foxyproxy.showstatusbarmode.accesskey" value="&foxyproxy.showstatusbarmode.accesskey;"/>
<i18n id="foxyproxy.showstatusbarmode.tooltip" value="&foxyproxy.showstatusbarmode.tooltip;"/>
<i18n id="foxyproxy.toolsmenu.label" value="&foxyproxy.toolsmenu.label;"/>
<i18n id="foxyproxy.toolsmenu.accesskey" value="&foxyproxy.toolsmenu.accesskey;"/>
<i18n id="foxyproxy.toolsmenu.tooltip" value="&foxyproxy.toolsmenu.tooltip;"/>
<i18n id="foxyproxy.contextmenu.label" value="&foxyproxy.contextmenu.label;"/>
<i18n id="foxyproxy.contextmenu.accesskey" value="&foxyproxy.contextmenu.accesskey;"/>
<i18n id="foxyproxy.contextmenu.tooltip" value="&foxyproxy.contextmenu.tooltip;"/>
<i18n id="foxyproxy.pacloadnotification.label" value="&foxyproxy.pacloadnotification.label;"/>
<i18n id="foxyproxy.pacloadnotification.accesskey" value="&foxyproxy.pacloadnotification.accesskey;"/>
<i18n id="foxyproxy.pacloadnotification.tooltip" value="&foxyproxy.pacloadnotification.tooltip;"/>
<i18n id="foxyproxy.pacerrornotification.label" value="&foxyproxy.pacerrornotification.label;"/>
<i18n id="foxyproxy.pacerrornotification.accesskey" value="&foxyproxy.pacerrornotification.accesskey;"/>
<i18n id="foxyproxy.pacerrornotification.tooltip" value="&foxyproxy.pacerrornotification.tooltip;"/>
<i18n id="foxyproxy.advancedmenus.label" value="&foxyproxy.advancedmenus.label;"/>
<i18n id="foxyproxy.advancedmenus.accesskey" value="&foxyproxy.advancedmenus.accesskey;"/>
<i18n id="foxyproxy.advancedmenus.tooltip" value="&foxyproxy.advancedmenus.tooltip;"/>
<i18n id="foxyproxy.tab.logging.label" value="&foxyproxy.tab.logging.label;"/>
<i18n id="foxyproxy.tab.logging.accesskey" value="&foxyproxy.tab.logging.accesskey;"/>
<i18n id="foxyproxy.tab.logging.tooltip" value="&foxyproxy.tab.logging.tooltip;"/>
<i18n id="foxyproxy.enabled.label" value="&foxyproxy.enabled.label;"/>
<i18n id="foxyproxy.enabled.accesskey" value="&foxyproxy.enabled.accesskey;"/>
<i18n id="foxyproxy.enabled.tooltip" value="&foxyproxy.enabled.tooltip;"/>
<i18n id="foxyproxy.refresh.label" value="&foxyproxy.refresh.label;"/>
<i18n id="foxyproxy.refresh.accesskey" value="&foxyproxy.refresh.accesskey;"/>
<i18n id="foxyproxy.refresh.tooltip" value="&foxyproxy.refresh.tooltip;"/>
<i18n id="foxyproxy.clear.label" value="&foxyproxy.clear.label;"/>
<i18n id="foxyproxy.clear.accesskey" value="&foxyproxy.clear.accesskey;"/>
<i18n id="foxyproxy.clear.tooltip" value="&foxyproxy.clear.tooltip;"/>
<i18n id="foxyproxy.tab.global.label" value="&foxyproxy.tab.global.label;"/>
<i18n id="foxyproxy.tab.global.accesskey" value="&foxyproxy.tab.global.accesskey;"/>
<i18n id="foxyproxy.tab.global.tooltip" value="&foxyproxy.tab.global.tooltip;"/>
<i18n id="foxyproxy.tab.patterns.label" value="&foxyproxy.tab.patterns.label;"/>
<i18n id="foxyproxy.tab.patterns.accesskey" value="&foxyproxy.tab.patterns.accesskey;"/>
<i18n id="foxyproxy.tab.patterns.tooltip" value="&foxyproxy.tab.patterns.tooltip;"/>
<i18n id="foxyproxy.options.label" value="&foxyproxy.options.label;"/>
<i18n id="foxyproxy.options.accesskey" value="&foxyproxy.options.accesskey;"/>
<i18n id="foxyproxy.options.tooltip" value="&foxyproxy.options.tooltip;"/>
<i18n id="foxyproxy.help.label" value="&foxyproxy.help.label;"/>
<i18n id="foxyproxy.help.accesskey" value="&foxyproxy.help.accesskey;"/>
<i18n id="foxyproxy.help.tooltip" value="&foxyproxy.help.tooltip;"/>
<i18n id="foxyproxy.regex.label" value="&foxyproxy.regex.label;"/>
<i18n id="foxyproxy.wildcard.label" value="&foxyproxy.wildcard.label;"/>
<i18n id="foxyproxy.blacklist.label" value="&foxyproxy.blacklist.label;"/>
<i18n id="foxyproxy.whitelist.label" value="&foxyproxy.whitelist.label;"/>
<i18n id="foxyproxy.proxydns.notice" value="&foxyproxy.proxydns.notice;"/>
<i18n id="foxyproxy.tab.logging.timestamp.label" value="&foxyproxy.tab.logging.timestamp.label;"/>
<i18n id="foxyproxy.tab.logging.url.label" value="&foxyproxy.tab.logging.url.label;"/>
<i18n id="foxyproxy.proxy.name.label" value="&foxyproxy.proxy.name.label;"/>
<i18n id="foxyproxy.proxy.notes.label" value="&foxyproxy.proxy.notes.label;"/>
<i18n id="foxyproxy.pattern.name.label" value="&foxyproxy.pattern.name.label;"/>
<i18n id="foxyproxy.pattern.label" value="&foxyproxy.pattern.label;"/>
<i18n id="foxyproxy.pattern.type.label" value="&foxyproxy.pattern.type.label;"/>
<i18n id="foxyproxy.whitelist.blacklist.label" value="&foxyproxy.whitelist.blacklist.label;"/>
<i18n id="foxyproxy.logging.noURLs.label" value="&foxyproxy.logging.noURLs.label;"/>
<i18n id="foxyproxy.logging.noURLs.accesskey" value="&foxyproxy.logging.noURLs.accesskey;"/>
<i18n id="foxyproxy.logging.noURLs.tooltip" value="&foxyproxy.logging.noURLs.tooltip;"/>
<i18n id="foxyproxy.tab.autoadd.label" value="&foxyproxy.tab.autoadd.label;"/>
<i18n id="foxyproxy.quickadd.label" value="&foxyproxy.quickadd.label;"/>
<i18n id="foxyproxy.animatedicons.label" value="&foxyproxy.animatedicons.label;"/>
<i18n id="foxyproxy.animatedicons.accesskey" value="&foxyproxy.animatedicons.accesskey;"/>
<i18n id="foxyproxy.animatedicons.tooltip" value="&foxyproxy.animatedicons.tooltip;"/>
<i18n id="foxyproxy.pattern.template.example.label2" value="&foxyproxy.pattern.template.example.label2;"/>
<i18n id="foxyproxy.error.msg.label" value="&foxyproxy.error.msg.label;"/>
<i18n id="foxyproxy.pac.result.label" value="&foxyproxy.pac.result.label;"/>
</root>

View File

@ -0,0 +1,80 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
FoxyProxy
Copyright (C) 2006, 2007 Eric H. Jung and LeahScape, Inc.
http://foxyproxy.mozdev.org/
eric.jung@yahoo.com
This source code is released under the GPL license,
available in the LICENSE file at the root of this installation
and also online at http://www.gnu.org/licenses/gpl.txt
All Rights Reserved. U.S. PATENT PENDING.
-->
<?xml-stylesheet href="foxyproxy.css" type="text/css"?>
<!DOCTYPE overlay SYSTEM "chrome://foxyproxy/locale/foxyproxy.dtd">
<overlay id="foxyproxy-overlay" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<script src="chrome://foxyproxy/content/overlay.js"/>
<stringbundleset id="foxyproxy-strings">
<stringbundle src="chrome://foxyproxy/locale/foxyproxy.properties"/>
</stringbundleset>
<!-- menu -->
<menupopup id="taskPopup">
<menu id="foxyproxy-tools-menu-1" label="&foxyproxy.label;" insertbefore="devToolsSeparator" position="9"
accesskey="&foxyproxy.accesskey;" class="menu-iconic foxyproxybutton-small"
mode="patterns" persist="mode">
<menupopup id="foxyproxy-toolsmenu-popup"
onpopupshowing="foxyproxy.onPopupShowing(this, event);"
onpopuphiding="foxyproxy.onPopupHiding();"/>
</menu>
</menupopup>
<keyset id="taskKeys">
<!-- accel is ctrl on windows, cmd on mac -->
<key id="key_foxyproxyfocus" keycode="VK_F2" modifiers="accel" oncommand="foxyproxy.onOptionsDialog();"/>
<!-- <key id="key_foxyproxyfocus" keycode="VK_F2" modifiers="alt" oncommand="foxyproxy.onQuickAddDialog(event);"/> -->
</keyset>
<popup id="contentAreaContextMenu">
<menu id="foxyproxy-context-menu-1" label="&foxyproxy.label;"
accesskey="&foxyproxy.accesskey;" class="menu-iconic foxyproxybutton-small"
mode="patterns" persist="mode hidden" hidden="false">
<menupopup id="foxyproxy-contextmenu-popup"
onpopupshowing="foxyproxy.onPopupShowing(this, event);"
onpopuphiding="foxyproxy.onPopupHiding();"/>
</menu>
</popup>
<statusbar id="status-bar">
<hbox>
<popupset style="overflow: auto;">
<tooltip id="foxyproxy-popup" style="max-height: none; max-width: none;" onclick="this.hidePopup();"/>
</popupset>
</hbox>
<menupopup id="foxyproxy-statusbar-popup"
onpopupshowing="foxyproxy.onPopupShowing(this, event);"
onpopuphiding="foxyproxy.onPopupHiding();"/>
<statusbarpanel
id="foxyproxy-status-text"
onclick="if(event.button==0) {foxyproxy.onOptionsDialog();event.stopPropagation();} else document.getElementById('foxyproxy-statusbar-popup').showPopup(this, -1, -1, 'popup', 'bottomleft', 'topleft');"
mode="patterns" persist="mode hidden" hidden="true"/>
<statusbarpanel
id="foxyproxy-status-icon"
onclick="if(event.button==0) {foxyproxy.onOptionsDialog();event.stopPropagation();} else document.getElementById('foxyproxy-statusbar-popup').showPopup(this, -1, -1, 'popup', 'bottomleft', 'topleft');"
class="statusbarpanel-menu-iconic foxyproxybutton-small"
mode="patterns" persist="mode hidden" hidden="true"/>
</statusbar>
<toolbarpalette id="MailToolbarPalette">
<toolbarbutton id="foxyproxy-button-1" type="menu" label="&foxyproxy.label;"
accesskey="&foxyproxy.accesskey;"
class="toolbarbutton-1 chromeclass-toolbar-additional foxyproxybutton">
<menupopup id="foxyproxy-toolbarbutton-popup"
onpopupshowing="foxyproxy.onPopupShowing(this, event);"
onpopuphiding="foxyproxy.onPopupHiding();"/>
</toolbarbutton>
</toolbarpalette>
</overlay>

View File

@ -0,0 +1,2 @@
// See http://kb.mozillazine.org/Localize_extension_descriptions
pref("extensions.foxyproxy@eric.h.jung.description", "chrome://foxyproxy/locale/foxyproxy.properties");

38
src/install.rdf Normal file
View File

@ -0,0 +1,38 @@
<?xml version="1.0"?>
<!--
FoxyProxy
Copyright (C) 2006, 2007 Eric H. Jung and LeahScape, Inc.
http://foxyproxy.mozdev.org/
eric.jung@yahoo.com
This source code is released under the GPL license,
available in the LICENSE file at the root of this installation
and also online at http://www.gnu.org/licenses/gpl.txt
All Rights Reserved. U.S. PATENT PENDING.
-->
<RDF:RDF xmlns:em="http://www.mozilla.org/2004/em-rdf#"
xmlns:NC="http://home.netscape.com/NC-rdf#"
xmlns:RDF="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<RDF:Description RDF:about="rdf:#$.Np5B"
em:id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}"
em:minVersion="1.5"
em:maxVersion="2.0.0.*" />
<RDF:Description RDF:about="rdf:#$3Op5B"
em:id="{a463f10c-3994-11da-9945-000d60ca027b}"
em:maxVersion="1.0+"
em:minVersion="1.0+" />
<RDF:Description RDF:about="urn:mozilla:install-manifest"
em:id="foxyproxy@eric.h.jung"
em:name="FoxyProxy"
em:version="2.5.3"
em:creator="LeahScape, Inc."
em:description=""
em:homepageURL="http://foxyproxy.mozdev.org"
em:aboutURL="chrome://foxyproxy/content/about.xul"
em:optionsURL="chrome://foxyproxy/content/options.xul"
em:iconURL="chrome://foxyproxy/content/images/foxyproxy-nocopy.gif">
<em:targetApplication RDF:resource="rdf:#$.Np5B"/>
<em:targetApplication RDF:resource="rdf:#$3Op5B"/>
</RDF:Description>
</RDF:RDF>

View File

@ -0,0 +1,427 @@
<!ENTITY foxyproxy.label "FoxyProxy">
<!ENTITY foxyproxy.accesskey "F">
<!ENTITY foxyproxy.tooltip "FoxyProxy">
<!ENTITY foxyproxy.optionsdialog.label "FoxyProxy Options">
<!ENTITY foxyproxy.options.label "Možnosti">
<!ENTITY foxyproxy.options.accesskey "O">
<!ENTITY foxyproxy.options.tooltip "Open the Options Dialog">
<!ENTITY foxyproxy.tree.pickertooltiptext.label "Click to select which columns to display">
<!ENTITY foxyproxy.proxy.name.label "Proxy Name">
<!ENTITY foxyproxy.proxy.name.accesskey "N">
<!ENTITY foxyproxy.proxy.name.tooltip "Proxy Name">
<!ENTITY foxyproxy.proxy.notes.label "Proxy Notes">
<!ENTITY foxyproxy.proxy.notes.accesskey "N">
<!ENTITY foxyproxy.proxy.notes.tooltip "Proxy Notes">
<!ENTITY foxyproxy.pattern.label "Matching Pattern">
<!ENTITY foxyproxy.pattern.type.label "Pattern Type">
<!ENTITY foxyproxy.whitelist.blacklist.label "Whitelist (Inclusive) or Blacklist (Exclusive)">
<!ENTITY foxyproxy.pattern.name.label "Pattern Name">
<!ENTITY foxyproxy.pattern.name.accesskey "P">
<!ENTITY foxyproxy.pattern.name.tooltip "Name for the pattern">
<!ENTITY foxyproxy.url.pattern.label "URL or URL pattern">
<!ENTITY foxyproxy.url.pattern.accesskey "U">
<!ENTITY foxyproxy.url.pattern.tooltip "URL or URL pattern">
<!ENTITY foxyproxy.enabled.label "Zapnuto">
<!ENTITY foxyproxy.enabled.accesskey "Z">
<!ENTITY foxyproxy.enabled.tooltip "Toggle enable/disable">
<!ENTITY foxyproxy.delete.selection.label "Delete Selection">
<!ENTITY foxyproxy.delete.selection.accesskey "D">
<!ENTITY foxyproxy.delete.selection.tooltip "Delete the currently selected item">
<!ENTITY foxyproxy.edit.selection.label "Edit Selection">
<!ENTITY foxyproxy.edit.selection.accesskey "E">
<!ENTITY foxyproxy.edit.selection.tooltip "Edit the currently selected item">
<!ENTITY foxyproxy.help.label "Obsah nápovědy">
<!ENTITY foxyproxy.help.accesskey "H">
<!ENTITY foxyproxy.help.tooltip "Zobrazení nápovědy">
<!ENTITY foxyproxy.close.label "Zavřít">
<!ENTITY foxyproxy.close.accesskey "Z">
<!ENTITY foxyproxy.close.tooltip "Zavřít okno">
<!ENTITY foxyproxy.about.label "O rozšíření">
<!ENTITY foxyproxy.about.accesskey "O">
<!ENTITY foxyproxy.about.tooltip "Opens the about box">
<!ENTITY foxyproxy.online.label "FoxyProxy Online">
<!ENTITY foxyproxy.online.accesskey "O">
<!ENTITY foxyproxy.online.tooltip "Návštěva webové stránky FoxyProxy">
<!ENTITY foxyproxy.tor.label "Tor Wizard">
<!ENTITY foxyproxy.tor.accesskey "W">
<!ENTITY foxyproxy.tor.tooltip "Tor Wizard">
<!ENTITY foxyproxy.copy.selection.label "Copy Selection">
<!ENTITY foxyproxy.copy.selection.accesskey "C">
<!ENTITY foxyproxy.copy.selection.tooltip "Copies selection">
<!ENTITY foxyproxy.mode.label "Select Mode">
<!ENTITY foxyproxy.auto.url.label "Automatic proxy configuration URL">
<!ENTITY foxyproxy.auto.url.accesskey "A">
<!ENTITY foxyproxy.auto.url.tooltip "Enter URL of the PAC file">
<!ENTITY foxyproxy.port.label "Port">
<!ENTITY foxyproxy.port.accesskey "P">
<!ENTITY foxyproxy.port.tooltip "Port">
<!ENTITY foxyproxy.socks.proxy.label "SOCKS Proxy">
<!ENTITY foxyproxy.socks.proxy.accesskey "C">
<!ENTITY foxyproxy.socks.proxy.tooltip "URL of SOCKS Proxy">
<!ENTITY foxyproxy.socks.v4 "SOCKS v4/4a">
<!ENTITY foxyproxy.socks.v5 "SOCKS v5">
<!ENTITY foxyproxy.addeditpattern.title "Add/Edit Pattern">
<!ENTITY foxyproxy.wildcard.label "Wildcards">
<!ENTITY foxyproxy.wildcard.accesskey "W">
<!ENTITY foxyproxy.wildcard.tooltip "Specifies that the URL or URL pattern uses wildcards and is not a regular expression">
<!ENTITY foxyproxy.wildcard.example.label "Example: *mail.yahoo.com/*">
<!ENTITY foxyproxy.regex.label "Regular Expression">
<!ENTITY foxyproxy.regex.accesskey "R">
<!ENTITY foxyproxy.regex.tooltip "Specifies that the URL or URL pattern is a regular expression">
<!ENTITY foxyproxy.regex.example.label "Example: http?://.*\.mail\.yahoo\.com/.*">
<!ENTITY foxyproxy.version "Verze">
<!ENTITY foxyproxy.createdBy "Vytvořil:">
<!ENTITY foxyproxy.copyright "Copyright">
<!ENTITY foxyproxy.rights "Všechna práva vyhrazena.">
<!ENTITY foxyproxy.released "Uvolněno v rámci">
<!ENTITY foxyproxy.thanks "Special thanks to">
<!ENTITY foxyproxy.translations "Translations">
<!ENTITY foxyproxy.tab.general.label "General">
<!ENTITY foxyproxy.tab.general.accesskey "G">
<!ENTITY foxyproxy.tab.general.tooltip "Manage General Proxy Settings">
<!ENTITY foxyproxy.tab.proxy.label "Proxy Details">
<!ENTITY foxyproxy.tab.proxy.accesskey "R">
<!ENTITY foxyproxy.tab.proxy.tooltip "Manage Proxy Details">
<!ENTITY foxyproxy.tab.patterns.label "Patterns">
<!ENTITY foxyproxy.tab.patterns.accesskey "P">
<!ENTITY foxyproxy.tab.patterns.tooltip "Manage URL Patterns">
<!ENTITY foxyproxy.add.title "Proxy Settings">
<!ENTITY foxyproxy.pattern.description "Here you can add or remove URLs for which this proxy is used.">
<!ENTITY foxyproxy.pattern.matchtype.label "Pattern Contains">
<!ENTITY foxyproxy.pattern.matchtype2.label "Pattern To Identify Blocked Websites Contains">
<!ENTITY foxyproxy.pattern.template.matchtype.label "Pattern Template Contains">
<!ENTITY foxyproxy.pattern.whiteblack.label "URL Inclusion/Exclusion">
<!ENTITY foxyproxy.add.option.direct.label "Direct internet connection">
<!ENTITY foxyproxy.add.option.direct.accesskey "D">
<!ENTITY foxyproxy.add.option.direct.tooltip "Do not use a proxy - use the underlying direct internet connection">
<!ENTITY foxyproxy.add.option.manual.label "Manual Proxy Configuration">
<!ENTITY foxyproxy.add.option.manual.accesskey "M">
<!ENTITY foxyproxy.add.option.manual.tooltip "Manually define a proxy configuration">
<!ENTITY foxyproxy.add.new.pattern.label "Add New Pattern">
<!ENTITY foxyproxy.add.new.pattern.accesskey "A">
<!ENTITY foxyproxy.add.new.pattern.tooltip "Add New Pattern">
<!ENTITY foxyproxy.menubar.file.label "File">
<!ENTITY foxyproxy.menubar.file.accesskey "F">
<!ENTITY foxyproxy.menubar.file.tooltip "Open the File Menu">
<!ENTITY foxyproxy.menubar.help.label "Nápověda">
<!ENTITY foxyproxy.menubar.help.accesskey "N">
<!ENTITY foxyproxy.menubar.help.tooltip "Open the Help Menu">
<!ENTITY foxyproxy.mode.accesskey "M">
<!ENTITY foxyproxy.mode.tooltip "Select how to enable FoxyProxy">
<!ENTITY foxyproxy.tab.proxies.label "Proxies">
<!ENTITY foxyproxy.tab.proxies.accesskey "P">
<!ENTITY foxyproxy.tab.proxies.tooltip "Manage Proxies">
<!ENTITY foxyproxy.tab.global.label "Global Settings">
<!ENTITY foxyproxy.tab.global.accesskey "G">
<!ENTITY foxyproxy.tab.global.tooltip "Manage Global Settings">
<!ENTITY foxyproxy.tab.logging.label "Logging">
<!ENTITY foxyproxy.tab.logging.accesskey "L">
<!ENTITY foxyproxy.tab.logging.tooltip "Manage Logging Settings">
<!ENTITY foxyproxy.proxydns.label "Use SOCKS proxy for DNS lookups">
<!ENTITY foxyproxy.proxydns.accesskey "U">
<!ENTITY foxyproxy.proxydns.tooltip "If checked, DNS lookups are routed through a SOCKS proxy">
<!ENTITY foxyproxy.proxydns.notice "You must restart all Firefox browsers for this change to take effect.">
<!ENTITY foxyproxy.showstatusbaricon.label "Show icon on statusbar">
<!ENTITY foxyproxy.showstatusbaricon.accesskey "S">
<!ENTITY foxyproxy.showstatusbaricon.tooltip "If checked, FoxyProxy icon is shown on the statusbar">
<!ENTITY foxyproxy.showstatusbarmode.label "Show mode (text) on statusbar">
<!ENTITY foxyproxy.showstatusbarmode.accesskey "S">
<!ENTITY foxyproxy.showstatusbarmode.tooltip "If checked, FoxyProxy mode is shown on the statusbar">
<!ENTITY foxyproxy.storagelocation.label "Settings Storage Location">
<!ENTITY foxyproxy.storagelocation.accesskey "S">
<!ENTITY foxyproxy.storagelocation.tooltip "Location to store FoxyProxy&apos;s settings">
<!ENTITY foxyproxy.tab.logging.timestamp.label "Timestamp">
<!ENTITY foxyproxy.tab.logging.url.label "URL">
<!ENTITY foxyproxy.host.label "Host Name">
<!ENTITY foxyproxy.host.accesskey "H">
<!ENTITY foxyproxy.host.tooltip "Host Name">
<!ENTITY foxyproxy.clear.label "Clear">
<!ENTITY foxyproxy.clear.accesskey "C">
<!ENTITY foxyproxy.clear.tooltip "Clear">
<!ENTITY foxyproxy.refresh.label "Refresh">
<!ENTITY foxyproxy.refresh.accesskey "R">
<!ENTITY foxyproxy.refresh.tooltip "Refresh">
<!ENTITY foxyproxy.save.label "Save">
<!ENTITY foxyproxy.save.accesskey "S">
<!ENTITY foxyproxy.save.tooltip "Save">
<!ENTITY foxyproxy.addnewproxy.label "Add New Proxy">
<!ENTITY foxyproxy.addnewproxy.accesskey "A">
<!ENTITY foxyproxy.addnewproxy.tooltip "Add New Proxy">
<!ENTITY foxyproxy.whitelist.label "Whitelist">
<!ENTITY foxyproxy.whitelist.accesskey "W">
<!ENTITY foxyproxy.whitelist.tooltip "URLs matching this pattern are loaded through this proxy">
<!ENTITY foxyproxy.whitelist.description.label "URLs matching this pattern are loaded through this proxy">
<!ENTITY foxyproxy.blacklist.label "Blacklist">
<!ENTITY foxyproxy.blacklist.accesskey "B">
<!ENTITY foxyproxy.blacklist.tooltip "URLs matching this pattern are NOT loaded through this proxy">
<!ENTITY foxyproxy.blacklist.description.label "URLs matching this pattern are NOT loaded through this proxy">
<!ENTITY foxyproxy.whiteblack.description.label "Blacklist (exclusion) patterns have precedence over whitelist (inclusion) patterns: if a URL matches both a whitelisted pattern and a blacklisted pattern for the same proxy, the URL is excluded from being loaded by that proxy.">
<!ENTITY foxyproxy.usingPFF.label1 "I am using">
<!ENTITY foxyproxy.usingPFF.label2 "Portable Firefox">
<!ENTITY foxyproxy.usingPFF.accesskey "P">
<!ENTITY foxyproxy.usingPFF.tooltip "Check here if you are using Portable Firefox">
<!ENTITY foxyproxy.socks.version.label "SOCKS Version">
<!ENTITY foxyproxy.autopacurl.label "Auto PAC URL">
<!ENTITY foxyproxy.issocks.label "SOCKS proxy?">
<!ENTITY foxyproxy.issocks.accesskey "S">
<!ENTITY foxyproxy.issocks.tooltip "Is this a web proxy or SOCKS proxy?">
<!ENTITY foxyproxy.chinese.simplified "Chinese (Simplified)">
<!ENTITY foxyproxy.chinese.traditional "Chinese (Traditional)">
<!ENTITY foxyproxy.croatian "Croatian">
<!ENTITY foxyproxy.czech "Czech">
<!ENTITY foxyproxy.danish "Danish">
<!ENTITY foxyproxy.dutch "Dutch">
<!ENTITY foxyproxy.english "English">
<!ENTITY foxyproxy.english.british "English (British)">
<!ENTITY foxyproxy.french "French">
<!ENTITY foxyproxy.german "German">
<!ENTITY foxyproxy.greek "Greek">
<!ENTITY foxyproxy.hungarian "Hungarian">
<!ENTITY foxyproxy.italian "Italian">
<!ENTITY foxyproxy.persian "Persian">
<!ENTITY foxyproxy.polish "Polish">
<!ENTITY foxyproxy.portugese.brazilian "Portugese (Brazilian)">
<!ENTITY foxyproxy.portugese.portugal "Portugese (Portugal)">
<!ENTITY foxyproxy.romanian "Romanian">
<!ENTITY foxyproxy.russian "Russian">
<!ENTITY foxyproxy.slovak "Slovak">
<!ENTITY foxyproxy.spanish.spain "Spanish (Spain)">
<!ENTITY foxyproxy.spanish.argentina "Spanish (Argentina)">
<!ENTITY foxyproxy.swedish "Swedish">
<!ENTITY foxyproxy.thai.thailand "Thai (Thailand)">
<!ENTITY foxyproxy.turkish "Turkish">
<!ENTITY foxyproxy.ukrainian "Ukrainian">
<!ENTITY foxyproxy.your.language "Your Language">
<!ENTITY foxyproxy.your.name.here "Your name here!">
<!ENTITY foxyproxy.moveup.label "Move Up">
<!ENTITY foxyproxy.moveup.tooltip "Increase priority of current selection">
<!ENTITY foxyproxy.moveup.accesskey "U">
<!ENTITY foxyproxy.movedown.label "Move Down">
<!ENTITY foxyproxy.movedown.tooltip "Decrease priority of current selection">
<!ENTITY foxyproxy.movedown.accesskey "D">
<!ENTITY foxyproxy.autoconfurl.view.label "View">
<!ENTITY foxyproxy.autoconfurl.view.accesskey "V">
<!ENTITY foxyproxy.autoconfurl.view.tooltip "View auto-configuration file">
<!ENTITY foxyproxy.autoconfurl.test.label "Test">
<!ENTITY foxyproxy.autoconfurl.test.accesskey "T">
<!ENTITY foxyproxy.autoconfurl.test.tooltip "Test the auto-configuration file">
<!ENTITY foxyproxy.autoconfurl.reload.label "Reload the PAC every">
<!ENTITY foxyproxy.autoconfurl.reload.accesskey "R">
<!ENTITY foxyproxy.autoconfurl.reload.tooltip "Auto-reload the PAC file every specified period">
<!ENTITY foxyproxy.minutes.label "minutes">
<!ENTITY foxyproxy.minutes.tooltip "minutes">
<!ENTITY foxyproxy.logging.maxsize.label "Maximum Size">
<!ENTITY foxyproxy.logging.maxsize.accesskey "M">
<!ENTITY foxyproxy.logging.maxsize.tooltip "Maximum number of log entries before the log wraps to the beginning">
<!ENTITY foxyproxy.logging.maxsize.button.label "Set">
<!ENTITY foxyproxy.logging.maxsize.button.accesskey "S">
<!ENTITY foxyproxy.logging.maxsize.button.tooltip "Sets the maximum number of log entries before the log wraps to the beginning">
<!ENTITY foxyproxy.random.label "Load URLs through random proxies (ignore all patterns and priorities)">
<!ENTITY foxyproxy.random.accesskey "R">
<!ENTITY foxyproxy.random.tooltip "Load URLs through random proxies (ignore all patterns and priorities)">
<!ENTITY foxyproxy.random.includedirect.label "Include proxies configured as direct internet connections">
<!ENTITY foxyproxy.random.includedirect.accesskey "I">
<!ENTITY foxyproxy.random.includedirect.tooltip "Proxies configured as direct internet connections are included in random proxy selection">
<!ENTITY foxyproxy.random.includedisabled.label "Include disabled proxies">
<!ENTITY foxyproxy.random.includedisabled.accesskey "D">
<!ENTITY foxyproxy.random.includedisabled.tooltip "Proxies configured as disabled are included in random proxy selection">
<!ENTITY foxyproxy.random.settings.label "Random Proxy Selection">
<!ENTITY foxyproxy.random.settings.accesskey "R">
<!ENTITY foxyproxy.random.settings.tooltip "Settings which affect random proxy selection">
<!ENTITY foxyproxy.tab.autoadd.label "AutoAdd">
<!ENTITY foxyproxy.tab.autoadd.accesskey "A">
<!ENTITY foxyproxy.tab.autoadd.tooltip "Manage AutoAdd Settings">
<!ENTITY foxyproxy.autoadd.description "Specify a pattern that identifies blocked websites. When the pattern is found on a page, a pattern matching that website&apos;s URL is automatically added to a proxy and optionally reloaded. This prevents you from having to proactively identify all blocked websites">
<!ENTITY foxyproxy.autoadd.pattern.label "Pattern to identify blocked websites">
<!ENTITY foxyproxy.autoadd.pattern.accesskey "P">
<!ENTITY foxyproxy.autoadd.pattern.tooltip "Pattern that identifies blocked websites">
<!ENTITY foxyproxy.autoadd.wildcard.example.label "Example: *You are not authorized to view this page*">
<!ENTITY foxyproxy.autoadd.regex.example.label "Example: .*Site.*has been blocked.*">
<!ENTITY foxyproxy.autoadd.proxy.label "Proxy to which patterns are automatically added">
<!ENTITY foxyproxy.autoadd.proxy.accesskey "P">
<!ENTITY foxyproxy.autoadd.proxy.tooltip "Specify the proxy to which URLs are automatically added">
<!ENTITY foxyproxy.pattern.template.label "URL Pattern Template">
<!ENTITY foxyproxy.pattern.template.accesskey "U">
<!ENTITY foxyproxy.pattern.template.tooltip "URL Pattern Template">
<!ENTITY foxyproxy.pattern.template.example.label1 "Example for ">
<!ENTITY foxyproxy.pattern.template.example.label2 "http://fred:secret@mail.foo.com:8080/inbox/msg102.htm#subject?style=elegant">
<!ENTITY foxyproxy.pattern.template.currenturl.label "Current URL">
<!ENTITY foxyproxy.pattern.template.currenturl.accesskey "C">
<!ENTITY foxyproxy.pattern.template.currenturl.tooltip "URL in the address bar">
<!ENTITY foxyproxy.pattern.template.generatedpattern.label "Generated Pattern">
<!ENTITY foxyproxy.pattern.template.generatedpattern.accesskey "G">
<!ENTITY foxyproxy.pattern.template.generatedpattern.tooltip "Dynamically generated pattern">
<!ENTITY foxyproxy.autoadd.reload.label "Reload the page after site is added to proxy">
<!ENTITY foxyproxy.autoadd.reload.accesskey "R">
<!ENTITY foxyproxy.autoadd.reload.tooltip "Automatically reload the page after it&apos;s been added to a proxy">
<!ENTITY foxyproxy.autoadd.notify.label "Notify me when AutoAdd is triggered">
<!ENTITY foxyproxy.autoadd.notify.accesskey "N">
<!ENTITY foxyproxy.autoadd.notify.tooltip "Informs you when a page is blocked &amp; the URL pattern is added to a proxy">
<!ENTITY foxyproxy.graphics "Graphic design and images by">
<!ENTITY foxyproxy.website "Website by">
<!ENTITY foxyproxy.contributions "Contributions by">
<!ENTITY foxyproxy.pacloadnotification.label "Notify me about proxy auto-configuration file loads">
<!ENTITY foxyproxy.pacloadnotification.accesskey "L">
<!ENTITY foxyproxy.pacloadnotification.tooltip "Display a popup when a PAC file loads">
<!ENTITY foxyproxy.pacerrornotification.label "Notify me about proxy auto-configuration file errors">
<!ENTITY foxyproxy.pacerrornotification.accesskey "E">
<!ENTITY foxyproxy.pacerrornotification.tooltip "Display a popup when about PAC file errors">
<!ENTITY foxyproxy.toolsmenu.label "Show FoxyProxy in the Firefox tools menu">
<!ENTITY foxyproxy.toolsmenu.accesskey "T">
<!ENTITY foxyproxy.toolsmenu.tooltip "Show FoxyProxy in the Firefox tools menu">
<!ENTITY foxyproxy.tip.label "Tip">
<!ENTITY foxyproxy.pactips.popup.height "165px">
<!ENTITY foxyproxy.pactips.popup.width "400px">
<!ENTITY foxyproxy.pactip1.label "For PAC files stored on a local hard drive, use the file:// scheme. For example, file://c:/path/proxy.pac on Windows or file:///home/users/joe/proxy.pac on Unix/Linux/Mac.">
<!ENTITY foxyproxy.pactip2.label "For PAC files on an ftp server, use the ftp:// scheme. For example, ftp://leahscape.com/path/proxy.pac">
<!ENTITY foxyproxy.pactip3.label "You can also use http://, https://, and any other supported scheme.">
<!ENTITY foxyproxy.contextmenu.label "Show FoxyProxy in the context-menu">
<!ENTITY foxyproxy.contextmenu.accesskey "C">
<!ENTITY foxyproxy.contextmenu.tooltip "Show FoxyProxy in the context-menu">
<!ENTITY foxyproxy.quickadd.desc1 "QuickAdd adds a dynamic URL pattern to a proxy when you press Alt-F2. It is practical alternative to AutoAdd. Customize the Alt-F2 shortcut with the ">
<!ENTITY foxyproxy.keyconfig.label "KeyConfig">
<!ENTITY foxyproxy.quickadd.desc2 "extension">
<!ENTITY foxyproxy.quickadd.label "QuickAdd">
<!ENTITY foxyproxy.quickadd.accesskey "Q">
<!ENTITY foxyproxy.quickadd.tooltip "QuickAdd">
<!ENTITY foxyproxy.quickadd.notify.label "Notify me when QuickAdd is activated">
<!ENTITY foxyproxy.quickadd.notify.accesskey "N">
<!ENTITY foxyproxy.quickadd.notify.tooltip "Display a popup when QuickAdd is activated">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.label "Notify me when QuickAdd is canceled">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.label2 "QuickAdd is automatically canceled when QuickAdd is activated through Alt-F2, and the current URL in the address bar already matches an existing proxy&apos;s whitelist pattern. In this way duplicate patterns, which can clutter your configuration, are prevented. This setting does not enable/disable cancelation; rather, it toggles notification when cancelation occurs.">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.accesskey "C">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.tooltip "Display a popup when QuickAdd is activated but canceled">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.popup.width "400px">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.popup.height "130px">
<!ENTITY foxyproxy.whatsthis "What&apos;s This?">
<!ENTITY foxyproxy.quickadd.prompt.label "Prompt for editing and confirmation before adding pattern to proxy">
<!ENTITY foxyproxy.quickadd.prompt.accesskey "P">
<!ENTITY foxyproxy.quickadd.prompt.tooltip "Prompt for editing and confirmation before adding pattern to proxy">
<!ENTITY foxyproxy.quickadd.proxy.label "Proxy to which pattern is added">
<!ENTITY foxyproxy.quickadd.proxy.accesskey "P">
<!ENTITY foxyproxy.quickadd.proxy.tooltip "Choose proxy to which pattern will be added">
<!ENTITY foxyproxy.bypasscache.label "Bypass Firefox cache when loading">
<!ENTITY foxyproxy.bypasscache.accesskey "B">
<!ENTITY foxyproxy.bypasscache.tooltip "Firefox cache is ignored">
<!ENTITY foxyproxy.advancedmenus.label "Use Advanced Menus">
<!ENTITY foxyproxy.advancedmenus.accesskey "M">
<!ENTITY foxyproxy.advancedmenus.tooltip "Use advanced menus (FoxyProxy 2.2-style)">
<!ENTITY foxyproxy.importsettings.label "Import settings">
<!ENTITY foxyproxy.importsettings.accesskey "I">
<!ENTITY foxyproxy.importsettings.tooltip "Import settings from a file">
<!ENTITY foxyproxy.exportsettings.label "Export current settings">
<!ENTITY foxyproxy.exportsettings.accesskey "E">
<!ENTITY foxyproxy.exportsettings.tooltip "Export current settings to file">
<!ENTITY foxyproxy.importlist.label "Import list of proxies">
<!ENTITY foxyproxy.importlist.accesskey "I">
<!ENTITY foxyproxy.importlist.tooltip "Import a text file list of proxies">
<!ENTITY foxyproxy.wildcard.reference.label "Wildcard Reference">
<!ENTITY foxyproxy.wildcard.reference.accesskey "W">
<!ENTITY foxyproxy.wildcard.reference.tooltip "Wildcard Reference">
<!ENTITY foxyproxy.wildcard.reference.subtitle.label "The asterisk (*) matches zero or more characters, and the question mark (?) matches any single character">
<!ENTITY foxyproxy.wildcard.reference.mistakes "Common Mistakes When Writing Wildcard Patterns">
<!ENTITY foxyproxy.wildcard.reference.goal.label "Goal">
<!ENTITY foxyproxy.wildcard.reference.goal1.label "Match all pages in MySpace&apos;s www subdomain">
<!ENTITY foxyproxy.wildcard.reference.goal2.label "Match the local PC">
<!ENTITY foxyproxy.wildcard.reference.goal3.label "Match all subdomains and pages at abc.com">
<!ENTITY foxyproxy.wildcard.reference.goal4.label "Match all pages in the a.foo.com domain but not b.foo.com">
<!ENTITY foxyproxy.wildcard.reference.correct.label "Correct">
<!ENTITY foxyproxy.wildcard.reference.correct2.label "Must be two patterns">
<!ENTITY foxyproxy.wildcard.reference.incorrect.label "Incorrect">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason.label "Reason Why It&apos;s Incorrect">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason1.label "Since there are no wildcards, only the home page is matched">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason2.label "FoxyProxy doesn&apos;t understand this kind of syntax">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason3.label "There are no wildcards">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason4.label "There are no wildcards">
<!ENTITY foxyproxy.wildcard.reference.popup.height "350px">
<!ENTITY foxyproxy.logging.noURLs.label "Do not store or display URLs">
<!ENTITY foxyproxy.logging.noURLs.accesskey "U">
<!ENTITY foxyproxy.logging.noURLs.tooltip "URLs aren&apos;t stored in RAM or on disk">
<!ENTITY foxyproxy.ok.label "OK">
<!ENTITY foxyproxy.ok.accesskey "O">
<!ENTITY foxyproxy.ok.tooltip "Close Window">
<!ENTITY foxyproxy.pattern.template.reference.label "Pattern Template Reference">
<!ENTITY foxyproxy.pattern.template.reference.accesskey "T">
<!ENTITY foxyproxy.pattern.template.reference.tooltip "Pattern Template Reference">
<!ENTITY foxyproxy.pattern.template.reference.subtitle.label "URL pattern templates define the format with which URLs are QuickAdded or AutoAdded to proxies. Templates support the following special strings which, when QuickAdded or AutoAdded are activated, are substitued with the corresponding URL component in the address bar.">
<!ENTITY foxyproxy.pattern.template.reference.specialstring.label "Special String">
<!ENTITY foxyproxy.pattern.template.reference.subststring.label "Substituted With">
<!ENTITY foxyproxy.pattern.template.reference.example.label "Example">
<!ENTITY foxyproxy.pattern.template.reference.scheme.label "protocol">
<!ENTITY foxyproxy.pattern.template.reference.username.label "username">
<!ENTITY foxyproxy.pattern.template.reference.password.label "password">
<!ENTITY foxyproxy.pattern.template.reference.userpass.label "username &amp; password with &quot;:&quot; &amp; &quot;@&quot;">
<!ENTITY foxyproxy.pattern.template.reference.host.label "host">
<!ENTITY foxyproxy.pattern.template.reference.port.label "port">
<!ENTITY foxyproxy.pattern.template.reference.hostport.label "host &amp; port with &quot;:&quot;">
<!ENTITY foxyproxy.pattern.template.reference.prepath.label "string before the path">
<!ENTITY foxyproxy.pattern.template.reference.path.label "path (includes filename)">
<!ENTITY foxyproxy.pattern.template.reference.directory.label "directory">
<!ENTITY foxyproxy.pattern.template.reference.filebasename.label "file basename">
<!ENTITY foxyproxy.pattern.template.reference.fileextension.label "file extension">
<!ENTITY foxyproxy.pattern.template.reference.filename.label "complete filename">
<!ENTITY foxyproxy.pattern.template.reference.ref.label "part after the &quot;#&quot;">
<!ENTITY foxyproxy.pattern.template.reference.query.label "part after the &quot;?&quot;">
<!ENTITY foxyproxy.pattern.template.reference.spec.label "complete URL">
<!ENTITY foxyproxy.pattern.template.reference.popup.height "400px">
<!ENTITY foxyproxy.pattern.template.reference.popup.width "800px">
<!ENTITY foxyproxy.notifications.label "Notifications">
<!ENTITY foxyproxy.notifications.accesskey "N">
<!ENTITY foxyproxy.notifications.tooltip "Notification Settings">
<!ENTITY foxyproxy.indicators.label "Indicators">
<!ENTITY foxyproxy.indicators.accesskey "I">
<!ENTITY foxyproxy.indicators.tooltip "Indicator Settings">
<!ENTITY foxyproxy.misc.label "Miscellaneous">
<!ENTITY foxyproxy.misc.accesskey "M">
<!ENTITY foxyproxy.misc.tooltip "Miscellaneous Settings">
<!ENTITY foxyproxy.animatedicons.label "Animate statusbar icon when proxies are used">
<!ENTITY foxyproxy.animatedicons.accesskey "A">
<!ENTITY foxyproxy.animatedicons.tooltip "Animate statusbar icon when proxies are used">
<!ENTITY foxyproxy.statusbaractivation.label "Statusbar Activation">
<!ENTITY foxyproxy.statusbaractivation.accesskey "S">
<!ENTITY foxyproxy.statusbaractivation.tooltip "Statusbar Activation Settings">
<!ENTITY foxyproxy.toolbaractivation.label "Toolbar Activation">
<!ENTITY foxyproxy.toolbaractivation.accesskey "T">
<!ENTITY foxyproxy.toolbaractivation.tooltip "Toolbar Activation Settings">
<!ENTITY foxyproxy.leftclicksb.label "Left-clicking FoxyProxy on statusbar">
<!ENTITY foxyproxy.leftclicksb.accesskey "L">
<!ENTITY foxyproxy.leftclicksb.tooltip "Action to take when left-clicking on FoxyProxy in statusbar">
<!ENTITY foxyproxy.middleclicksb.label "Middle-clicking FoxyProxy on statusbar">
<!ENTITY foxyproxy.middleclicksb.accesskey "M">
<!ENTITY foxyproxy.middleclicksb.tooltip "Action to take when middle-clicking on FoxyProxy in statusbar">
<!ENTITY foxyproxy.rightclicksb.label "Right-clicking FoxyProxy on statusbar">
<!ENTITY foxyproxy.rightclicksb.accesskey "R">
<!ENTITY foxyproxy.rightclicksb.tooltip "Action to take when right-clicking on FoxyProxy in statusbar">
<!ENTITY foxyproxy.leftclicktb.label "Left-clicking FoxyProxy on toolbar">
<!ENTITY foxyproxy.leftclicktb.accesskey "L">
<!ENTITY foxyproxy.leftclicktb.tooltip "Action to take when left-clicking on FoxyProxy in toolbar">
<!ENTITY foxyproxy.middleclicktb.label "Middle-clicking FoxyProxy on toolbar">
<!ENTITY foxyproxy.middleclicktb.accesskey "M">
<!ENTITY foxyproxy.middleclicktb.tooltip "Action to take when middle-clicking on FoxyProxy in toolbar">
<!ENTITY foxyproxy.rightclicktb.label "Right-clicking FoxyProxy on toolbar">
<!ENTITY foxyproxy.rightclicktb.accesskey "R">
<!ENTITY foxyproxy.rightclicktb.tooltip "Action to take when right-clicking on FoxyProxy in toolbar">
<!ENTITY foxyproxy.click.options "Shows the options dialog">
<!ENTITY foxyproxy.click.cycle "Cycles through modes">
<!ENTITY foxyproxy.click.contextmenu "Shows the context menu">
<!ENTITY foxyproxy.click.reloadcurtab "Reload current tab">
<!ENTITY foxyproxy.click.reloadtabsinbrowser "Reload all tabs in current browser">
<!ENTITY foxyproxy.click.reloadtabsinallbrowsers "Reload all tabs in all browsers">
<!ENTITY foxyproxy.click.removeallcookies "Remove all cookies">
<!ENTITY foxyproxy.includeincycle.label "Include this proxy when cycling proxies by clicking on statusbar or toolbar (Global Settings-&gt;Statusbar/Toolbar Activation-&gt;Cycle through modes must be selected)">
<!ENTITY foxyproxy.includeincycle.accesskey "I">
<!ENTITY foxyproxy.includeincycle.tooltip "Include this proxy when clicking on the statusbar/toolbar">
<!ENTITY foxyproxy.changes.msg1 "Help! Where are settings for HTTP, SSL, FTP, Gopher, and SOCKS?">
<!ENTITY foxyproxy.newGUI.popup.height "270px">
<!ENTITY foxyproxy.newGUI.popup.width "400px">
<!ENTITY foxyproxy.newGUI1.label "The old FoxyProxy Proxy Settings screen was based on and nearly identical to Firefox&apos;s Connection Settings dialog, which in turn was nearly identical to the Proxy Settings in the ancient Mosaic 2.1.1 browser from 1996. The problem with all of these screens is their limited ability to route traffic by protocol. 21st century browsers like Firefox handle many more protocols than HTTP, SSL, FTP, and GOPHER. Clearly, these old screens would be unwieldy if they attempted to include every possible protocol.">
<!ENTITY foxyproxy.newGUI2.label "Since FoxyProxy already enables traffic routing by protocol with wildcard and regular expression patterns, the listing of protocols on this screen is unnecessary. As of version 2.5, FoxyProxy has removed this protocol list from the Proxy Settings GUI. However, this does not reduce functionality. It makes for a simpler interface. If you need to route traffic by protocol, you should define whitelist and blacklist patterns with careful attention to the scheme/protocol portion of the pattern (e.g., ftp://*.yahoo.com/*, *://leahscape.com/*, etc.)">
<!ENTITY foxyproxy.newGUI4.label "Click here for more information.">
<!ENTITY foxyproxy.error.msg.label "Error Message">
<!ENTITY foxyproxy.pac.result.label "PAC Result">
<!ENTITY foxyproxy.options.width "666">
<!ENTITY foxyproxy.options.height "477">
<!ENTITY foxyproxy.torwiz.width "660">
<!ENTITY foxyproxy.torwiz.height "375">
<!ENTITY foxyproxy.addeditproxy.width "660">
<!ENTITY foxyproxy.addeditproxy.height "470">

View File

@ -0,0 +1,136 @@
extensions.foxyproxy@eric.h.jung.description=FoxyProxy
foxyproxy=FoxyProxy
tor=Tor
privoxy=Privoxy
settings.error=Chyba při načítaní nastavení
error=Chyba
welcome=Vítejte ve FoxyProxy!
yes=Ano
no=Ne
disabled=Vypnuto
torwiz.configure=Chcete nastavit FoxyProxy pro použití s Tor?
torwiz.with.without.privoxy=Používate Tor s Privoxy anebo bez Privoxy?
torwiz.with=S Privoxy
torwiz.without=Bez Privoxy
torwiz.privoxy.not.required=Poznámka: S prohlížečem Firefox 1.5 už Privoxy není
torwiz.port=Zadejte port na kterém %S naslouchá. Pokud to nevíte, ponechte výchozí hodnotu.
torwiz.nan=Toto není číslo.
torwiz.proxy.notes=Proxy přes síť Tor - http://tor.eff.org
torwiz.google.mail=Google email
torwiz.pattern=http://*mail.google.com/*
torwiz.congratulations=Gratuluji! FoxyProxy je nastavený pro použití s Tor.
torwiz.cancelled=Průvodce FoxyProxy Tor byl zrušen.
mode.patterns.label=Use proxies based on their pre-defined patterns and priorities
mode.patterns.accesskey=U
mode.patterns.tooltip=Use proxies based on their pre-defined patterns and priorities
mode.custom.label=Use proxy "%S" for all URLs
mode.custom.tooltip=Use proxy "%S" for all URLs
mode.disabled.label=Completely disable FoxyProxy
mode.disabled.accesskey=D
mode.disabled.tooltip=Completely disable FoxyProxy
more.label=Více
more.accesskey=M
more.tooltip=Více voleb
invalid.url=The URL specified for automatic proxy configuration is not a valid URL.
protocols.error=Please specify one or more protocols for the proxy.
noport2=A port must be specified for the host.
nohost2=A host name must be specified with the port.
nohostport=Host name and port must be specified.
torwiz.nopatterns=You didn't enter any URL patterns. This means the Tor network won't be used. Continue anyway?
months.long.1=Leden
months.short.1=Led
months.long.2=Únor
months.short.2=Úno
months.long.3=Březen
months.short.3=Bře
months.long.4=Duben
months.short.4=Dub
months.long.5=Květen
months.short.5=Kvě
months.long.6=Červen
months.short.6=Čer
months.long.7=Červenec
months.short.7=Črc
months.long.8=Srpen
months.short.8=Srp
months.long.9=Září
months.short.9=Zář
months.long.10=Říjen
months.short.10=Říj
months.long.11=Listopad
months.short.11=Lis
months.long.12=Prosinec
months.short.12=Pro
days.long.1=Neděle
days.short.1=Ne
days.long.2=Pondělí
days.short.2=Po
days.long.3=Úterý
days.short.3=Út
days.long.4=Středa
days.short.4=St
days.long.5=Čtvrtek
days.short.5=Čt
days.long.6=Pátek
days.short.6=
days.long.7=Sobota
days.short.7=So
timeformat=hh:nn:ss:zzz a/p mmm dd, yyyy
file.select=Select the file in which to store the settings
manual=Manual
auto=Auto
direct=Direct
delete.proxy.confirm=Delete proxy: are you sure?
pattern.required=A pattern is required.
pattern.invalid.regex=%S is not a valid regular expression.
proxy.error.for.url=Error determining proxy for %S
proxy.default.settings.used=FoxyProxy not used for this URL - default Firefox connection settings were used
proxy.all.urls=All URLs were configured to use this proxy
pac.status=FoxyProxy PAC Status
pac.status.loadfailure=Failed to Load PAC for Proxy "%S"
pac.status.success=Loaded PAC for Proxy "%S"
pac.status.error=Error in PAC for Proxy "%S"
error.noload=Error. Please contact the FoxyProxy development team. No private data is leaking, but the resource will not load. Exception is %S
proxy.name.required=Please enter a name for this proxy on the General Tab.
proxy.default=Default
proxy.default.notes=These are the settings that are used when no patterns match a URL.
proxy.default.match.name=All
delete.proxy.default=You cannot delete this proxy.
copy.proxy.default=You cannot copy this proxy.
logg.maxsize.change=This will clear the log. Continue?
logg.maxsize.maximum=Maximum recommended size is 9999. Higher amounts will consume more memory and may affect performance. Continue anyway?
proxy.random=Proxy was randomly selected
mode.random.label=Use random proxies for all URLs (ignore all patterns and priorities)
mode.random.accesskey=R
mode.random.tooltip=Load URLs through random proxies (ignore all patterns and priorities)
random=Random
random.applicable=This setting only applies when mode is "Use random proxies for all URLs (ignore all patterns and priorities)"
superadd.error=Configuration error: %S has been disabled.
superadd.notify=Proxy %S
superadd.url.added=%S added to Proxy "%S"
autoadd.pattern.label=Dynamic Pattern
quickadd.pattern.label=Dynamic QuickAdd Pattern
torwiz.proxydns=Would you like DNS requests to go through the Tor network? If you don't understand this question, click "yes"
superadd.verboten2=%S cannot be enabled because either no proxies are defined or all proxies are disabled.
autoadd.notice=Please note: AutoAdd affects the time in which a webpage loads. The more complex your pattern and the larger the webpage, the longer AutoAdd takes to process. If you experience significant delays, please disable AutoAdd.
autoadd.notice2=
autoconfurl.test.success=The PAC was found, loaded, and successfully parsed.
autoconfurl.test.fail=There was a problem loading, finding, or parsing the PAC:\nHTTP Status Code: %S\nException: %S
none=None
delete.settings.ask=Do you want to delete the FoxyProxy settings stored at %S?
delete.settings.confirm=%S will be deleted when all browsers are closed.
no.wildcard.characters=The pattern has no wildcard characters. This means "%S" will be matched exactly. It is unusual for FoxyProxy to be used in this manner, and this likely means there is a mistake in the pattern or you don't understand how to define FoxyProxy patterns. Continue anyway?
message.stop=Do not show this message again
log.save=Save Log
log.saved2=Log has been saved to %S. View now?
log.nourls.url=Not logged
log.scrub=Clean existing log entries of URLs?
no.white.patterns=You didn't enter any whitelisted (inclusive) URL patterns. This means the proxy won't be used. Continue anyway?
quickadd.quickadd.canceled=QuickAdd has been canceled because the current URL already matches the existing pattern named "%S" in proxy "%S"
quickadd.nourl=Unable to get current URL
cookies.allremoved=All cookies removed
route.error=Error while determining which host to use for proxying
route.exception=Exception while determinig which host to use for proxying %S
see.log=Please see log for more information.
pac.select=Select the PAC file to use
pac.files=PAC Files

View File

@ -0,0 +1,55 @@
<!-- switched from xhtml to html because of BabelZilla WTS adds extraneous html tags on locale download -->
<html>
<head>
<style type="text/css">
table {
border-width: 0px;
border-spacing: 2px;
border-style: none;
border-color: white;
border-collapse: separate;
background-color: rgb(250, 240, 230);
font-size: x-small;
font-family: verdana, sans-serif;
}
table td,table th {
border-width: 1px;
padding: 1px;
border-style: groove;
border-color: green;
background-color: rgb(250, 240, 230);
vertical-align: top;
font-size: x-small;
font-family: verdana, sans-serif;
}
p {background-color: white; font-size: x-small; font-family: verdana, sans-serif;}
body {font-family: verdana, sans-serif;}
h3 {font-size: small;}
h4 {font-size: x-small;}
</style>
</head>
<body>
<h3>URL Patterns</h3>
<p>Before Firefox loads a URL, Firefox asks FoxyProxy if a proxy should be used.
FoxyProxy answers this question by attempting to match the current URL with all of the URL patterns you define below.
The simplest way to specify patterns is with wildcards.</p>
<h4><a name="wildcards">Wildcards</a></h4>
<p>Wildcards are pervasive throughout computing; you've most likely seen
them before. The asterisk (*) substitutes as a wildcard character for zero or more characters,
and the question mark (?) substitutes as a wildcard character for any one character.
</p>
<p>More advanced matching rules are possible using regular expressions. For details, click the "Help Contents" button.</p>
<h4>Wildcard Examples</h4>
<table>
<thead><tr><th>URL Pattern</th><th>Some Matches</th><th>Some Non-Matches</th></tr></thead>
<tr><td>*//:*.yahoo.com/*</td><td>Everything in Yahoo's domain</td><td>http://mail.google.com/</td></tr>
<tr><td>*//:mail.yahoo.com/*</td><td>http://mail.yahoo.com/<br/>http://mail.yahoo.com/clownshoes/<br/>http://mail.yahoo.com/inbox/123.html<br/>ftp://mail.yahoo.com</td><td>http://maps.yahoo.com</td></tr>
<tr><td>http://??.wikipedia.org/wiki/Clown</td><td>http://en.wikipedia.org/wiki/Clown<br/>http://de.wikipedia.org/wiki/Clown<br/>http://cs.wikipedia.org/wiki/Clown</td><td>https://en.wikipedia.org/wiki/Clown<br/>http://de.wikipedia.org/wiki/Clown/<br/>ftp://en.wikipedia.org/wiki/Clown</td></tr>
<tr><td>http://digg.com/</td><td>http://digg.com/</td><td>http://digg.com<br/>http://www.digg.com/</td></tr>
<tr><td>*://*.asimov.???/*</td><td>ftp://ftp.asimov.net/<br/>ftp://ftp.asimov.com/theory.html<br/>http://bear.asimov.net/mom/<br/>https://isaac.asimov.org/hercules<br/>gopher://asimov.net/</td>
<td>ftp://ftp.asimov.co.uk<br/>http://isaac.home.com/tin.php</td></tr>
<tr><td>*</td><td><i>Matches everything</i></td><td>&nbsp;</td></tr>
</table>
</body>
</html>

View File

@ -0,0 +1,427 @@
<!ENTITY foxyproxy.label "FoxyProxy">
<!ENTITY foxyproxy.accesskey "F">
<!ENTITY foxyproxy.tooltip "FoxyProxy">
<!ENTITY foxyproxy.optionsdialog.label "FoxyProxy Indstillinger">
<!ENTITY foxyproxy.options.label "Indstillinger">
<!ENTITY foxyproxy.options.accesskey "I">
<!ENTITY foxyproxy.options.tooltip "Åbn indstillinger-dialogboksen">
<!ENTITY foxyproxy.tree.pickertooltiptext.label "Klik for at vælge hvilke kolonner der skal vises">
<!ENTITY foxyproxy.proxy.name.label "Proxy navn">
<!ENTITY foxyproxy.proxy.name.accesskey "n">
<!ENTITY foxyproxy.proxy.name.tooltip "Proxy navn">
<!ENTITY foxyproxy.proxy.notes.label "Proxy noter">
<!ENTITY foxyproxy.proxy.notes.accesskey "n">
<!ENTITY foxyproxy.proxy.notes.tooltip "Proxy noter">
<!ENTITY foxyproxy.pattern.label "Matchende mønster">
<!ENTITY foxyproxy.pattern.type.label "Mønstertype">
<!ENTITY foxyproxy.whitelist.blacklist.label "Hvid liste (inklusiv) eller sort liste (eksklusiv)">
<!ENTITY foxyproxy.pattern.name.label "Mønsternavn">
<!ENTITY foxyproxy.pattern.name.accesskey "ø">
<!ENTITY foxyproxy.pattern.name.tooltip "Navn på mønsteret">
<!ENTITY foxyproxy.url.pattern.label "UEL eller URL-mønster">
<!ENTITY foxyproxy.url.pattern.accesskey "U">
<!ENTITY foxyproxy.url.pattern.tooltip "UEL eller URL-mønster">
<!ENTITY foxyproxy.enabled.label "Slået til">
<!ENTITY foxyproxy.enabled.accesskey "e">
<!ENTITY foxyproxy.enabled.tooltip "Skift mellem slået til og fra">
<!ENTITY foxyproxy.delete.selection.label "Slet valgte">
<!ENTITY foxyproxy.delete.selection.accesskey "v">
<!ENTITY foxyproxy.delete.selection.tooltip "Slet det i øjeblikket valgte element">
<!ENTITY foxyproxy.edit.selection.label "Rediger valgte">
<!ENTITY foxyproxy.edit.selection.accesskey "e">
<!ENTITY foxyproxy.edit.selection.tooltip "Rediger det i øjeblikket valgte element">
<!ENTITY foxyproxy.help.label "Hjælp indhold">
<!ENTITY foxyproxy.help.accesskey "H">
<!ENTITY foxyproxy.help.tooltip "Vis hjælp">
<!ENTITY foxyproxy.close.label "Luk">
<!ENTITY foxyproxy.close.accesskey "L">
<!ENTITY foxyproxy.close.tooltip "Luk vindue">
<!ENTITY foxyproxy.about.label "Om">
<!ENTITY foxyproxy.about.accesskey "O">
<!ENTITY foxyproxy.about.tooltip "Åbner Om-boksen">
<!ENTITY foxyproxy.online.label "FoxyProxy Online">
<!ENTITY foxyproxy.online.accesskey "O">
<!ENTITY foxyproxy.online.tooltip "Besøg FoxyProxy websiden">
<!ENTITY foxyproxy.tor.label "Tor-guide">
<!ENTITY foxyproxy.tor.accesskey "u">
<!ENTITY foxyproxy.tor.tooltip "Tor-guide">
<!ENTITY foxyproxy.copy.selection.label "Kopier valgte">
<!ENTITY foxyproxy.copy.selection.accesskey "K">
<!ENTITY foxyproxy.copy.selection.tooltip "Kopierer valgte">
<!ENTITY foxyproxy.mode.label "Vælg tilstand">
<!ENTITY foxyproxy.auto.url.label "Automatisk proxy-konfiguration URL">
<!ENTITY foxyproxy.auto.url.accesskey "A">
<!ENTITY foxyproxy.auto.url.tooltip "Indtast URL for PAC-filen">
<!ENTITY foxyproxy.port.label "Port">
<!ENTITY foxyproxy.port.accesskey "P">
<!ENTITY foxyproxy.port.tooltip "Port">
<!ENTITY foxyproxy.socks.proxy.label "SOCKS proxy">
<!ENTITY foxyproxy.socks.proxy.accesskey "C">
<!ENTITY foxyproxy.socks.proxy.tooltip "URL på SOCKS-proxy">
<!ENTITY foxyproxy.socks.v4 "SOCKS v4/4a">
<!ENTITY foxyproxy.socks.v5 "SOCKS v5">
<!ENTITY foxyproxy.addeditpattern.title "Tilføj/redigér møsnter">
<!ENTITY foxyproxy.wildcard.label "Jokertegn">
<!ENTITY foxyproxy.wildcard.accesskey "J">
<!ENTITY foxyproxy.wildcard.tooltip "Specificerer at URLen eller URL-mønsteret bruger jokertegn og ikke er et regulært udtryk">
<!ENTITY foxyproxy.wildcard.example.label "Eksempel: *mail.yahoo.com/*">
<!ENTITY foxyproxy.regex.label "Regulært udtryk">
<!ENTITY foxyproxy.regex.accesskey "R">
<!ENTITY foxyproxy.regex.tooltip "Specificerer at URLen eller URL-mønsteret er et regulært udtryk">
<!ENTITY foxyproxy.regex.example.label "Eksempel: http?://.*\.mail\.yahoo\.com/.*">
<!ENTITY foxyproxy.version "Version">
<!ENTITY foxyproxy.createdBy "Skabt af:">
<!ENTITY foxyproxy.copyright "Ophavsret">
<!ENTITY foxyproxy.rights "Alle rettigheder forbeholdt">
<!ENTITY foxyproxy.released "Frigivet under">
<!ENTITY foxyproxy.thanks "Speciel tak til">
<!ENTITY foxyproxy.translations "Oversættelser">
<!ENTITY foxyproxy.tab.general.label "Generelt">
<!ENTITY foxyproxy.tab.general.accesskey "G">
<!ENTITY foxyproxy.tab.general.tooltip "Administrer generelle proxy-indstillinger">
<!ENTITY foxyproxy.tab.proxy.label "Proxy detaljer">
<!ENTITY foxyproxy.tab.proxy.accesskey "r">
<!ENTITY foxyproxy.tab.proxy.tooltip "Administrer proxy-detaljer">
<!ENTITY foxyproxy.tab.patterns.label "Mønstre">
<!ENTITY foxyproxy.tab.patterns.accesskey "M">
<!ENTITY foxyproxy.tab.patterns.tooltip "Administrer URL-mønstre">
<!ENTITY foxyproxy.add.title "Proxy indstillinger">
<!ENTITY foxyproxy.pattern.description "Her kan du tilføje eller fjerne URLer for hvilke denne proxy benyttes.">
<!ENTITY foxyproxy.pattern.matchtype.label "Mønsteret indeholder">
<!ENTITY foxyproxy.pattern.matchtype2.label "Mønster til at identificere blokerede websites indeholder">
<!ENTITY foxyproxy.pattern.template.matchtype.label "Mønster-skabelon indeholder">
<!ENTITY foxyproxy.pattern.whiteblack.label "URL-inkludering/-ekskludering">
<!ENTITY foxyproxy.add.option.direct.label "Direkte internetforbindelse">
<!ENTITY foxyproxy.add.option.direct.accesskey "D">
<!ENTITY foxyproxy.add.option.direct.tooltip "Brug ikke en proxy - brug den underliggende direkte internetforbindelse">
<!ENTITY foxyproxy.add.option.manual.label "Manuel proxykonfiguration">
<!ENTITY foxyproxy.add.option.manual.accesskey "M">
<!ENTITY foxyproxy.add.option.manual.tooltip "Definér manuelt en proxykonfiguration">
<!ENTITY foxyproxy.add.new.pattern.label "Tilføj nyt mønster">
<!ENTITY foxyproxy.add.new.pattern.accesskey "T">
<!ENTITY foxyproxy.add.new.pattern.tooltip "Tilføj nyt mønster">
<!ENTITY foxyproxy.menubar.file.label "Fil">
<!ENTITY foxyproxy.menubar.file.accesskey "F">
<!ENTITY foxyproxy.menubar.file.tooltip "Åbner Fil-menuen">
<!ENTITY foxyproxy.menubar.help.label "Hjælp">
<!ENTITY foxyproxy.menubar.help.accesskey "H">
<!ENTITY foxyproxy.menubar.help.tooltip "Åbner Hjælp-menuen">
<!ENTITY foxyproxy.mode.accesskey "V">
<!ENTITY foxyproxy.mode.tooltip "Vælg hvordan FoxyProxy slås til">
<!ENTITY foxyproxy.tab.proxies.label "Proxier">
<!ENTITY foxyproxy.tab.proxies.accesskey "P">
<!ENTITY foxyproxy.tab.proxies.tooltip "Administrer proxier">
<!ENTITY foxyproxy.tab.global.label "Globale indstillinger">
<!ENTITY foxyproxy.tab.global.accesskey "G">
<!ENTITY foxyproxy.tab.global.tooltip "Administrer globale indstillinger">
<!ENTITY foxyproxy.tab.logging.label "Logning">
<!ENTITY foxyproxy.tab.logging.accesskey "L">
<!ENTITY foxyproxy.tab.logging.tooltip "Administrer logningsindstillinger">
<!ENTITY foxyproxy.proxydns.label "Brug SOCKS proxy til DNS-opslag">
<!ENTITY foxyproxy.proxydns.accesskey "u">
<!ENTITY foxyproxy.proxydns.tooltip "Hvis afkrydset, dirigeres DNS-opslag igennem en SOCKS proxy">
<!ENTITY foxyproxy.proxydns.notice "Du skal genstarte alle Firefox-browsere før ændringen træder i kraft.">
<!ENTITY foxyproxy.showstatusbaricon.label "Vis ikon på statuslinjen">
<!ENTITY foxyproxy.showstatusbaricon.accesskey "s">
<!ENTITY foxyproxy.showstatusbaricon.tooltip "Hvis markeret bliver FoxyProxy ikon ikon vist på statuslinje">
<!ENTITY foxyproxy.showstatusbarmode.label "Vis tilstand (tekst) på statuslinje">
<!ENTITY foxyproxy.showstatusbarmode.accesskey "s">
<!ENTITY foxyproxy.showstatusbarmode.tooltip "Hvis markeret bliver FoxyProxy tilstand vist på statuslinje">
<!ENTITY foxyproxy.storagelocation.label "Placering af gemte indstillinger">
<!ENTITY foxyproxy.storagelocation.accesskey "s">
<!ENTITY foxyproxy.storagelocation.tooltip "Placering af FoxyProxys indstillinger">
<!ENTITY foxyproxy.tab.logging.timestamp.label "Tidsstempel">
<!ENTITY foxyproxy.tab.logging.url.label "URL">
<!ENTITY foxyproxy.host.label "Værtsnavn">
<!ENTITY foxyproxy.host.accesskey "V">
<!ENTITY foxyproxy.host.tooltip "Værtsnavn">
<!ENTITY foxyproxy.clear.label "Ryd">
<!ENTITY foxyproxy.clear.accesskey "R">
<!ENTITY foxyproxy.clear.tooltip "Ryd">
<!ENTITY foxyproxy.refresh.label "Genindlæs">
<!ENTITY foxyproxy.refresh.accesskey "G">
<!ENTITY foxyproxy.refresh.tooltip "Genindlæs">
<!ENTITY foxyproxy.save.label "Gem">
<!ENTITY foxyproxy.save.accesskey "m">
<!ENTITY foxyproxy.save.tooltip "Gem">
<!ENTITY foxyproxy.addnewproxy.label "Tilføj ny proxy">
<!ENTITY foxyproxy.addnewproxy.accesskey "T">
<!ENTITY foxyproxy.addnewproxy.tooltip "Tilføj ny proxy">
<!ENTITY foxyproxy.whitelist.label "Hvid liste">
<!ENTITY foxyproxy.whitelist.accesskey "W">
<!ENTITY foxyproxy.whitelist.tooltip "URLer der matcher dette mønster vil blive indlæst gennem denne proxy">
<!ENTITY foxyproxy.whitelist.description.label "URLer der matcher dette mønster vil blive indlæst gennem denne proxy">
<!ENTITY foxyproxy.blacklist.label "Sort liste">
<!ENTITY foxyproxy.blacklist.accesskey "S">
<!ENTITY foxyproxy.blacklist.tooltip "URLer der matcher dette mønster bliver IKKE indlæst igennem denne proxy">
<!ENTITY foxyproxy.blacklist.description.label "URLer der matcher dette mønster bliver IKKE indlæst igennem denne proxy">
<!ENTITY foxyproxy.whiteblack.description.label "Sort liste (ekskluderede) mønstre har højere prioritet end hvid liste (inkluderede) mønstre: hvis en URL matcher både et hvidlistet mønster og et sortlistet mønster for samme proxy, ekskluderes URLen fra at blive indlæst gennem denne proxy.">
<!ENTITY foxyproxy.usingPFF.label1 "Jeg bruger">
<!ENTITY foxyproxy.usingPFF.label2 "Portable Firefox">
<!ENTITY foxyproxy.usingPFF.accesskey "P">
<!ENTITY foxyproxy.usingPFF.tooltip "Markér hér hvis du bruger Portable Firefox">
<!ENTITY foxyproxy.socks.version.label "SOCKS-version">
<!ENTITY foxyproxy.autopacurl.label "Auto PAC URL">
<!ENTITY foxyproxy.issocks.label "SOCKS proxy?">
<!ENTITY foxyproxy.issocks.accesskey "S">
<!ENTITY foxyproxy.issocks.tooltip "Er dette en web proxy eller SOCKS proxy?">
<!ENTITY foxyproxy.chinese.simplified "Kinesisk (Simplificeret)">
<!ENTITY foxyproxy.chinese.traditional "Kinesisk (Traditionelt)">
<!ENTITY foxyproxy.croatian "Kroatisk">
<!ENTITY foxyproxy.czech "Tjekkisk">
<!ENTITY foxyproxy.danish "Dansk">
<!ENTITY foxyproxy.dutch "Hollandsk">
<!ENTITY foxyproxy.english "Engelsk">
<!ENTITY foxyproxy.english.british "Engelsk (Storbritannien)">
<!ENTITY foxyproxy.french "Fransk">
<!ENTITY foxyproxy.german "Tysk">
<!ENTITY foxyproxy.greek "Græsk">
<!ENTITY foxyproxy.hungarian "Ungarsk">
<!ENTITY foxyproxy.italian "Italiensk">
<!ENTITY foxyproxy.persian "Persisk">
<!ENTITY foxyproxy.polish "Polsk">
<!ENTITY foxyproxy.portugese.brazilian "Portugisisk (Brasiliansk)">
<!ENTITY foxyproxy.portugese.portugal "Portugisisk (Portugal)">
<!ENTITY foxyproxy.romanian "Rumænsk">
<!ENTITY foxyproxy.russian "Russisk">
<!ENTITY foxyproxy.slovak "Slovakisk">
<!ENTITY foxyproxy.spanish.spain "Spansk (Spanien)">
<!ENTITY foxyproxy.spanish.argentina "Spansk (Argentina)">
<!ENTITY foxyproxy.swedish "Svensk">
<!ENTITY foxyproxy.thai.thailand "Thai (Thailand)">
<!ENTITY foxyproxy.turkish "Tyrkisk">
<!ENTITY foxyproxy.ukrainian "Ukrainsk">
<!ENTITY foxyproxy.your.language "Dit sprog">
<!ENTITY foxyproxy.your.name.here "Dit navn her!">
<!ENTITY foxyproxy.moveup.label "Flyt op">
<!ENTITY foxyproxy.moveup.tooltip "Forøg prioriteten for valgte">
<!ENTITY foxyproxy.moveup.accesskey "o">
<!ENTITY foxyproxy.movedown.label "Flyt ned">
<!ENTITY foxyproxy.movedown.tooltip "Formindsk prioriteten for valgte">
<!ENTITY foxyproxy.movedown.accesskey "n">
<!ENTITY foxyproxy.autoconfurl.view.label "Vis">
<!ENTITY foxyproxy.autoconfurl.view.accesskey "V">
<!ENTITY foxyproxy.autoconfurl.view.tooltip "Vis auto-konfigurationsfil">
<!ENTITY foxyproxy.autoconfurl.test.label "Test">
<!ENTITY foxyproxy.autoconfurl.test.accesskey "T">
<!ENTITY foxyproxy.autoconfurl.test.tooltip "Test auto-konfigurationsfilen">
<!ENTITY foxyproxy.autoconfurl.reload.label "Genindlæs PAC hver">
<!ENTITY foxyproxy.autoconfurl.reload.accesskey "R">
<!ENTITY foxyproxy.autoconfurl.reload.tooltip "Auto-genindlæser PAC filen hver angivet periode">
<!ENTITY foxyproxy.minutes.label "minutter">
<!ENTITY foxyproxy.minutes.tooltip "minutter">
<!ENTITY foxyproxy.logging.maxsize.label "Maksimum størrelse">
<!ENTITY foxyproxy.logging.maxsize.accesskey "M">
<!ENTITY foxyproxy.logging.maxsize.tooltip "Maksimum antal logposter før loggen starter forfra">
<!ENTITY foxyproxy.logging.maxsize.button.label "Sæt">
<!ENTITY foxyproxy.logging.maxsize.button.accesskey "S">
<!ENTITY foxyproxy.logging.maxsize.button.tooltip "Sætter det maksimale antal logposter før loggen starter forfra">
<!ENTITY foxyproxy.random.label "Indlæs URLer gennem tilfældige proxier (ignorer alle mønstre og prioriteter)">
<!ENTITY foxyproxy.random.accesskey "R">
<!ENTITY foxyproxy.random.tooltip "Indlæs URLer gennem tilfældige proxier (ignorer alle mønstre og prioriteter)">
<!ENTITY foxyproxy.random.includedirect.label "Inkludér proxier konfigureret som direkte internetforbindelser">
<!ENTITY foxyproxy.random.includedirect.accesskey "I">
<!ENTITY foxyproxy.random.includedirect.tooltip "Proxier konfigureret som direkte internetforbindelser bliver inkluderet i tilfældig proxy-valg">
<!ENTITY foxyproxy.random.includedisabled.label "Inkluder proxier der er slået fra">
<!ENTITY foxyproxy.random.includedisabled.accesskey "D">
<!ENTITY foxyproxy.random.includedisabled.tooltip "Proxier konfigureret som slået fra er inkluderet i tilfældig proxy-valg">
<!ENTITY foxyproxy.random.settings.label "Tilfældig proxy-valg">
<!ENTITY foxyproxy.random.settings.accesskey "R">
<!ENTITY foxyproxy.random.settings.tooltip "Indstillinger som påvirker tilfældigt proxyvalg">
<!ENTITY foxyproxy.tab.autoadd.label "AutoTilføj">
<!ENTITY foxyproxy.tab.autoadd.accesskey "A">
<!ENTITY foxyproxy.tab.autoadd.tooltip "Administrer AutoTilføj-indstillinger">
<!ENTITY foxyproxy.autoadd.description "Specificér et mønster der identificerer blokerede hjemmesider. Når mønsteret findes på en side, tilføjes et mønster der matcher den pågældende hjemmesides URL automatisk til en proxy og alt efter indstilling bliver den genindlæst. Dette forhindrer at du aktivt skal hen og identificere alle blokerede hjemmesider.">
<!ENTITY foxyproxy.autoadd.pattern.label "Mønster til at identificere blokerede hjemmesider">
<!ENTITY foxyproxy.autoadd.pattern.accesskey "M">
<!ENTITY foxyproxy.autoadd.pattern.tooltip "Mønster der identificerer blokerede hjemmesider">
<!ENTITY foxyproxy.autoadd.wildcard.example.label "Eksempel: *Du har ikke tilladelse til at se denne side*">
<!ENTITY foxyproxy.autoadd.regex.example.label "Eksempel: .*Site.* er blevet blokeret.*">
<!ENTITY foxyproxy.autoadd.proxy.label "Proxy til hvilken mønstrene automatisk tilføjes">
<!ENTITY foxyproxy.autoadd.proxy.accesskey "P">
<!ENTITY foxyproxy.autoadd.proxy.tooltip "Angiver hvilken proxy URLerne automatisk tilføjes til">
<!ENTITY foxyproxy.pattern.template.label "URL-mønsterskabelon">
<!ENTITY foxyproxy.pattern.template.accesskey "U">
<!ENTITY foxyproxy.pattern.template.tooltip "URL-mønsterskabelon">
<!ENTITY foxyproxy.pattern.template.example.label1 "Eksempel for">
<!ENTITY foxyproxy.pattern.template.example.label2 "http://fred:secret@mail.foo.com:8080/inbox/msg102.htm#subject?style=elegant">
<!ENTITY foxyproxy.pattern.template.currenturl.label "Nuværende URL">
<!ENTITY foxyproxy.pattern.template.currenturl.accesskey "u">
<!ENTITY foxyproxy.pattern.template.currenturl.tooltip "URL i adresselinjen">
<!ENTITY foxyproxy.pattern.template.generatedpattern.label "Genereret mønster">
<!ENTITY foxyproxy.pattern.template.generatedpattern.accesskey "G">
<!ENTITY foxyproxy.pattern.template.generatedpattern.tooltip "Dynamisk genereret mønster">
<!ENTITY foxyproxy.autoadd.reload.label "Genindlæs siden efter sitet er blevet tilføjet til proxien">
<!ENTITY foxyproxy.autoadd.reload.accesskey "G">
<!ENTITY foxyproxy.autoadd.reload.tooltip "Genindlæs automatisk siden efter sitet er blevet tilføjet til proxien">
<!ENTITY foxyproxy.autoadd.notify.label "Gør mig opmærksom på når AutoTilføj er blevet udløst">
<!ENTITY foxyproxy.autoadd.notify.accesskey "N">
<!ENTITY foxyproxy.autoadd.notify.tooltip "Informerer dig om når en side er blokeret og URL-mønsteret er blevet tilføjet til en proxy">
<!ENTITY foxyproxy.graphics "Grafisk design og biller lavet af">
<!ENTITY foxyproxy.website "Hjemmeside lavet af">
<!ENTITY foxyproxy.contributions "Bidrag til systemet af">
<!ENTITY foxyproxy.pacloadnotification.label "Gør mig opmærksom på proxy auto-konfiguration filindlæsninger">
<!ENTITY foxyproxy.pacloadnotification.accesskey "L">
<!ENTITY foxyproxy.pacloadnotification.tooltip "Vis en popup når en PAC-fil indlæses">
<!ENTITY foxyproxy.pacerrornotification.label "Gør mig opmærksom på proxy auto-konfiguration fil-fejl">
<!ENTITY foxyproxy.pacerrornotification.accesskey "f">
<!ENTITY foxyproxy.pacerrornotification.tooltip "Viser en popup om PAC fil-fejl">
<!ENTITY foxyproxy.toolsmenu.label "Vis FoxyProxy i Firefox Funktioner-menuen">
<!ENTITY foxyproxy.toolsmenu.accesskey "t">
<!ENTITY foxyproxy.toolsmenu.tooltip "Viser FoxyProxy i Firefox Funktioner-menuen">
<!ENTITY foxyproxy.tip.label "Tip">
<!ENTITY foxyproxy.pactips.popup.height "165px">
<!ENTITY foxyproxy.pactips.popup.width "400px">
<!ENTITY foxyproxy.pactip1.label "For PAC-filer gemt på en lokal harddisk, brug file:// metoden. For eksempel, file://c:/path/proxy.pac på Windows eller file:///home/users/joe/proxy.pac på Unix/Linux/Mac.">
<!ENTITY foxyproxy.pactip2.label "For PAC-filer på en ftp-server, brug ftp:// metoden. For eksempel, ftp://leahscape.com/path/proxy.pac">
<!ENTITY foxyproxy.pactip3.label "Du kan også bruge http://, https://, og enhver anden understøttet metode.">
<!ENTITY foxyproxy.contextmenu.label "Vis FoxyProxy i kontekst-menuen">
<!ENTITY foxyproxy.contextmenu.accesskey "k">
<!ENTITY foxyproxy.contextmenu.tooltip "Viser FoxyProxy i kontekst-menuen">
<!ENTITY foxyproxy.quickadd.desc1 "Hurtigtilføj tilføjer et dynamisk URL-mønster til en proxy når du trykker Alt-F2. Det er et praktisk alternativ til AutoTilføj. Tilret Alt-F2 genvejen med">
<!ENTITY foxyproxy.keyconfig.label "KeyConfig">
<!ENTITY foxyproxy.quickadd.desc2 "udvidelsen">
<!ENTITY foxyproxy.quickadd.label "HurtigTilføj">
<!ENTITY foxyproxy.quickadd.accesskey "H">
<!ENTITY foxyproxy.quickadd.tooltip "HurtigTilføj">
<!ENTITY foxyproxy.quickadd.notify.label "Notificer mig når HurtigTilføj aktiveres">
<!ENTITY foxyproxy.quickadd.notify.accesskey "N">
<!ENTITY foxyproxy.quickadd.notify.tooltip "Viser en popup når HurtigTilføj aktiveres">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.label "Notificer mig når HurtigTilføj annulleres">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.label2 "HurtigTilføj annulleres automatisk når HurtigTilføj aktiveres med Alt-F2, og den nuværende URL i adresselinjen allerede matcher en eksisterende proxy&apos;s hvidliste-mønster. På denne måde forebygges det at konfigurationen fyldes med gentagne mønstre, og rod i konfigurationen undgås. Denne indstilling aktiverer eller deaktiverer ikke annullering, men styrer notificering når der annulleres.">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.accesskey "C">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.tooltip "Vis en popup når HurtigTilføj er aktiveret men annulleret">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.popup.width "400px">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.popup.height "130px">
<!ENTITY foxyproxy.whatsthis "Hvad er dette?">
<!ENTITY foxyproxy.quickadd.prompt.label "Spørg ved redigering og bekræftelse før tilføjelse af et mønster til proxy">
<!ENTITY foxyproxy.quickadd.prompt.accesskey "p">
<!ENTITY foxyproxy.quickadd.prompt.tooltip "Spørg ved redigering og bekræftelse før tilføjelse af et mønster til proxy">
<!ENTITY foxyproxy.quickadd.proxy.label "Proxy til hvilken mønsteret tilføjes">
<!ENTITY foxyproxy.quickadd.proxy.accesskey "P">
<!ENTITY foxyproxy.quickadd.proxy.tooltip "Vælg hvilken proxy mønsteret tilføjes til">
<!ENTITY foxyproxy.bypasscache.label "Forbigå Firefox cache ved indlæsning">
<!ENTITY foxyproxy.bypasscache.accesskey "i">
<!ENTITY foxyproxy.bypasscache.tooltip "Firefox cache ignoreres">
<!ENTITY foxyproxy.advancedmenus.label "Brug avancerede menuer">
<!ENTITY foxyproxy.advancedmenus.accesskey "m">
<!ENTITY foxyproxy.advancedmenus.tooltip "Brug avancerede menuer (FoxyProxy 2.2-stil)">
<!ENTITY foxyproxy.importsettings.label "Importer indstillinger">
<!ENTITY foxyproxy.importsettings.accesskey "I">
<!ENTITY foxyproxy.importsettings.tooltip "Importer indstillinger fra en fil">
<!ENTITY foxyproxy.exportsettings.label "Eksporter nuværende indstillinger">
<!ENTITY foxyproxy.exportsettings.accesskey "E">
<!ENTITY foxyproxy.exportsettings.tooltip "Eksporterer nuværende indstillinger til en fil">
<!ENTITY foxyproxy.importlist.label "Importer liste over proxier">
<!ENTITY foxyproxy.importlist.accesskey "I">
<!ENTITY foxyproxy.importlist.tooltip "Importer en tekstfil-liste over proxier">
<!ENTITY foxyproxy.wildcard.reference.label "Jokertegns-reference">
<!ENTITY foxyproxy.wildcard.reference.accesskey "J">
<!ENTITY foxyproxy.wildcard.reference.tooltip "Jokertegns-reference">
<!ENTITY foxyproxy.wildcard.reference.subtitle.label "Stjernen (*) matcher nul eller flere tegn, og spørgsmålstegnet (?) matcher ethvert enkelttegn">
<!ENTITY foxyproxy.wildcard.reference.mistakes "Almindelige fejl ved fremstilling af jokertegns-mønstre">
<!ENTITY foxyproxy.wildcard.reference.goal.label "Mål">
<!ENTITY foxyproxy.wildcard.reference.goal1.label "Match alle sider i MySpace&apos;s www underdomæne">
<!ENTITY foxyproxy.wildcard.reference.goal2.label "Match den lokale PC">
<!ENTITY foxyproxy.wildcard.reference.goal3.label "Match alle underdomæner og sider på abc.com">
<!ENTITY foxyproxy.wildcard.reference.goal4.label "Match alle sider i domænet foo.com men ikke b.foo.com">
<!ENTITY foxyproxy.wildcard.reference.correct.label "Korrekt">
<!ENTITY foxyproxy.wildcard.reference.correct2.label "Skal være to mønstre">
<!ENTITY foxyproxy.wildcard.reference.incorrect.label "Ikke korrekt">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason.label "Årsagen til hvorfor det ikke er korrekt">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason1.label "Siden der ingen jokertegn er, matches kun med hjemmesiden">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason2.label "FoxyProxy forstår ikke denne type syntaks">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason3.label "Der er ingen jokertegn">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason4.label "Der er ingen jokertegn">
<!ENTITY foxyproxy.wildcard.reference.popup.height "350px">
<!ENTITY foxyproxy.logging.noURLs.label "Hverken gem eller vis URLer">
<!ENTITY foxyproxy.logging.noURLs.accesskey "U">
<!ENTITY foxyproxy.logging.noURLs.tooltip "URLer gemmes ikke i RAM eller på disk">
<!ENTITY foxyproxy.ok.label "OK">
<!ENTITY foxyproxy.ok.accesskey "O">
<!ENTITY foxyproxy.ok.tooltip "Luk vindue">
<!ENTITY foxyproxy.pattern.template.reference.label "Mønster-skabelon reference">
<!ENTITY foxyproxy.pattern.template.reference.accesskey "k">
<!ENTITY foxyproxy.pattern.template.reference.tooltip "Mønster-skabelon reference">
<!ENTITY foxyproxy.pattern.template.reference.subtitle.label "URL mønster-skabeloner definerer formatet hvormed URLer HurtigTilføjes eller AutoTilføjes til proxier. Skabeloner understøtter følgende specialstrenge hvormed, når HurtigTilføj eller AutoTilføj aktiveres, tilsvarende URL-komponenter i adresselinjen erstattes.">
<!ENTITY foxyproxy.pattern.template.reference.specialstring.label "Speciel streng">
<!ENTITY foxyproxy.pattern.template.reference.subststring.label "Erstattet med">
<!ENTITY foxyproxy.pattern.template.reference.example.label "Eksempel">
<!ENTITY foxyproxy.pattern.template.reference.scheme.label "protokol">
<!ENTITY foxyproxy.pattern.template.reference.username.label "brugernavn">
<!ENTITY foxyproxy.pattern.template.reference.password.label "kodeord">
<!ENTITY foxyproxy.pattern.template.reference.userpass.label "brugernavn &amp; kodeord med &quot;:&quot; &amp; &quot;@&quot;">
<!ENTITY foxyproxy.pattern.template.reference.host.label "vært">
<!ENTITY foxyproxy.pattern.template.reference.port.label "port">
<!ENTITY foxyproxy.pattern.template.reference.hostport.label "vært &amp; port med &quot;.&quot;">
<!ENTITY foxyproxy.pattern.template.reference.prepath.label "streng før stien">
<!ENTITY foxyproxy.pattern.template.reference.path.label "sti (inklusiv filnavn)">
<!ENTITY foxyproxy.pattern.template.reference.directory.label "mappe">
<!ENTITY foxyproxy.pattern.template.reference.filebasename.label "fil basisnavn">
<!ENTITY foxyproxy.pattern.template.reference.fileextension.label "filefternavn">
<!ENTITY foxyproxy.pattern.template.reference.filename.label "fuldt filnavn">
<!ENTITY foxyproxy.pattern.template.reference.ref.label "del efter &quot;#&quot;">
<!ENTITY foxyproxy.pattern.template.reference.query.label "del efter &quot;?&quot;">
<!ENTITY foxyproxy.pattern.template.reference.spec.label "fuld URL">
<!ENTITY foxyproxy.pattern.template.reference.popup.height "400px">
<!ENTITY foxyproxy.pattern.template.reference.popup.width "800px">
<!ENTITY foxyproxy.notifications.label "Notifikationer">
<!ENTITY foxyproxy.notifications.accesskey "N">
<!ENTITY foxyproxy.notifications.tooltip "Notifikationsindstillinger">
<!ENTITY foxyproxy.indicators.label "Indikatorer">
<!ENTITY foxyproxy.indicators.accesskey "I">
<!ENTITY foxyproxy.indicators.tooltip "Indikator-indstillinger">
<!ENTITY foxyproxy.misc.label "Diverse">
<!ENTITY foxyproxy.misc.accesskey "D">
<!ENTITY foxyproxy.misc.tooltip "Diverse indstillinger">
<!ENTITY foxyproxy.animatedicons.label "Animer statuslinje-ikon når proxier er i brug">
<!ENTITY foxyproxy.animatedicons.accesskey "A">
<!ENTITY foxyproxy.animatedicons.tooltip "Animer statuslinjeikoner når proxier er i brug">
<!ENTITY foxyproxy.statusbaractivation.label "Statuslinje-aktivering">
<!ENTITY foxyproxy.statusbaractivation.accesskey "S">
<!ENTITY foxyproxy.statusbaractivation.tooltip "Indstillinger for statuslinje-aktivering">
<!ENTITY foxyproxy.toolbaractivation.label "Værktøjslinje-aktivering">
<!ENTITY foxyproxy.toolbaractivation.accesskey "t">
<!ENTITY foxyproxy.toolbaractivation.tooltip "Indstillinger for værktøjslinje-aktivering">
<!ENTITY foxyproxy.leftclicksb.label "Venstreklik FoxyProxy på statuslinjen">
<!ENTITY foxyproxy.leftclicksb.accesskey "l">
<!ENTITY foxyproxy.leftclicksb.tooltip "Handling ved venstreklik på FoxyProxy på statuslinjen">
<!ENTITY foxyproxy.middleclicksb.label "Midter-klik">
<!ENTITY foxyproxy.middleclicksb.accesskey "M">
<!ENTITY foxyproxy.middleclicksb.tooltip "Handling ved midterklik på FoxyProxy på statuslinjen">
<!ENTITY foxyproxy.rightclicksb.label "Højreklik FoxyProxy på statuslinjen">
<!ENTITY foxyproxy.rightclicksb.accesskey "r">
<!ENTITY foxyproxy.rightclicksb.tooltip "Handling ved højreklik på FoxyProxy på statuslinjen">
<!ENTITY foxyproxy.leftclicktb.label "Venstreklik FoxyProxy på værktøjslinjen">
<!ENTITY foxyproxy.leftclicktb.accesskey "L">
<!ENTITY foxyproxy.leftclicktb.tooltip "Handling ved venstreklik på FoxyProxy på værktøjslinjen">
<!ENTITY foxyproxy.middleclicktb.label "Midterklik FoxyProxy på værktøjslinjen">
<!ENTITY foxyproxy.middleclicktb.accesskey "M">
<!ENTITY foxyproxy.middleclicktb.tooltip "Handling ved midterklik på FoxyProxy på værktøjslinjen">
<!ENTITY foxyproxy.rightclicktb.label "Højreklik FoxyProxy på værktøjslinjen">
<!ENTITY foxyproxy.rightclicktb.accesskey "R">
<!ENTITY foxyproxy.rightclicktb.tooltip "Handling ved højreklik på FoxyProxy på værktøjslinjen">
<!ENTITY foxyproxy.click.options "Viser Indstillinger-dialogboksen">
<!ENTITY foxyproxy.click.cycle "Skift tilstand sekventielt">
<!ENTITY foxyproxy.click.contextmenu "Viser kontekst-menuen">
<!ENTITY foxyproxy.click.reloadcurtab "Genindlæs nuværende faneblad">
<!ENTITY foxyproxy.click.reloadtabsinbrowser "Genindlæs alle faneblade i nuværende browser">
<!ENTITY foxyproxy.click.reloadtabsinallbrowsers "Genindlæs alle faneblade i alle browsere">
<!ENTITY foxyproxy.click.removeallcookies "Fjern alle cookies">
<!ENTITY foxyproxy.includeincycle.label "Inkluder denne proxy når der skiftes mellem proxier ved at klikke på statuslinje- eller værktøjslinjeikonet (Globale indstillinger-&gt;Statuslinje/Værktøjslinje-aktivering-&gt;Skift tilstand sekventielt skal være slået til)">
<!ENTITY foxyproxy.includeincycle.accesskey "I">
<!ENTITY foxyproxy.includeincycle.tooltip "Inkluder denne proxy ved klik på statuslinjen/værktøjslinjen">
<!ENTITY foxyproxy.changes.msg1 "Hjælp! Hvor er indstillinger for HTTP, SSL, FTP, Gopher, og SOCKS?">
<!ENTITY foxyproxy.newGUI.popup.height "270px">
<!ENTITY foxyproxy.newGUI.popup.width "400px">
<!ENTITY foxyproxy.newGUI1.label "Den gamle FoxyProxy Proxyindstillinger skærm var baseret på og næsten identisk med Firefox&apos;s Forbindelsesindstillinger-dialog, som selv var næsten identisk til Proxy Settings i den hedengangne Mosaic 2.1.1-browser fra 1996. Problemet med alle disse skærmbilleder er deres begrænsede muligheder for at route trafik efter protokol. 21ende-århundrede browsere som Firefox håndterer mange flere protokoller end HTTP, SSL, FTP, og GOPHER. Disse gamle skærmbilleder ville være upraktiske hvis de forsøgte at omfatte samtlige protokoller.">
<!ENTITY foxyproxy.newGUI2.label "Da FoxyProxy allerede muliggør trafikstyring per protokol med jokertegn og regulære udtryksmønstre er oplistningen af protokoller unødvendig på dette skærmbillede. fra version 2.5 har FoxyProxy fjernet denne protokolliste fra Proxy indstillinger interfacet. Dette reducerer dog ikke funktionaliteten. Det forenkler blot interfacet. Hvis du har behov for at kontrollere trafikken per protokol bør du definere hvidliste- og sortliste-mønstre med specielt fokus på type/protokolangivelsen i mønsteret (f.eks., ftp://*.yahoo.com/*, *://leahscape.com/*, etc.)">
<!ENTITY foxyproxy.newGUI4.label "Klik her for mere information.">
<!ENTITY foxyproxy.error.msg.label "Fejlmeddelelse">
<!ENTITY foxyproxy.pac.result.label "PAC Resultat">
<!ENTITY foxyproxy.options.width "666">
<!ENTITY foxyproxy.options.height "477">
<!ENTITY foxyproxy.torwiz.width "660">
<!ENTITY foxyproxy.torwiz.height "375">
<!ENTITY foxyproxy.addeditproxy.width "660">
<!ENTITY foxyproxy.addeditproxy.height "470">

View File

@ -0,0 +1,136 @@
extensions.foxyproxy@eric.h.jung.description=FoxyProxy
foxyproxy=FoxyProxy
tor=Tor
privoxy=Privoxy
settings.error=Fejl ved læsning af indstillinger
error=Fejl
welcome=Velkommen til FoxyProxy
yes=Ja
no=Nej
disabled=Slået fra
torwiz.configure=Vil du konfigurere FoxyProxy til at bruge Tor?
torwiz.with.without.privoxy=Bruger du Tor med Privoxy eller uden?
torwiz.with=med
torwiz.without=uden
torwiz.privoxy.not.required=Bemærk venligst: fra Firefox 1.5 er Privoxy ikke længere nødvendigt for at bruge Firefox med Tor. Privoxy tilføjer ekstra værdi såsom indholdsfiltrering, men er ikke strengt nødvendig for at kunne bruge Firefox 1.5+ med Tor. Ønsker du stadig at Firefox skal bruge Tor via Privoxy?
torwiz.port=Indtast venligst porten på hvilken %S lytter. Hvis du ikke er sikker så brug standardindstillingen.
torwiz.nan=Det er ikke et tal.
torwiz.proxy.notes=Proxy igennem Tor Netværket - http://tor.eff.org
torwiz.google.mail=Google Mail
torwiz.pattern=http://*mail.google.com/*
torwiz.congratulations=Tillykke! FoxyProxy er konfigureret til brug med Tor. Vær venlig at sikre dig at Tor kører før du besøger URLs du har angivet til at bruge Tor-netværket. Ydermere, hvis du har konfigureret FoxyProxy til at bruge Privoxy, bedes du sikre dig at det også kører.
torwiz.cancelled=FoxyProxy Tor guiden er blevet afbrudt.
mode.patterns.label=Brug proxier baseret på deres prædefinerede mønstre
mode.patterns.accesskey=u
mode.patterns.tooltip=Brug proxier baseret på deres prædefinerede mønstre
mode.custom.label=Brug proxy "%S" for alle URLer
mode.custom.tooltip=Brug proxy "%S" for alle URLer
mode.disabled.label=Slå FoxyProxy helt fra
mode.disabled.accesskey=å
mode.disabled.tooltip=Slå FoxyProxy helt fra
more.label=Mere
more.accesskey=M
more.tooltip=Flere indstillinger
invalid.url=URLen angivet til automatisk proxy-konfiguration er ikke en gyldig URL.
protocols.error=Angiv venligst en eller flere protokoller for proxyen.
noport2=En port skal angives for værten.
nohost2=Et værtsnavn skal angives sammen med porten.
nohostport=Værtsnavn og portnummer skal angives.
torwiz.nopatterns=Du indtastede ikke nogen URL-mønstre. Dette betyder at Tor-netværket ikke vil blive brugt. Fortsæt alligevel?
months.long.1=Januar
months.short.1=Jan
months.long.2=Februar
months.short.2=Feb
months.long.3=Marts
months.short.3=Mar
months.long.4=April
months.short.4=Apr
months.long.5=Maj
months.short.5=Maj
months.long.6=Juni
months.short.6=Jun
months.long.7=Juli
months.short.7=Jul
months.long.8=August
months.short.8=Aug
months.long.9=September
months.short.9=Sep
months.long.10=Oktober
months.short.10=Okt
months.long.11=November
months.short.11=Nov
months.long.12=December
months.short.12=Dec
days.long.1=Søndag
days.short.1=Søn
days.long.2=Mandag
days.short.2=Man
days.long.3=Tirsdag
days.short.3=Tir
days.long.4=Onsdag
days.short.4=Ons
days.long.5=Torsdag
days.short.5=Tor
days.long.6=Fredag
days.short.6=Fre
days.long.7=Lørdag
days.short.7=Lør
timeformat=hh:nn:ss:zzz a/p mmm dd, yyyy
file.select=Vælg hvilken fil indstillingerne skal gemmes i
manual=Manuel
auto=Auto
direct=Direkte
delete.proxy.confirm=Slet proxy: er du sikker?
pattern.required=Et mønster er påkrævet.
pattern.invalid.regex=%S er ikke et gyldigt regulært udtryk.
proxy.error.for.url=Fejl ved fastsættelse af proxy for %S
proxy.default.settings.used=FoxyProxy bruges ikke for denne URL - standard Firefox forbindelsesindstillinger blev benyttet
proxy.all.urls=Alle URLer blev konfigureret til at bruge denne proxy
pac.status=FoxyProxy PAC status
pac.status.loadfailure=Kunne ikke indlæse PAC for proxy "%S"
pac.status.success=Indlæste PAC for proxy "%S"
pac.status.error=Fejl i PAC for proxy "%S"
error.noload=Fejl. Kontakt venligst FoxyProxy development teamet. Der lækker ikke private data, men ressourcen vil ikke lade sig indlæse. Undtagelse (exception) %S
proxy.name.required=Indtast venligst et navn for denne proxy på Generelt fanebladet.
proxy.default=Standard
proxy.default.notes=Disse indstillinger bruges når der ikke er et mønster der matcher en URL.
proxy.default.match.name=Alle
delete.proxy.default=Du kan ikke slette denne proxy.
copy.proxy.default=Du kan ikke kopiere denne proxy.
logg.maxsize.change=Dette vil rydde loggen. Fortsæt?
logg.maxsize.maximum=Maksimal anbefalet størrelse er 9999. Højere antal vil øge hukommelsesforbruget og kan påvirke ydelsen. Fortsæt alligevel?
proxy.random=Proxy blev valgt tilfældigt
mode.random.label=Brug tilfældige proxier for alle URLer (ignorer alle mønstre og prioriteter)
mode.random.accesskey=R
mode.random.tooltip=Indlæs URLer igennem tilfældige proxier (ignorer alle mønstre og prioriteter)
random=Tilfældig
random.applicable=Denne indstilling gælder kun når tilstanden er "Brug tilfældige proxier for alle URLer (ignorer alle mønstre og prioriteter)"
superadd.error=Konfigurationsfejl: %S er blevet deaktiveret.
superadd.notify=Proxy %S
superadd.url.added=%S tilføjet til Proxy "%S"
autoadd.pattern.label=Dynamisk mønster
quickadd.pattern.label=Dynamisk Hurtigtilføj Mønster
torwiz.proxydns=Ønsker du at DNS-forespørgsler skal gå igennem Tor netværket? Hvis du ikke forstår dette spørgsmål, klik "ja"
superadd.verboten2=%S kan ikke aktiveres da der enten ikke er defineret nogen proxier eller alle proxier er deaktiverede.
autoadd.notice=Bemærk venligst: AutoTilføj påvirker den tid det tager at indlæse en hjemmeside. Jo mere indviklede dine mønstre er og jo større websiden er, jo længere tager det AutoTilføj at behandle den. Hvis du oplever betydelige forsinkelser, så slå venligst AutoTilføj fra.
autoadd.notice2=
autoconfurl.test.success=PAC blev fundet, indlæst og korrekt behandlet.
autoconfurl.test.fail=Der opstod et problem ved indlæsning, lokalisering eller behandling af PAC:\nHTTP Status Kode: %S\nUndtagelse: %S
none=Ingen
delete.settings.ask=Vil du slette FoxyProxy indstillingerne gemt på %S?
delete.settings.confirm=%S vil blive slettet når alle browsere lukkes.
no.wildcard.characters=Mønsteret indeholder ingen jokertegn. Dette betyder at "%S" vil blive matchet præcist. Det er usædvanligt at bruge FoxyProxy på denne måde, og betyder sandsynligvis at der er en fejl i mønsteret eller at du ikke forstår hvordan man laver FoxyProxy mønstre. Fortsæt alligevel?
message.stop=Vis ikke denne meddelelse igen
log.save=Gem log
log.saved2=Log er gemt til %S. Vil du se loggen?
log.nourls.url=Ikke logget
log.scrub=Ryd eksisterende logposter for URLer?
no.white.patterns=Du indtastede ingen hvidlistede (inklusive) URL-mønstre. Dette betyder at proxy ikke bruges. Fortsæt alligevel?
quickadd.quickadd.canceled=Hurtigtilføj er blevet annulleret da nuværende URL allerede matcher det eksisterende mønster ved navn "%S" i proxy "%S"
quickadd.nourl=Kunne ikke indlæse nuværende URL
cookies.allremoved=Alle cookies fjernet
route.error=Fejl ved fastsættelse af hvilken vært der skal bruges til proxy
route.exception=Undtagelse ved fastsættelse af hvilken vært til brug for proxying af %S
see.log=Se venligst loggen for yderligere information.
pac.select=Vælg PAC fil der skal bruges
pac.files=PAC filer

View File

@ -0,0 +1,55 @@
<!-- switched from xhtml to html because of BabelZilla WTS adds extraneous html tags on locale download -->
<html>
<head>
<style type="text/css">
table {
border-width: 0px;
border-spacing: 2px;
border-style: none;
border-color: white;
border-collapse: separate;
background-color: rgb(250, 240, 230);
font-size: x-small;
font-family: verdana, sans-serif;
}
table td,table th {
border-width: 1px;
padding: 1px;
border-style: groove;
border-color: green;
background-color: rgb(250, 240, 230);
vertical-align: top;
font-size: x-small;
font-family: verdana, sans-serif;
}
p {background-color: white; font-size: x-small; font-family: verdana, sans-serif;}
body {font-family: verdana, sans-serif;}
h3 {font-size: small;}
h4 {font-size: x-small;}
</style>
</head>
<body>
<h3>URL mønstre</h3>
<p>Før Firefox indlæser en URL, spørger Firefox FoxyProxy om hvorvidt en proxy skal bruges.
FoxyProxy besvarer dette spørgsmål ved at forsøge at matche nuværende URL med alle de URL-mønstre du kan definere herunder.
Den enkleste metode til at angive mønstre er at bruge jokertegn.</p>
<h4><a name="wildcards">Jokertegn</a></h4>
<p>Jokertegn bruges overalt i computersammenhæng; du har højst sandsynligt set dem
før. Stjernen (*) substituerer som jokertegn for ingen eller flere tegn,
og spørgsmålstegnet (?) substituerer som jokertegn for ethvert enkelt tegn.
</p>
<p>Mere avancerede matchregler er mulige ved hjælp af regulære udtryk. For detaljer, klik på "Hjælp indhold" menuen.</p>
<h4>Jokertegn eksempler</h4>
<table>
<thead><tr><th>URL-mønster</th><th>Nogle der matcher</th><th>Nogle der ikke matcher</th></tr></thead>
<tr><td>*//:*.yahoo.com/*</td><td>Alt i Yahoo's domæne</td><td>http://mail.google.com/</td></tr>
<tr><td>*//:mail.yahoo.com/*</td><td>http://mail.yahoo.com/<br/>http://mail.yahoo.com/clownshoes/<br/>http://mail.yahoo.com/inbox/123.html<br/>ftp://mail.yahoo.com</td><td>http://maps.yahoo.com</td></tr>
<tr><td>http://??.wikipedia.org/wiki/Clown</td><td>http://en.wikipedia.org/wiki/Clown<br/>http://de.wikipedia.org/wiki/Clown<br/>http://cs.wikipedia.org/wiki/Clown</td><td>https://en.wikipedia.org/wiki/Clown<br/>http://de.wikipedia.org/wiki/Clown/<br/>ftp://en.wikipedia.org/wiki/Clown</td></tr>
<tr><td>http://digg.com/</td><td>http://digg.com/</td><td>http://digg.com<br/>http://www.digg.com/</td></tr>
<tr><td>*://*.asimov.???/*</td><td>ftp://ftp.asimov.net/<br/>ftp://ftp.asimov.com/theory.html<br/>http://bear.asimov.net/mom/<br/>https://isaac.asimov.org/hercules<br/>gopher://asimov.net/</td>
<td>ftp://ftp.asimov.co.uk<br/>http://isaac.home.com/tin.php</td></tr>
<tr><td>*</td><td><i>Matcher alt</i></td><td>&nbsp;</td></tr>
</table>
</body>
</html>

View File

@ -0,0 +1,427 @@
<!ENTITY foxyproxy.label "FoxyProxy">
<!ENTITY foxyproxy.accesskey "F">
<!ENTITY foxyproxy.tooltip "FoxyProxy">
<!ENTITY foxyproxy.optionsdialog.label "FoxyProxy Optionen">
<!ENTITY foxyproxy.options.label "Optionen">
<!ENTITY foxyproxy.options.accesskey "O">
<!ENTITY foxyproxy.options.tooltip "Optionsdialog öffnen">
<!ENTITY foxyproxy.tree.pickertooltiptext.label "Hier klicken, um die angezeigten Spalten auszuwählen">
<!ENTITY foxyproxy.proxy.name.label "Proxy-Name">
<!ENTITY foxyproxy.proxy.name.accesskey "N">
<!ENTITY foxyproxy.proxy.name.tooltip "Proxy-Name">
<!ENTITY foxyproxy.proxy.notes.label "Proxy-Beschreibung">
<!ENTITY foxyproxy.proxy.notes.accesskey "B">
<!ENTITY foxyproxy.proxy.notes.tooltip "Proxy-Beschreibung">
<!ENTITY foxyproxy.pattern.label "Muster">
<!ENTITY foxyproxy.pattern.type.label "Typ des Musters">
<!ENTITY foxyproxy.whitelist.blacklist.label "Whitelist (inklusiv) oder Blacklist (exklusiv)">
<!ENTITY foxyproxy.pattern.name.label "Name des Musters">
<!ENTITY foxyproxy.pattern.name.accesskey "M">
<!ENTITY foxyproxy.pattern.name.tooltip "Name des Musters">
<!ENTITY foxyproxy.url.pattern.label "URL oder URL-Muster">
<!ENTITY foxyproxy.url.pattern.accesskey "U">
<!ENTITY foxyproxy.url.pattern.tooltip "URL oder URL-Muster">
<!ENTITY foxyproxy.enabled.label "Aktiv">
<!ENTITY foxyproxy.enabled.accesskey "A">
<!ENTITY foxyproxy.enabled.tooltip "Umschalten zwischen aktiv/inaktiv">
<!ENTITY foxyproxy.delete.selection.label "Auswahl löschen">
<!ENTITY foxyproxy.delete.selection.accesskey "L">
<!ENTITY foxyproxy.delete.selection.tooltip "Ausgewählten Eintrag löschen">
<!ENTITY foxyproxy.edit.selection.label "Auswahl bearbeiten">
<!ENTITY foxyproxy.edit.selection.accesskey "B">
<!ENTITY foxyproxy.edit.selection.tooltip "Ausgewählten Eintrag bearbeiten">
<!ENTITY foxyproxy.help.label "Hilfe">
<!ENTITY foxyproxy.help.accesskey "H">
<!ENTITY foxyproxy.help.tooltip "Hilfe anzeigen">
<!ENTITY foxyproxy.close.label "Schließen">
<!ENTITY foxyproxy.close.accesskey "S">
<!ENTITY foxyproxy.close.tooltip "Fenster schließen">
<!ENTITY foxyproxy.about.label "Über">
<!ENTITY foxyproxy.about.accesskey "Ü">
<!ENTITY foxyproxy.about.tooltip "Öffnet den Über-Dialog">
<!ENTITY foxyproxy.online.label "FoxyProxy Online">
<!ENTITY foxyproxy.online.accesskey "O">
<!ENTITY foxyproxy.online.tooltip "FoxyProxy Website besuchen">
<!ENTITY foxyproxy.tor.label "Tor Wizard">
<!ENTITY foxyproxy.tor.accesskey "W">
<!ENTITY foxyproxy.tor.tooltip "Tor Wizard">
<!ENTITY foxyproxy.copy.selection.label "Auswahl kopieren">
<!ENTITY foxyproxy.copy.selection.accesskey "K">
<!ENTITY foxyproxy.copy.selection.tooltip "Kopiert die aktuelle Auswahl">
<!ENTITY foxyproxy.mode.label "Modus auswählen">
<!ENTITY foxyproxy.auto.url.label "Automatische Proxy-Konfigurations-URL">
<!ENTITY foxyproxy.auto.url.accesskey "U">
<!ENTITY foxyproxy.auto.url.tooltip "URL der PAC-Datei eingeben">
<!ENTITY foxyproxy.port.label "Port">
<!ENTITY foxyproxy.port.accesskey "P">
<!ENTITY foxyproxy.port.tooltip "Port">
<!ENTITY foxyproxy.socks.proxy.label "SOCKS-Proxy">
<!ENTITY foxyproxy.socks.proxy.accesskey "C">
<!ENTITY foxyproxy.socks.proxy.tooltip "URL des SOCKS-Proxys">
<!ENTITY foxyproxy.socks.v4 "SOCKS v4/4a">
<!ENTITY foxyproxy.socks.v5 "SOCKS v5">
<!ENTITY foxyproxy.addeditpattern.title "Muster hinzufügen/editieren">
<!ENTITY foxyproxy.wildcard.label "Wildcards">
<!ENTITY foxyproxy.wildcard.accesskey "W">
<!ENTITY foxyproxy.wildcard.tooltip "Die URL oder das URL-Muster enthält Wildcards und ist kein regulärer Ausdruck">
<!ENTITY foxyproxy.wildcard.example.label "Beispiel: *mail.yahoo.com/*">
<!ENTITY foxyproxy.regex.label "Regulärer Ausdruck">
<!ENTITY foxyproxy.regex.accesskey "R">
<!ENTITY foxyproxy.regex.tooltip "Die URL oder das URL-Muster ist ein regulärer Ausdruck">
<!ENTITY foxyproxy.regex.example.label "Beispiel: http.?://.*\.mail\.yahoo\.com/.*">
<!ENTITY foxyproxy.version "Version">
<!ENTITY foxyproxy.createdBy "Erstellt von">
<!ENTITY foxyproxy.copyright "Copyright">
<!ENTITY foxyproxy.rights "Alle Rechte vorbehalten.">
<!ENTITY foxyproxy.released "Herausgegeben unter der GPL-Lizenz.">
<!ENTITY foxyproxy.thanks "Besonderen Dank an">
<!ENTITY foxyproxy.translations "Übersetzungen">
<!ENTITY foxyproxy.tab.general.label "Allgemein">
<!ENTITY foxyproxy.tab.general.accesskey "G">
<!ENTITY foxyproxy.tab.general.tooltip "Allgemeine Proxy-Einstellungen verwalten">
<!ENTITY foxyproxy.tab.proxy.label "Proxy-Details">
<!ENTITY foxyproxy.tab.proxy.accesskey "D">
<!ENTITY foxyproxy.tab.proxy.tooltip "Proxy-Details verwalten">
<!ENTITY foxyproxy.tab.patterns.label "Muster">
<!ENTITY foxyproxy.tab.patterns.accesskey "M">
<!ENTITY foxyproxy.tab.patterns.tooltip "URL-Muster verwalten">
<!ENTITY foxyproxy.add.title "Proxy-Einstellungen">
<!ENTITY foxyproxy.pattern.description "Hier wird festgelegt, wann dieser Proxy verwendet wird und wann nicht.">
<!ENTITY foxyproxy.pattern.matchtype.label "Muster enthält">
<!ENTITY foxyproxy.pattern.matchtype2.label "Muster zur Identifikation blockierter Websites enthält">
<!ENTITY foxyproxy.pattern.template.matchtype.label "Musterschablone enthält">
<!ENTITY foxyproxy.pattern.whiteblack.label "Whitelist oder Blacklist">
<!ENTITY foxyproxy.add.option.direct.label "Direkte Verbindung zum Internet (kein Proxy)">
<!ENTITY foxyproxy.add.option.direct.accesskey "D">
<!ENTITY foxyproxy.add.option.direct.tooltip "Kein Proxy verwenden - benutze die unterliegende direkte Internetverbindung">
<!ENTITY foxyproxy.add.option.manual.label "Manuelle Proxy-Konfiguration">
<!ENTITY foxyproxy.add.option.manual.accesskey "M">
<!ENTITY foxyproxy.add.option.manual.tooltip "Proxy-Konfiguration manuell einstellen">
<!ENTITY foxyproxy.add.new.pattern.label "Neues Muster">
<!ENTITY foxyproxy.add.new.pattern.accesskey "N">
<!ENTITY foxyproxy.add.new.pattern.tooltip "Neues Muster hinzufügen">
<!ENTITY foxyproxy.menubar.file.label "Datei">
<!ENTITY foxyproxy.menubar.file.accesskey "D">
<!ENTITY foxyproxy.menubar.file.tooltip "Öffnet das Datei-Menü">
<!ENTITY foxyproxy.menubar.help.label "Hilfe">
<!ENTITY foxyproxy.menubar.help.accesskey "H">
<!ENTITY foxyproxy.menubar.help.tooltip "Öffnet das Hilfe-Menü">
<!ENTITY foxyproxy.mode.accesskey "M">
<!ENTITY foxyproxy.mode.tooltip "Auswahl, wie FoxyProxy aktiviert wird">
<!ENTITY foxyproxy.tab.proxies.label "Proxies">
<!ENTITY foxyproxy.tab.proxies.accesskey "P">
<!ENTITY foxyproxy.tab.proxies.tooltip "Proxies verwalten">
<!ENTITY foxyproxy.tab.global.label "Globale Einstellungen">
<!ENTITY foxyproxy.tab.global.accesskey "G">
<!ENTITY foxyproxy.tab.global.tooltip "Globale Einstellungen verwalten">
<!ENTITY foxyproxy.tab.logging.label "Logging">
<!ENTITY foxyproxy.tab.logging.accesskey "L">
<!ENTITY foxyproxy.tab.logging.tooltip "Logging-Einstellungen verwalten">
<!ENTITY foxyproxy.proxydns.label "SOCKS-Proxy für DNS-Lookups verwenden">
<!ENTITY foxyproxy.proxydns.accesskey "D">
<!ENTITY foxyproxy.proxydns.tooltip "Wenn ausgewählt, werden DNS-Lookups durch das SOCKS-Proxy geroutet">
<!ENTITY foxyproxy.proxydns.notice "Firefox muss neu gestartet werden, um die Änderungen auszuführen. Jetzt neu starten?">
<!ENTITY foxyproxy.showstatusbaricon.label "Icon in der Statuszeile anzeigen">
<!ENTITY foxyproxy.showstatusbaricon.accesskey "I">
<!ENTITY foxyproxy.showstatusbaricon.tooltip "FoxyProxy Icon wird in der Statuszeile angezeigt">
<!ENTITY foxyproxy.showstatusbarmode.label "Modus (Text) in der Statuszeile anzeigen">
<!ENTITY foxyproxy.showstatusbarmode.accesskey "M">
<!ENTITY foxyproxy.showstatusbarmode.tooltip "FoxyProxy Modus wird in der Statuszeile angezeigt">
<!ENTITY foxyproxy.storagelocation.label "Speicherort für die Einstellungen">
<!ENTITY foxyproxy.storagelocation.accesskey "E">
<!ENTITY foxyproxy.storagelocation.tooltip "Ort an dem die Einstellungen von FoxyProxy gespeichert werden">
<!ENTITY foxyproxy.tab.logging.timestamp.label "Zeit">
<!ENTITY foxyproxy.tab.logging.url.label "URL">
<!ENTITY foxyproxy.host.label "Host-Name">
<!ENTITY foxyproxy.host.accesskey "H">
<!ENTITY foxyproxy.host.tooltip "Host-Name">
<!ENTITY foxyproxy.clear.label "Löschen">
<!ENTITY foxyproxy.clear.accesskey "L">
<!ENTITY foxyproxy.clear.tooltip "Löschen">
<!ENTITY foxyproxy.refresh.label "Aktualisieren">
<!ENTITY foxyproxy.refresh.accesskey "U">
<!ENTITY foxyproxy.refresh.tooltip "Aktualisieren">
<!ENTITY foxyproxy.save.label "Speichern">
<!ENTITY foxyproxy.save.accesskey "S">
<!ENTITY foxyproxy.save.tooltip "Speichern">
<!ENTITY foxyproxy.addnewproxy.label "Neuer Proxy">
<!ENTITY foxyproxy.addnewproxy.accesskey "N">
<!ENTITY foxyproxy.addnewproxy.tooltip "Neuen Proxy hinzufügen">
<!ENTITY foxyproxy.whitelist.label "Whitelist">
<!ENTITY foxyproxy.whitelist.accesskey "W">
<!ENTITY foxyproxy.whitelist.tooltip "URLs, die dieses Muster akzeptiert, werden über diesen Proxy geladen">
<!ENTITY foxyproxy.whitelist.description.label "URLs, die dieses Muster akzeptiert, werden über diesen Proxy geladen">
<!ENTITY foxyproxy.blacklist.label "Blacklist">
<!ENTITY foxyproxy.blacklist.accesskey "B">
<!ENTITY foxyproxy.blacklist.tooltip "URLs, die dieses Muster akzeptiert, werden NICHT über diesen Proxy geladen">
<!ENTITY foxyproxy.blacklist.description.label "URLs, die dieses Muster akzeptiert, werden NICHT über diesen Proxy geladen">
<!ENTITY foxyproxy.whiteblack.description.label "Muster der Blacklist (exklusiv) haben Vorrang vor Mustern der Whitelist(inklusiv): Falls eine URL sowohl von einem Muster der Whitelist als auch von einem Muster der Blacklist für denselben Proxy akzeptiert wird, wird die URL nicht über dieses Proxy geladen.">
<!ENTITY foxyproxy.usingPFF.label1 "Ich benutze">
<!ENTITY foxyproxy.usingPFF.label2 "Portable Firefox">
<!ENTITY foxyproxy.usingPFF.accesskey "P">
<!ENTITY foxyproxy.usingPFF.tooltip "Hier ankreuzen, falls Portable Firefox verwendet wird">
<!ENTITY foxyproxy.socks.version.label "SOCKS Version">
<!ENTITY foxyproxy.autopacurl.label "Auto PAC URL">
<!ENTITY foxyproxy.issocks.label "SOCKS-Proxy?">
<!ENTITY foxyproxy.issocks.accesskey "S">
<!ENTITY foxyproxy.issocks.tooltip "Ist dies ein Web-Proxy oder ein SOCKS-Proxy?">
<!ENTITY foxyproxy.chinese.simplified "Chinesisch (Simplified)">
<!ENTITY foxyproxy.chinese.traditional "Chinesisch (Traditionell)">
<!ENTITY foxyproxy.croatian "Kroatisch">
<!ENTITY foxyproxy.czech "Tschechisch">
<!ENTITY foxyproxy.danish "Dänisch">
<!ENTITY foxyproxy.dutch "Niederländisch">
<!ENTITY foxyproxy.english "Englisch">
<!ENTITY foxyproxy.english.british "Englisch (Britisch)">
<!ENTITY foxyproxy.french "Französisch">
<!ENTITY foxyproxy.german "Deutsch">
<!ENTITY foxyproxy.greek "Griechisch">
<!ENTITY foxyproxy.hungarian "Ungarisch">
<!ENTITY foxyproxy.italian "Italienisch">
<!ENTITY foxyproxy.persian "Persisch">
<!ENTITY foxyproxy.polish "Polnisch">
<!ENTITY foxyproxy.portugese.brazilian "Portugiesisch (Brasilianisch)">
<!ENTITY foxyproxy.portugese.portugal "Portugiesisch (Portugal)">
<!ENTITY foxyproxy.romanian "Rumänisch">
<!ENTITY foxyproxy.russian "Russisch">
<!ENTITY foxyproxy.slovak "Slowakisch">
<!ENTITY foxyproxy.spanish.spain "Spanisch (Spanien)">
<!ENTITY foxyproxy.spanish.argentina "Spanisch (Argentinien)">
<!ENTITY foxyproxy.swedish "Schwedisch">
<!ENTITY foxyproxy.thai.thailand "Thailändisch (Thailand)">
<!ENTITY foxyproxy.turkish "Türkisch">
<!ENTITY foxyproxy.ukrainian "Ukrainisch">
<!ENTITY foxyproxy.your.language "Deine Sprache">
<!ENTITY foxyproxy.your.name.here "Dein Name hier!">
<!ENTITY foxyproxy.moveup.label "Aufwärts">
<!ENTITY foxyproxy.moveup.tooltip "Priorität der aktuellen Auswahl erhöhen">
<!ENTITY foxyproxy.moveup.accesskey "U">
<!ENTITY foxyproxy.movedown.label "Abwärts">
<!ENTITY foxyproxy.movedown.tooltip "Priorität der aktuellen Auswahl vermindern">
<!ENTITY foxyproxy.movedown.accesskey "B">
<!ENTITY foxyproxy.autoconfurl.view.label "Ansicht">
<!ENTITY foxyproxy.autoconfurl.view.accesskey "A">
<!ENTITY foxyproxy.autoconfurl.view.tooltip "Auto-Konfigurationsdatei ansehen">
<!ENTITY foxyproxy.autoconfurl.test.label "Test">
<!ENTITY foxyproxy.autoconfurl.test.accesskey "T">
<!ENTITY foxyproxy.autoconfurl.test.tooltip "Teste die Auto-Konfigurationsdatei">
<!ENTITY foxyproxy.autoconfurl.reload.label "PAC neu laden alle">
<!ENTITY foxyproxy.autoconfurl.reload.accesskey "L">
<!ENTITY foxyproxy.autoconfurl.reload.tooltip "PAC-Datei jede angegebene Periode automatisch neu laden">
<!ENTITY foxyproxy.minutes.label "Minuten">
<!ENTITY foxyproxy.minutes.tooltip "Minuten">
<!ENTITY foxyproxy.logging.maxsize.label "Maximale Log-Größe">
<!ENTITY foxyproxy.logging.maxsize.accesskey "M">
<!ENTITY foxyproxy.logging.maxsize.tooltip "Maximale Anzahl von Log-Einträgen bis zum Überlauf an den Anfang">
<!ENTITY foxyproxy.logging.maxsize.button.label "Setzen">
<!ENTITY foxyproxy.logging.maxsize.button.accesskey "S">
<!ENTITY foxyproxy.logging.maxsize.button.tooltip "Maximale Anzahl von Logeinträgen">
<!ENTITY foxyproxy.random.label "Lade URLs durch zufällige Proxies (alle Muster und Prioritäten werden ignoriert)">
<!ENTITY foxyproxy.random.accesskey "Z">
<!ENTITY foxyproxy.random.tooltip "Lade URLs durch zufällige Proxies (alle Muster und Prioritäten werden ignoriert)">
<!ENTITY foxyproxy.random.includedirect.label "Proxies einschließen, die als direkte Internetverbindung konfiguriert sind">
<!ENTITY foxyproxy.random.includedirect.accesskey "D">
<!ENTITY foxyproxy.random.includedirect.tooltip "Proxies, die als direkte Internetverbindung konfiguriert sind, werden in die zufällige Proxy-Auswahl einbezogen">
<!ENTITY foxyproxy.random.includedisabled.label "Inaktive Proxies einschließen">
<!ENTITY foxyproxy.random.includedisabled.accesskey "I">
<!ENTITY foxyproxy.random.includedisabled.tooltip "Inaktive Proxies werden in die zufällige Proxy-Auswahl einbezogen">
<!ENTITY foxyproxy.random.settings.label "Zufällige Proxy-Auswahl">
<!ENTITY foxyproxy.random.settings.accesskey "Z">
<!ENTITY foxyproxy.random.settings.tooltip "Einstellungen für die zufällige Proxy-Auswahl">
<!ENTITY foxyproxy.tab.autoadd.label "AutoAdd">
<!ENTITY foxyproxy.tab.autoadd.accesskey "A">
<!ENTITY foxyproxy.tab.autoadd.tooltip "Einstellungen für AutoAdd verwalten">
<!ENTITY foxyproxy.autoadd.description "Einige Proxies sperren den Zugriff auf einige Internetseiten. Um dies zu umgehen, gib ein Suchmuster an, das blockierte Websites akzeptiert. Wenn das Suchmuster auf einer Webseite gefunden wird, wird ein URL-Muster für die URL dieser Webseite automatisch einem Proxy zugeordnet und die Seite optional neu geladen. Dies erspart es, blockierte Webseiten explizit vorgeben zu müssen.">
<!ENTITY foxyproxy.autoadd.pattern.label "URL-Muster zur Identifizierung blockierter Websites">
<!ENTITY foxyproxy.autoadd.pattern.accesskey "M">
<!ENTITY foxyproxy.autoadd.pattern.tooltip "Muster für die Identifikation blockierter Webseiten">
<!ENTITY foxyproxy.autoadd.wildcard.example.label "Beispiel: *Zugriff auf diese Seite verweigert.*">
<!ENTITY foxyproxy.autoadd.regex.example.label "Beispiel: .*Seite.* ist gesperrt.*">
<!ENTITY foxyproxy.autoadd.proxy.label "Proxy, dem Muster automatisch zugeordnet werden">
<!ENTITY foxyproxy.autoadd.proxy.accesskey "P">
<!ENTITY foxyproxy.autoadd.proxy.tooltip "Legt den Proxy fest, dem Muster per AutoAdd automatisch zugeordnet werden">
<!ENTITY foxyproxy.pattern.template.label "URL-Musterschablone">
<!ENTITY foxyproxy.pattern.template.accesskey "U">
<!ENTITY foxyproxy.pattern.template.tooltip "URL-Musterschablone">
<!ENTITY foxyproxy.pattern.template.example.label1 "Beispiel für">
<!ENTITY foxyproxy.pattern.template.example.label2 "http://fred:secret@mail.foo.com:8080/inbox/msg102.htm#subject?style=elegant">
<!ENTITY foxyproxy.pattern.template.currenturl.label "Aktuelle URL">
<!ENTITY foxyproxy.pattern.template.currenturl.accesskey "A">
<!ENTITY foxyproxy.pattern.template.currenturl.tooltip "URL in der Adresszeile">
<!ENTITY foxyproxy.pattern.template.generatedpattern.label "Generiertes Muster">
<!ENTITY foxyproxy.pattern.template.generatedpattern.accesskey "G">
<!ENTITY foxyproxy.pattern.template.generatedpattern.tooltip "Dynamisch generiertes Muster">
<!ENTITY foxyproxy.autoadd.reload.label "Seite nach Zuordnung zum Proxy neu laden">
<!ENTITY foxyproxy.autoadd.reload.accesskey "L">
<!ENTITY foxyproxy.autoadd.reload.tooltip "Lädt die Seite automatisch neu, nachdem sie einem Proxy zugeordnet wurde">
<!ENTITY foxyproxy.autoadd.notify.label "Benachrichtigen, wenn AutoAdd ausgeführt wird">
<!ENTITY foxyproxy.autoadd.notify.accesskey "B">
<!ENTITY foxyproxy.autoadd.notify.tooltip "Benachrichtigung anzeigen, wenn eine Webseite blockiert ist und das URL-Muster einem Proxy per AutoAdd zugeordnet wird">
<!ENTITY foxyproxy.graphics "Grafikdesign und Bilder von">
<!ENTITY foxyproxy.website "Website von">
<!ENTITY foxyproxy.contributions "Beiträge von">
<!ENTITY foxyproxy.pacloadnotification.label "Benachrichtigen beim Laden von PAC-Dateien">
<!ENTITY foxyproxy.pacloadnotification.accesskey "L">
<!ENTITY foxyproxy.pacloadnotification.tooltip "Zeigt ein Popup-Fenster an, wenn eine PAC Datei geladen wird">
<!ENTITY foxyproxy.pacerrornotification.label "Benachrichtigen bei Fehlern in PAC-Dateien">
<!ENTITY foxyproxy.pacerrornotification.accesskey "F">
<!ENTITY foxyproxy.pacerrornotification.tooltip "Zeigt ein Popup-Fenster an bei Fehlern in einer PAC-Datei">
<!ENTITY foxyproxy.toolsmenu.label "FoxyProxy im Firefox Extras-Menü anzeigen">
<!ENTITY foxyproxy.toolsmenu.accesskey "E">
<!ENTITY foxyproxy.toolsmenu.tooltip "Zeige FoxyProxy im Firefox Extras-Menü">
<!ENTITY foxyproxy.tip.label "Tip">
<!ENTITY foxyproxy.pactips.popup.height "165px">
<!ENTITY foxyproxy.pactips.popup.width "400px">
<!ENTITY foxyproxy.pactip1.label "Verwenden Sie das file://-Schema für PAC-Dateien, die auf der lokalen Festplatte gespeichert sind. Beispiele: file://c:/path/proxy.pac unter Windows oder file://home/users/joe/proxy.pac unter Unix/Linux/Mac.">
<!ENTITY foxyproxy.pactip2.label "Verwenden Sie das ftp://-Schema für PAC-Dateien auf einem FTP-Server. Beispiel: ftp://leahscape.com/path/proxy.pac">
<!ENTITY foxyproxy.pactip3.label "Sie können auch http://, https:// oder ein beliebiges anderes unterstütztes Schema verwenden.">
<!ENTITY foxyproxy.contextmenu.label "FoxyProxy im Kontextmenü anzeigen">
<!ENTITY foxyproxy.contextmenu.accesskey "K">
<!ENTITY foxyproxy.contextmenu.tooltip "Zeige FoxyProxy im Kontextmenü">
<!ENTITY foxyproxy.quickadd.desc1 "QuickAdd fügt per Alt-F2 ein dynamisches URL-Muster einem Proxy hinzu. Dies ist eine praktische Alternative zu AutoAdd. Konfigurieren Sie die Alt-F2-Tastenkombination mit der">
<!ENTITY foxyproxy.keyconfig.label "KeyConfig">
<!ENTITY foxyproxy.quickadd.desc2 "Erweiterung">
<!ENTITY foxyproxy.quickadd.label "QuickAdd">
<!ENTITY foxyproxy.quickadd.accesskey "Q">
<!ENTITY foxyproxy.quickadd.tooltip "QuickAdd">
<!ENTITY foxyproxy.quickadd.notify.label "Benachrichtigen, wenn QuickAdd ausgeführt wird">
<!ENTITY foxyproxy.quickadd.notify.accesskey "B">
<!ENTITY foxyproxy.quickadd.notify.tooltip "Zeigt ein Popup-Fenster an, wenn QuickAdd aktiviert wird">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.label "Benachrichtigen, wenn QuickAdd abgebrochen wird">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.label2 "QuickAdd wird automatisch abgebrochen, wenn es durch die Tastenkombination Alt-F2 aufgerufen wurde und die aktuelle URL in der Adresszeile bereits von der Whitelist eines existierenden Proxys abgedeckt wird. Auf diese Weise wird ein Aufblähen der Konfiguration durch Mehrfachdefinitionen von Mustern vermieden. Diese Einstellung beeinflußt nicht das Abbruchverhalten; sie steuert vielmehr die Benachrichtigung über Abbrüche.">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.accesskey "A">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.tooltip "Zeigt ein Popup-Fenster ann, wenn QuickAdd aktiviert und abgebrochen wird">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.popup.width "400px">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.popup.height "130px">
<!ENTITY foxyproxy.whatsthis "Kontexthilfe">
<!ENTITY foxyproxy.quickadd.prompt.label "Eingabeaufforderung für Editieren und Konfiguration, bevor ein Muster einem Proxy hinzugefügt wird">
<!ENTITY foxyproxy.quickadd.prompt.accesskey "P">
<!ENTITY foxyproxy.quickadd.prompt.tooltip "Eingabeaufforderung für Editieren und Konfiguration bevor ein Muster einem Proxy hinzugefügt wird">
<!ENTITY foxyproxy.quickadd.proxy.label "Proxy, dem das Muster hinzugefügt wird">
<!ENTITY foxyproxy.quickadd.proxy.accesskey "P">
<!ENTITY foxyproxy.quickadd.proxy.tooltip "Wählen Sie den Proxy, dem das Muster hinzugefügt wird">
<!ENTITY foxyproxy.bypasscache.label "Firefox Cache beim Laden umgehen">
<!ENTITY foxyproxy.bypasscache.accesskey "U">
<!ENTITY foxyproxy.bypasscache.tooltip "Firefox Cache wird ignoriert">
<!ENTITY foxyproxy.advancedmenus.label "Verwende erweiterte Menüs">
<!ENTITY foxyproxy.advancedmenus.accesskey "W">
<!ENTITY foxyproxy.advancedmenus.tooltip "Verwende erweiterte Menüs (im Stil von FoxyProxy 2.2)">
<!ENTITY foxyproxy.importsettings.label "Importiere Einstellungen">
<!ENTITY foxyproxy.importsettings.accesskey "I">
<!ENTITY foxyproxy.importsettings.tooltip "Importiere Einstellungen aus Datei">
<!ENTITY foxyproxy.exportsettings.label "Exportiere aktuelle Einstellungen">
<!ENTITY foxyproxy.exportsettings.accesskey "E">
<!ENTITY foxyproxy.exportsettings.tooltip "Exportiere aktuelle Einstellungen in eine Datei">
<!ENTITY foxyproxy.importlist.label "Importiere Proxy-Liste">
<!ENTITY foxyproxy.importlist.accesskey "I">
<!ENTITY foxyproxy.importlist.tooltip "Importiere eine Proxy-Liste aus einer Textdatei">
<!ENTITY foxyproxy.wildcard.reference.label "Wildcard Referenz">
<!ENTITY foxyproxy.wildcard.reference.accesskey "W">
<!ENTITY foxyproxy.wildcard.reference.tooltip "Wildcard Referenz">
<!ENTITY foxyproxy.wildcard.reference.subtitle.label "Der Stern (*) akzeptiert null oder mehrere Zeichen, und das Fragezeichen (?) akzeptiert ein beliebiges einzelnes Zeichen.">
<!ENTITY foxyproxy.wildcard.reference.mistakes "Häufige Fehler beim Schreiben von Wildcard-Mustern">
<!ENTITY foxyproxy.wildcard.reference.goal.label "Ziel">
<!ENTITY foxyproxy.wildcard.reference.goal1.label "Akzeptiere alle Seiten in der www-Subdomain von MySpace">
<!ENTITY foxyproxy.wildcard.reference.goal2.label "Akzeptiere den lokalen PC">
<!ENTITY foxyproxy.wildcard.reference.goal3.label "Akzeptiere alle Subdomänen und Seiten bei abc.com">
<!ENTITY foxyproxy.wildcard.reference.goal4.label "Akzeptiere alle Seiten in der Domäne a.foo.com, aber nicht in b.foo.com">
<!ENTITY foxyproxy.wildcard.reference.correct.label "Richtig">
<!ENTITY foxyproxy.wildcard.reference.correct2.label "Zwei Muster erforderlich">
<!ENTITY foxyproxy.wildcard.reference.incorrect.label "Falsch">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason.label "Begründung">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason1.label "Da keine Wildcards enthalten sind, wird nur die Homepage akzeptiert">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason2.label "FoxyProxy versteht diese Syntax nicht">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason3.label "Es sind keine Wildcards enthalten">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason4.label "Es sind keine Wildcards enthalten">
<!ENTITY foxyproxy.wildcard.reference.popup.height "350px">
<!ENTITY foxyproxy.logging.noURLs.label "URLs werden nicht gespeichert oder angezeigt">
<!ENTITY foxyproxy.logging.noURLs.accesskey "U">
<!ENTITY foxyproxy.logging.noURLs.tooltip "URLs werden nicht im RAM oder auf Platte gespeichert">
<!ENTITY foxyproxy.ok.label "OK">
<!ENTITY foxyproxy.ok.accesskey "O">
<!ENTITY foxyproxy.ok.tooltip "Fenster schließen">
<!ENTITY foxyproxy.pattern.template.reference.label "Referenz zu Musterschablonen">
<!ENTITY foxyproxy.pattern.template.reference.accesskey "S">
<!ENTITY foxyproxy.pattern.template.reference.tooltip "Referenz zu Musterschablonen">
<!ENTITY foxyproxy.pattern.template.reference.subtitle.label "URL-Musterschablonen definieren das Format, in dem URLs per QuickAdd oder AutoAdd zu Proxies hinzugefügt werden. In einer Schablone werden die folgenden reservierten Strings bei der Ausführung von QuickAdd oder AutoAdd durch die korrespondierenden URL-Komponenten aus der Adresszeile ersetzt.">
<!ENTITY foxyproxy.pattern.template.reference.specialstring.label "Reservierter String">
<!ENTITY foxyproxy.pattern.template.reference.subststring.label "Ersetzung durch">
<!ENTITY foxyproxy.pattern.template.reference.example.label "Beispiel">
<!ENTITY foxyproxy.pattern.template.reference.scheme.label "Protokoll">
<!ENTITY foxyproxy.pattern.template.reference.username.label "Benutzer">
<!ENTITY foxyproxy.pattern.template.reference.password.label "Passwort">
<!ENTITY foxyproxy.pattern.template.reference.userpass.label "Benutzer &amp; Passwort mit &quot;:&quot; &amp; &quot;@&quot;">
<!ENTITY foxyproxy.pattern.template.reference.host.label "Host">
<!ENTITY foxyproxy.pattern.template.reference.port.label "Port">
<!ENTITY foxyproxy.pattern.template.reference.hostport.label "Host &amp; Port mit &quot;:&quot;">
<!ENTITY foxyproxy.pattern.template.reference.prepath.label "String vor dem Pfad">
<!ENTITY foxyproxy.pattern.template.reference.path.label "Pfad (einschließlich Dateiname)">
<!ENTITY foxyproxy.pattern.template.reference.directory.label "Verzeichnis">
<!ENTITY foxyproxy.pattern.template.reference.filebasename.label "Dateiname">
<!ENTITY foxyproxy.pattern.template.reference.fileextension.label "Extension">
<!ENTITY foxyproxy.pattern.template.reference.filename.label "vollständiger Dateiname">
<!ENTITY foxyproxy.pattern.template.reference.ref.label "Teil nach dem &quot;#&quot;">
<!ENTITY foxyproxy.pattern.template.reference.query.label "Teil nach dem &quot;?&quot;">
<!ENTITY foxyproxy.pattern.template.reference.spec.label "vollständige URL">
<!ENTITY foxyproxy.pattern.template.reference.popup.height "400px">
<!ENTITY foxyproxy.pattern.template.reference.popup.width "800px">
<!ENTITY foxyproxy.notifications.label "Benachrichtigungen">
<!ENTITY foxyproxy.notifications.accesskey "B">
<!ENTITY foxyproxy.notifications.tooltip "Benachrichtigungseinstellungen">
<!ENTITY foxyproxy.indicators.label "Anzeigen">
<!ENTITY foxyproxy.indicators.accesskey "A">
<!ENTITY foxyproxy.indicators.tooltip "Anzeigeeinstellungen">
<!ENTITY foxyproxy.misc.label "Verschiedenes">
<!ENTITY foxyproxy.misc.accesskey "V">
<!ENTITY foxyproxy.misc.tooltip "Verschiedene Einstellungen">
<!ENTITY foxyproxy.animatedicons.label "Animiere Icon in der Statuszeile">
<!ENTITY foxyproxy.animatedicons.accesskey "A">
<!ENTITY foxyproxy.animatedicons.tooltip "Animiere Icon in der Statuszeile, wenn Proxies verwendet werden">
<!ENTITY foxyproxy.statusbaractivation.label "Aktivierung über die Statuszeile">
<!ENTITY foxyproxy.statusbaractivation.accesskey "S">
<!ENTITY foxyproxy.statusbaractivation.tooltip "Einstellungen für die Aktivierung über die Statuszeile">
<!ENTITY foxyproxy.toolbaractivation.label "Aktivierung über Toolbar">
<!ENTITY foxyproxy.toolbaractivation.accesskey "T">
<!ENTITY foxyproxy.toolbaractivation.tooltip "Einstellungen für die Aktivierung über Toolbar">
<!ENTITY foxyproxy.leftclicksb.label "Linksklick">
<!ENTITY foxyproxy.leftclicksb.accesskey "L">
<!ENTITY foxyproxy.leftclicksb.tooltip "Aktion bei Linksklick auf FoxyProxy in der Statuszeile">
<!ENTITY foxyproxy.middleclicksb.label "Mittelklick">
<!ENTITY foxyproxy.middleclicksb.accesskey "M">
<!ENTITY foxyproxy.middleclicksb.tooltip "Aktion bei Mittelklick auf FoxyProxy in der Statuszeile">
<!ENTITY foxyproxy.rightclicksb.label "Rechtsklick">
<!ENTITY foxyproxy.rightclicksb.accesskey "R">
<!ENTITY foxyproxy.rightclicksb.tooltip "Aktion bei Rechtsklick auf FoxyProxy in der Statuszeile">
<!ENTITY foxyproxy.leftclicktb.label "Linksklick">
<!ENTITY foxyproxy.leftclicktb.accesskey "L">
<!ENTITY foxyproxy.leftclicktb.tooltip "Aktion bei Linksklick auf FoxyProxy im Toolbar">
<!ENTITY foxyproxy.middleclicktb.label "Mittelklick">
<!ENTITY foxyproxy.middleclicktb.accesskey "M">
<!ENTITY foxyproxy.middleclicktb.tooltip "Aktion bei Mittelklick auf FoxyProxy im Toolbar">
<!ENTITY foxyproxy.rightclicktb.label "Rechtsklick">
<!ENTITY foxyproxy.rightclicktb.accesskey "R">
<!ENTITY foxyproxy.rightclicktb.tooltip "Aktion bei Rechtsklick auf FoxyProxy im Toolbar">
<!ENTITY foxyproxy.click.options "Zeigt den Optionsdialog">
<!ENTITY foxyproxy.click.cycle "Zyklischer Wechsel durch die Modi">
<!ENTITY foxyproxy.click.contextmenu "Zeigt das Kontextmenü">
<!ENTITY foxyproxy.click.reloadcurtab "Aktuellen Tab neu laden">
<!ENTITY foxyproxy.click.reloadtabsinbrowser "Alle Tabs im aktuellen Fenster neu laden">
<!ENTITY foxyproxy.click.reloadtabsinallbrowsers "Alle Tabs in allen Fenstern neu laden">
<!ENTITY foxyproxy.click.removeallcookies "Entferne alle Cookies">
<!ENTITY foxyproxy.includeincycle.label "Schließe diesen Proxy beim zyklischen Wechsel per Klick auf Statuszeile oder Toolbar ein (Globale Einstellungen-&gt;Aktivierung über Statuszeile/Toolbar-&gt;Zyklischer Wechsel durch Modi muß ausgewählt sein)">
<!ENTITY foxyproxy.includeincycle.accesskey "W">
<!ENTITY foxyproxy.includeincycle.tooltip "Schließe diesen Proxy beim Klick auf Statuszeile/Toolbar ein">
<!ENTITY foxyproxy.changes.msg1 "Hilfe! Wo sind die Einstellungen für HTTP, SSL, FTP, Gopher und SOCKS?">
<!ENTITY foxyproxy.newGUI.popup.height "270px">
<!ENTITY foxyproxy.newGUI.popup.width "400px">
<!ENTITY foxyproxy.newGUI1.label "Der alte FoxyProxy Einstellungsdialog war stark an den Firefox-Dialog für Verbindungseinstellungen angelehnt, der wiederum nahezu identisch den Proxy-Einstellungsdialog des uralten Browsers Mosaic 2.1.1 von 1996 abbildete. Ein Problem mit dieser Art von Dialogen ist ihre begrenzte Fähigkeit zur Unterscheidung verschiedener Protokolle beim Routing. Browser des 21. Jahrhunderts - wie Firefox - unterstützen viel mehr Protokolle als nur HTTP, SSL, FTP und Gopher. Die alten Dialoge wären ganz klar zu unhandlich, um jedes mögliche Protokoll einschließen zu können.">
<!ENTITY foxyproxy.newGUI2.label "Da FoxyProxy über Muster mit Wildcards und regulären Ausdrücken bereits das Routing per Protokoll unterstützt, ist das Auflisten der Protokolle auf diesem Dialog überflüssig. Ab Version 2.5 wurde die Liste der Protokolle aus dem Proxy-Einstellungsdialog entfernt. Diese Entscheidung reduziert die Funktionalität nicht, sondern ermöglicht eine einfachere Oberfläche. Falls Sie Routing per Protokoll benötigen, sollten Sie Whitelist- und Blacklist-Muster mit gezielter Unterscheidung des Schema-/Protokoll-Anteils des Musters definieren (z.B. ftp://*.yahoo.com/*, *://leahscape.com/*, etc.)">
<!ENTITY foxyproxy.newGUI4.label "Klicken Sie hier für weitere Informationen">
<!ENTITY foxyproxy.error.msg.label "Fehlermeldung">
<!ENTITY foxyproxy.pac.result.label "PAC Resultat">
<!ENTITY foxyproxy.options.width "666">
<!ENTITY foxyproxy.options.height "477">
<!ENTITY foxyproxy.torwiz.width "660">
<!ENTITY foxyproxy.torwiz.height "375">
<!ENTITY foxyproxy.addeditproxy.width "660">
<!ENTITY foxyproxy.addeditproxy.height "470">

View File

@ -0,0 +1,136 @@
extensions.foxyproxy@eric.h.jung.description=Gewinne deine Privatsphäre zurück!
foxyproxy=FoxyProxy
tor=Tor
privoxy=Privoxy
settings.error=Fehler beim Lesen der Einstellungen
error=Fehler
welcome=Willkommen zu FoxyProxy!
yes=Ja
no=Nein
disabled=Inaktiv
torwiz.configure=Soll FoxyProxy für den Gebrauch von Tor konfiguriert werden?
torwiz.with.without.privoxy=Wird Tor mit oder ohne Privoxy verwendet?
torwiz.with=mit
torwiz.without=ohne
torwiz.privoxy.not.required=Hinweis: Seit Firefox 1.5 wird Privoxy nicht mehr für die Verwendung von Firefox mit Tor benötigt. Privoxy bietet Mehrwert in Form von Inhaltsfilterung, aber es ist nicht zwangsläufig erforderlich. Soll Firefox trotzdem Tor über Privoxy verwenden?
torwiz.port=Bitte geben sie den Port ein, auf dem %S horcht. Falls unbekannt, verwenden sie einfach den Standardwert.
torwiz.nan=Dies ist keine Portnummer.
torwiz.proxy.notes=Proxy über das Tor-Netzwerk - http://tor.eff.org
torwiz.google.mail=Google Mail
torwiz.pattern=http://*mail.google.com/*
torwiz.congratulations=Herzlichen Glückwunsch! FoxyProxy wurde erfolgreich für die Verwendung von Tor konfiguriert. Bitte stellen sie sicher, dass Tor gestartet ist, bevor sie URLs besuchen, für die das Tor-Netzwerk benutzt werden soll. Falls sie FoxyProxy für die Verwendung von Privoxy konfiguriert haben, stellen sie bitte sicher, dass dieses ebenfalls gestartet ist.
torwiz.cancelled=Der FoxyProxy Tor-Wizard wurde abgebrochen.
mode.patterns.label=Verwende Proxies entsprechend ihrer konfigurierten Muster und Prioritäten
mode.patterns.accesskey=P
mode.patterns.tooltip=Verwende Proxies entsprechend ihrer konfigurierten Muster und Prioritäten
mode.custom.label=Verwende Proxy "%S" für alle URLs
mode.custom.tooltip=Verwende Proxy "%S" für alle URLs
mode.disabled.label=Deaktiviere FoxyProxy vollständig
mode.disabled.accesskey=K
mode.disabled.tooltip=Deaktiviere FoxyProxy vollständig
more.label=Weiter
more.accesskey=W
more.tooltip=Zeige weitere Optionen
invalid.url=Die für automatische Proxy-Konfiguration angegebene URL ist ungültig.
protocols.error=Bitte geben sie ein oder mehrere Protokolle für den Proxy an.
noport2=Zu diesem Host muß ein Port angegeben werden.
nohost2=Zu diesem Port muß ein Host-Name angegeben werden.
nohostport=Host-Name und Port müssen angegeben werden.
torwiz.nopatterns=Es wurden keine URL-Muster für die Whitelist (inklusiv) angegeben, daher wird das Tor Netzwerk nicht verwendet werden. Dennoch fortfahren?
months.long.1=Januar
months.short.1=Jan
months.long.2=Februar
months.short.2=Feb
months.long.3=März
months.short.3=Mär
months.long.4=April
months.short.4=Apr
months.long.5=Mai
months.short.5=Mai
months.long.6=Juni
months.short.6=Jun
months.long.7=Juli
months.short.7=Jul
months.long.8=August
months.short.8=Aug
months.long.9=September
months.short.9=Sep
months.long.10=Oktober
months.short.10=Okt
months.long.11=November
months.short.11=Nov
months.long.12=Dezember
months.short.12=Dez
days.long.1=Sonntag
days.short.1=So
days.long.2=Montag
days.short.2=Mo
days.long.3=Dienstag
days.short.3=Di
days.long.4=Mittwoch
days.short.4=Mi
days.long.5=Donnerstag
days.short.5=Do
days.long.6=Freitag
days.short.6=Fr
days.long.7=Samstag
days.short.7=Sa
timeformat=dd.mm.yyyy HH:nn:ss:zzz
file.select=Datei für die Speicherung der Einstellungen auswählen
manual=Manuell
auto=Auto
direct=Direkt
delete.proxy.confirm=Sind sie sicher, dass sie den Proxy löschen wollen?
pattern.required=Es muss ein Muster angegeben werden.
pattern.invalid.regex=%S ist kein gültiger regulärer Ausdruck.
proxy.error.for.url=Fehler beim Ermitteln des Proxys für %S
proxy.default.settings.used=FoxyProxy wird für diese URL nicht verwendet - es werden die Firefox-Standardeinstellungen benutzt
proxy.all.urls=Alle URLs wurden für die Benutzung dieses Proxys konfiguriert
pac.status=FoxyProxy PAC-Status
pac.status.loadfailure=Fehler beim Laden der PAC für Proxy "%S"
pac.status.success=PAC für Proxy "%S" geladen
pac.status.error=Fehler in PAC für Proxy "%S"
error.noload=Fehler. Bitte benachrichtigen sie das FoxyProxy-Entwicklungsteam. Es werden keine privaten Daten übermittelt, aber die Ressource kann leider nicht geladen werden. Exception-Code ist %S
proxy.name.required=Bitte geben sie auf dem Tab "Allgemeine Einstellungen" einen Namen für diesen Proxy an.
proxy.default=Default
proxy.default.notes=Diese Einstellungen werden verwendet, wenn keines der konfigurierten Muster eine URL akzeptiert.
proxy.default.match.name=Alle
delete.proxy.default=Proxy kann nicht gelöscht werden.
copy.proxy.default=Proxy kann nicht kopiert werden.
logg.maxsize.change=Soll das Log wirklich gelöscht werden?
logg.maxsize.maximum=Empfohlene Maximalgröße ist 9999. Größere Werte führen zu einem höheren Speicherverbrauch und können die Performance beeinträchtigen. Dennoch übernehmen?
proxy.random=Proxy wurde zufällig ausgewählt
mode.random.label=Verwende zufällige Proxies für alle URLs (alle Muster und Prioritäten werden ignoriert)
mode.random.accesskey=Z
mode.random.tooltip=Lade alle URLs über zufällige Proxies (alle Muster und Prioritäten werden ignoriert)
random=Zufällig
random.applicable=Diese Option ist nur wirksam im Modus "Verwende zufällige Proxies für alle URLs (alle Muster und Prioritäten werden ignoriert)"
superadd.error=Konfigurationsfehler. %S wurde deaktiviert.
superadd.notify=Proxy %S
superadd.url.added=Muster %S wurde Proxy "%S" zugeordnet.
autoadd.pattern.label=Dynamisches Muster
quickadd.pattern.label=Dynamisches QuickAdd Muster
torwiz.proxydns=Sollen DNS-Anfragen über Tor geleitet werden? Falls sie nicht sicher sind, wählen sie "Ja"
superadd.verboten2=%S kann nicht aktiviert werden, da entweder kein Proxy definiert ist oder alle Proxies deaktiviert sind.
autoadd.notice=Bitte beachten: Die automatische Proxy-Zuordnung beeinflusst die Ladedauer aller Webseiten. Je komplexer das Suchmuster und je größer eine Webseite, desto länger benötigt der Abgleich mit dem Suchmuster. Falls sie deutliche Verzögerungen beobachten, deaktivieren sie bitte die automatische Proxy-Zuordnung.\n\nEs wird empfohlen, QuickAdd statt AutoAdd zu verwenden.
autoadd.notice2=
autoconfurl.test.success=Die PAC wurde gefunden, geladen und erfolgreich eingelesen
autoconfurl.test.fail=Ein Problem ist aufgetreten beim Finden, Laden oder Einlesen der PAC:\nHTTP Status-Code: %S\nException: %S
none=Keine
delete.settings.ask=Wollen sie die in %S gespeicherten FoxyProxy-Einstellungen löschen?
delete.settings.confirm=%S wird gelöscht, sobald alle Browser geschlossen sind.
no.wildcard.characters=Das Muster enthält keine Wildcard-Zeichen und akzeptiert daher nur exakt "%S". Dies ist unüblich für FoxyProxy, und es bedeutet wahrscheinlich, dass ein Fehler im Muster vorliegt oder dass sie die Arbeitsweise von FoxyProxy-Mustern nicht verstanden haben. Dennoch fortsetzen?
message.stop=Diese Meldung in Zukunft nicht mehr anzeigen
log.save=Log speichern
log.saved2=Das Log wurde in %S gespeichert. Soll es jetzt angezeigt werden?
log.nourls.url=Nicht geloggt
log.scrub=Existierende Log-Einträge von URLs löschen?
no.white.patterns=Sie haben keine URL-Muster für die Whitelist (inklusiv) eingegeben. Diese bedeutet, dass der Proxy nicht verwendet wird. Dennoch fortsetzen?
quickadd.quickadd.canceled=QuickAdd wurde abgebrochen, da die aktuelle URL schon vom existierenden Muster "%S" in Proxy "%S" abgedeckt wird
quickadd.nourl=Aktuelle URL kann nicht geladen werden
cookies.allremoved=Alle Cookies entfernt
route.error=Fehler bei der Ermittlung des Proxy Hosts
route.exception=Exception bei der Ermittlung des Proxy Hosts für %S
see.log=Weitere Informationen im Log.
pac.select=PAC-Datei auswählen
pac.files=PAC-Dateien

View File

@ -0,0 +1,55 @@
<!-- switched from xhtml to html because of BabelZilla WTS adds extraneous html tags on locale download -->
<html>
<head>
<style type="text/css">
table {
border-width: 0px;
border-spacing: 2px;
border-style: none;
border-color: white;
border-collapse: separate;
background-color: rgb(250, 240, 230);
font-size: x-small;
font-family: verdana, sans-serif;
}
table td,table th {
border-width: 1px;
padding: 1px;
border-style: groove;
border-color: green;
background-color: rgb(250, 240, 230);
vertical-align: top;
font-size: x-small;
font-family: verdana, sans-serif;
}
p {background-color: white; font-size: x-small; font-family: verdana, sans-serif;}
body {font-family: verdana, sans-serif;}
h3 {font-size: small;}
h4 {font-size: x-small;}
</style>
</head>
<body>
<h3>URL-Muster</h3>
<p>Bevor Firefox eine URL lädt, fragt er FoxyProxy, ob ein Proxy benutzt werden soll.
FoxyProxy beantwortet diese Frage, indem es versucht, die aktuelle URL mit allen definierten URL-Mustern abzugleichen.
Der einfachste Weg zur Definition von URL-Mustern sind Wildcards.</p>
<h4><a name="wildcards">Wildcards</a></h4>
<p>Wildcards sind in der Computerwelt allgegenwärtig; vermutlich sind Sie ihnen schon einmal begegnet.
Der Stern (*) steht als Platzhalter für null oder mehrere beliebige andere Zeichen,
und das Fragezeichen (?) steht als Platzhalter für ein beliebiges anderes Zeichen.
</p>
<p>Komplexere Suchbedingungen können mit regulären Ausdrücken realisiert werden. Für Details klicken Sie bitte die "Hilfe" Schaltfläche.</p>
<h4>Wildcard Beispiele</h4>
<table>
<thead><tr><th>URL-Muster</th><th>einige Übereinstimmungen</th><th>einige Nicht-Übereinstimmungen</th></tr></thead>
<tr><td>*://*.yahoo.com/*</td><td>Alles in der Domäne von Yahoo</td><td>http://mail.google.com/</td></tr>
<tr><td>*://mail.yahoo.com/*</td><td>http://mail.yahoo.com/<br/>http://mail.yahoo.com/clownshoes/<br/>http://mail.yahoo.com/inbox/123.html<br/>ftp://mail.yahoo.com</td><td>http://maps.yahoo.com</td></tr>
<tr><td>http://??.wikipedia.org/wiki/Clown</td><td>http://en.wikipedia.org/wiki/Clown<br/>http://de.wikipedia.org/wiki/Clown<br/>http://cs.wikipedia.org/wiki/Clown</td><td>https://en.wikipedia.org/wiki/Clown<br/>http://de.wikipedia.org/wiki/Clown/<br/>ftp://en.wikipedia.org/wiki/Clown</td></tr>
<tr><td>http://digg.com/</td><td>http://digg.com/</td><td>http://digg.com<br/>http://www.digg.com/</td></tr>
<tr><td>*://*.asimov.???/*</td><td>ftp://ftp.asimov.net/<br/>ftp://ftp.asimov.com/theory.html<br/>http://bear.asimov.net/mom/<br/>https://isaac.asimov.org/hercules<br/>gopher://asimov.net/</td>
<td>ftp://ftp.asimov.co.uk<br/>http://isaac.home.com/tin.php</td></tr>
<tr><td>*</td><td><i>Alle URLs</i></td><td>&nbsp;</td></tr>
</table>
</body>
</html>

View File

@ -0,0 +1,427 @@
<!ENTITY foxyproxy.label "FoxyProxy">
<!ENTITY foxyproxy.accesskey "o">
<!ENTITY foxyproxy.tooltip "FoxyProxy">
<!ENTITY foxyproxy.optionsdialog.label "Επιλογές FoxyProxy">
<!ENTITY foxyproxy.options.label "Επιλογές">
<!ENTITY foxyproxy.options.accesskey "Ε">
<!ENTITY foxyproxy.options.tooltip "Άνοιγμα του διαλόγου επιλογών">
<!ENTITY foxyproxy.tree.pickertooltiptext.label "Κάντε κλικ για να επιλέξετε ποιές στήλες θα εμφανίζονται">
<!ENTITY foxyproxy.proxy.name.label "Όνομα διαμεσολαβητή">
<!ENTITY foxyproxy.proxy.name.accesskey "Ο">
<!ENTITY foxyproxy.proxy.name.tooltip "Όνομα διαμεσολαβητή">
<!ENTITY foxyproxy.proxy.notes.label "Σημειώσεις διαμεσολαβητή">
<!ENTITY foxyproxy.proxy.notes.accesskey "Σ">
<!ENTITY foxyproxy.proxy.notes.tooltip "Σημειώσεις διαμεσολαβητή">
<!ENTITY foxyproxy.pattern.label "Πρότυπο">
<!ENTITY foxyproxy.pattern.type.label "Τύπος προτύπου">
<!ENTITY foxyproxy.whitelist.blacklist.label "Λίστα επιτρεπόμενων (συμπεριληπτική) ή λίστα μη επιτρεπόμενων (αποριπτική)">
<!ENTITY foxyproxy.pattern.name.label "Όνομα προτύπου">
<!ENTITY foxyproxy.pattern.name.accesskey "ν">
<!ENTITY foxyproxy.pattern.name.tooltip "Όνομα του προτύπου">
<!ENTITY foxyproxy.url.pattern.label "Πρότυπο URL">
<!ENTITY foxyproxy.url.pattern.accesskey "υ">
<!ENTITY foxyproxy.url.pattern.tooltip "Πρότυπο URL">
<!ENTITY foxyproxy.enabled.label "Ενεργοποιημένο">
<!ENTITY foxyproxy.enabled.accesskey "ν">
<!ENTITY foxyproxy.enabled.tooltip "Εναλλαγή ενεργοποίησης/απενεργοποίησης">
<!ENTITY foxyproxy.delete.selection.label "Διαγραφή">
<!ENTITY foxyproxy.delete.selection.accesskey "Δ">
<!ENTITY foxyproxy.delete.selection.tooltip "Διαγραφή του τρέχοντος επιλεγμένου στοιχείου">
<!ENTITY foxyproxy.edit.selection.label "Επεξεργασία">
<!ENTITY foxyproxy.edit.selection.accesskey "π">
<!ENTITY foxyproxy.edit.selection.tooltip "Επεξεργασία του τρέχοντος επιλεγμένου στοιχείου">
<!ENTITY foxyproxy.help.label "Περιεχόμενα βοήθειας">
<!ENTITY foxyproxy.help.accesskey "Β">
<!ENTITY foxyproxy.help.tooltip "Προβολή βοήθειας">
<!ENTITY foxyproxy.close.label "Κλείσιμο">
<!ENTITY foxyproxy.close.accesskey "Κ">
<!ENTITY foxyproxy.close.tooltip "Κλείσιμο παραθύρου">
<!ENTITY foxyproxy.about.label "Περί">
<!ENTITY foxyproxy.about.accesskey "Π">
<!ENTITY foxyproxy.about.tooltip "Ανοίγει τον διάλογο «περί»">
<!ENTITY foxyproxy.online.label "Το FoxyProxy στο διαδίκτυο">
<!ENTITY foxyproxy.online.accesskey "ί">
<!ENTITY foxyproxy.online.tooltip "Επισκεφθείτε τον ιστότοπο του FoxyProxy">
<!ENTITY foxyproxy.tor.label "Βοηθός Tor">
<!ENTITY foxyproxy.tor.accesskey "θ">
<!ENTITY foxyproxy.tor.tooltip "Βοηθός Tor">
<!ENTITY foxyproxy.copy.selection.label "Αντιγραφή">
<!ENTITY foxyproxy.copy.selection.accesskey "Α">
<!ENTITY foxyproxy.copy.selection.tooltip "Αντιγράφει την επιλογή">
<!ENTITY foxyproxy.mode.label "Επιλογή τρόπου λειτουργίας">
<!ENTITY foxyproxy.auto.url.label "URL αυτόματης ρύθμισης διαμεσολαβητή">
<!ENTITY foxyproxy.auto.url.accesskey "α">
<!ENTITY foxyproxy.auto.url.tooltip "Εισάγετε το URL του αρχείου PAC">
<!ENTITY foxyproxy.port.label "Θύρα">
<!ENTITY foxyproxy.port.accesskey "Θ">
<!ENTITY foxyproxy.port.tooltip "Θύρα">
<!ENTITY foxyproxy.socks.proxy.label "Διαμεσολαβητής SOCKS">
<!ENTITY foxyproxy.socks.proxy.accesskey "λ">
<!ENTITY foxyproxy.socks.proxy.tooltip "URL διαμεσολαβητή SOCKS">
<!ENTITY foxyproxy.socks.v4 "SOCKS v4/4a">
<!ENTITY foxyproxy.socks.v5 "SOCKS v5">
<!ENTITY foxyproxy.addeditpattern.title "Προσθήκη/Επεξεργασία προτύπου">
<!ENTITY foxyproxy.wildcard.label "Χαρακτήρες μπαλαντέρ">
<!ENTITY foxyproxy.wildcard.accesskey "Χ">
<!ENTITY foxyproxy.wildcard.tooltip "Διευκρινήζει ότι το πρότυπο URL περιέχει χαρακτήρες μπαλαντέρ και δεν είναι κανονική έκφραση">
<!ENTITY foxyproxy.wildcard.example.label "Παράδειγμα : *mail.yahoo.com/*">
<!ENTITY foxyproxy.regex.label "Κανονική έκφραση">
<!ENTITY foxyproxy.regex.accesskey "Κ">
<!ENTITY foxyproxy.regex.tooltip "Διευκρινήζει ότι το πρότυπο URL είναι κανονική έκφραση">
<!ENTITY foxyproxy.regex.example.label "Παράδειγμα : http?://.*\.mail\.yahoo\.com/.*">
<!ENTITY foxyproxy.version "Έκδοση">
<!ENTITY foxyproxy.createdBy "Δημιουργήθηκε από">
<!ENTITY foxyproxy.copyright "Πνευματικά δικαιώματα">
<!ENTITY foxyproxy.rights "Με την επιφύλαξη παντώς δικαιώματος">
<!ENTITY foxyproxy.released "Δημοσιεύεται σύμφωνα με την άδεια χρήσης GPL">
<!ENTITY foxyproxy.thanks "Ευχαριστούμε ειδικά τους :">
<!ENTITY foxyproxy.translations "Μεταφράσεις :">
<!ENTITY foxyproxy.tab.general.label "Γενικά">
<!ENTITY foxyproxy.tab.general.accesskey "Γ">
<!ENTITY foxyproxy.tab.general.tooltip "Διαχείριση γενικών ρυθμίσεων διαμεσολαβητή">
<!ENTITY foxyproxy.tab.proxy.label "Λεπτομέρειες διαμεσολαβητή">
<!ENTITY foxyproxy.tab.proxy.accesskey "Λ">
<!ENTITY foxyproxy.tab.proxy.tooltip "Διαχείριση λεπτομερείων διαμεσολαβητή">
<!ENTITY foxyproxy.tab.patterns.label "Πρότυπα">
<!ENTITY foxyproxy.tab.patterns.accesskey "Π">
<!ENTITY foxyproxy.tab.patterns.tooltip "Διαχείριση προτύπων URL">
<!ENTITY foxyproxy.add.title "Ρυθμίσεις διαμεσολαβητή">
<!ENTITY foxyproxy.pattern.description "Εδώ μπορείτε να ορίσετε το πότε θα γίνεται χρήση αυτού του διαμεσολαβητή και πότε όχι.">
<!ENTITY foxyproxy.pattern.matchtype.label "Το πρότυπο περιέχει :">
<!ENTITY foxyproxy.pattern.matchtype2.label "Το πρότυπο για την αναγνώριση μπλοκαρισμένων ιστοσελίδων περιέχει:">
<!ENTITY foxyproxy.pattern.template.matchtype.label "Το σχέδιο πρότυπου περιέχει:">
<!ENTITY foxyproxy.pattern.whiteblack.label "Συμπερίληψη/Απόρριψη URL">
<!ENTITY foxyproxy.add.option.direct.label "Άμεση σύνδεση με το διαδύκτιο (χωρίς διαμεσολαβητή)">
<!ENTITY foxyproxy.add.option.direct.accesskey "Α">
<!ENTITY foxyproxy.add.option.direct.tooltip "Να μη γίνεται χρήση διαμεσολαβητή - χρήση υπάρχουσας άμεσης σύνδεσης με το διαδύκτιο">
<!ENTITY foxyproxy.add.option.manual.label "Χειρονακτικές ρυθμίσεις διαμεσολαβητή">
<!ENTITY foxyproxy.add.option.manual.accesskey "Χ">
<!ENTITY foxyproxy.add.option.manual.tooltip "Ορίστε τις ρυθμίσεις του διαμεσολαβητή χειρονακτικά">
<!ENTITY foxyproxy.add.new.pattern.label "Προσθήκη νέου πρότυπου">
<!ENTITY foxyproxy.add.new.pattern.accesskey "Π">
<!ENTITY foxyproxy.add.new.pattern.tooltip "Προσθήκη νέου πρότυπου">
<!ENTITY foxyproxy.menubar.file.label "Αρχείο">
<!ENTITY foxyproxy.menubar.file.accesskey "ρ">
<!ENTITY foxyproxy.menubar.file.tooltip "Άνοιγμα του μενού «Αρχείο»">
<!ENTITY foxyproxy.menubar.help.label "Βοήθεια">
<!ENTITY foxyproxy.menubar.help.accesskey "Β">
<!ENTITY foxyproxy.menubar.help.tooltip "Άνοιγμα του μενού «Βοήθεια»">
<!ENTITY foxyproxy.mode.accesskey "τ">
<!ENTITY foxyproxy.mode.tooltip "Επιλέξτε πως θα ενεργοποιήται το FoxyProxy">
<!ENTITY foxyproxy.tab.proxies.label "Διαμεσολαβητές">
<!ENTITY foxyproxy.tab.proxies.accesskey "Δ">
<!ENTITY foxyproxy.tab.proxies.tooltip "Διαχείριση διαμεσολαβητών">
<!ENTITY foxyproxy.tab.global.label "Γενικές ρυθμίσεις">
<!ENTITY foxyproxy.tab.global.accesskey "Γ">
<!ENTITY foxyproxy.tab.global.tooltip "Διαχείριση γενικών ρυθμίσεων">
<!ENTITY foxyproxy.tab.logging.label "Συνδέσεις">
<!ENTITY foxyproxy.tab.logging.accesskey "Σ">
<!ENTITY foxyproxy.tab.logging.tooltip "Διαχείριση ρυθμίσεων συνδέσεων">
<!ENTITY foxyproxy.proxydns.label "Χρήση διαμεσολαβητή SOCKS για διερευνήσεις DNS">
<!ENTITY foxyproxy.proxydns.accesskey "Ν">
<!ENTITY foxyproxy.proxydns.tooltip "Αν επιλεγεί, οι διερευνήσεις DNS θα δρομολογούντε μέσω διαμεσολαβητή SOCKS">
<!ENTITY foxyproxy.proxydns.notice "Απαιτείται επανεκκίνιση του Firefox για να εφαρμοστούν οι νέες ρυθμίσεις. Να γίνει τώρα;">
<!ENTITY foxyproxy.showstatusbaricon.label "Προβολή εικονίδιου στη γραμμή κατάστασης">
<!ENTITY foxyproxy.showstatusbaricon.accesskey "γ">
<!ENTITY foxyproxy.showstatusbaricon.tooltip "Αν επιλεγεί, θα εμφανίζεται το εικονίδιο του FoxyProxy στη γραμμή κατάστασης">
<!ENTITY foxyproxy.showstatusbarmode.label "Προβολή κείμενου στη γραμμή κάταστασης">
<!ENTITY foxyproxy.showstatusbarmode.accesskey "γ">
<!ENTITY foxyproxy.showstatusbarmode.tooltip "Αν επιλεγεί, θα εμφανίζεται η κατάσταση λειτουργίας του FoxyProxy με κείμενο στη γραμμή κατάστασης">
<!ENTITY foxyproxy.storagelocation.label "Αποθήκευση ρυθμίσεων">
<!ENTITY foxyproxy.storagelocation.accesskey "θ">
<!ENTITY foxyproxy.storagelocation.tooltip "Η τοποθεσία αποθήκευσης των ρυθμίσεων του FoxyProxy">
<!ENTITY foxyproxy.tab.logging.timestamp.label "Χρονoσήμανση">
<!ENTITY foxyproxy.tab.logging.url.label "URL">
<!ENTITY foxyproxy.host.label "Όνομα κεντρικού υπολογιστή">
<!ENTITY foxyproxy.host.accesskey "κ">
<!ENTITY foxyproxy.host.tooltip "Κεντρικός υπολογιστής">
<!ENTITY foxyproxy.clear.label "Καθαρισμός">
<!ENTITY foxyproxy.clear.accesskey "Κ">
<!ENTITY foxyproxy.clear.tooltip "Καθαρισμός">
<!ENTITY foxyproxy.refresh.label "Ανανέωση">
<!ENTITY foxyproxy.refresh.accesskey "Α">
<!ENTITY foxyproxy.refresh.tooltip "Ανανέωση">
<!ENTITY foxyproxy.save.label "Αποθήκευση">
<!ENTITY foxyproxy.save.accesskey "Α">
<!ENTITY foxyproxy.save.tooltip "Αποθήκευση">
<!ENTITY foxyproxy.addnewproxy.label "Προσθήκη νέου διαμεσολαβητή">
<!ENTITY foxyproxy.addnewproxy.accesskey "Π">
<!ENTITY foxyproxy.addnewproxy.tooltip "Προσθήκη νέου διαμεσολαβητή">
<!ENTITY foxyproxy.whitelist.label "Λίστα επιτρεπόμενων">
<!ENTITY foxyproxy.whitelist.accesskey "ε">
<!ENTITY foxyproxy.whitelist.tooltip "Τα URL που συμφωνούν με το συγκεκριμένο πρότυπο θα φορτώνοντε μέσω αυτού του διαμεσολαβητή">
<!ENTITY foxyproxy.whitelist.description.label "Τα URL που συμφωνούν με το συγκεκριμένο πρότυπο θα φορτώνοντε μέσω αυτού του διαμεσολαβητή">
<!ENTITY foxyproxy.blacklist.label "Λίστα απαγορευμένων">
<!ENTITY foxyproxy.blacklist.accesskey "α">
<!ENTITY foxyproxy.blacklist.tooltip "Τα URL που συμφωνούν με αυτό το πρότυπο δεν θα φορτώνοντε μέσω αυτού του διαμεσολαβητή">
<!ENTITY foxyproxy.blacklist.description.label "Τα URL που συμφωνούν με αυτό το πρότυπο δεν θα φορτώνοντε μέσω αυτού του διαμεσολαβητή">
<!ENTITY foxyproxy.whiteblack.description.label "Τα πρότυπα της λίστας απαγορευμένων(απόριψης) έχουν προτεραιότητα σε σχέση με αυτά της λίστας επιτρεπόμενων(συμπεριληπτικά): Αν ένα URL συμφωνεί και με τα δυο για τον ίδιο διαμεσολαβητή, το URL δεν θα επιτραπεί να φορτωθεί από αυτόν.">
<!ENTITY foxyproxy.usingPFF.label1 "Χρησιμοποιώ τον">
<!ENTITY foxyproxy.usingPFF.label2 "Portable Firefox">
<!ENTITY foxyproxy.usingPFF.accesskey "o">
<!ENTITY foxyproxy.usingPFF.tooltip "Επιλέξτε το αν χρησιμοποιήτε τον Portable Firefox">
<!ENTITY foxyproxy.socks.version.label "Έκδοση SOCKS">
<!ENTITY foxyproxy.autopacurl.label "Αυτόματο PAC URL">
<!ENTITY foxyproxy.issocks.label "Διαμεσολαβητής SOCKS;">
<!ENTITY foxyproxy.issocks.accesskey "σ">
<!ENTITY foxyproxy.issocks.tooltip "Πρόκειται για διαμεσολαβητή δικτύου ή SOCKS;">
<!ENTITY foxyproxy.chinese.simplified "Κινέζικα (απλοποιημένα)">
<!ENTITY foxyproxy.chinese.traditional "Κινέζικα (Παραδοσιακά)">
<!ENTITY foxyproxy.croatian "Κροατικά">
<!ENTITY foxyproxy.czech "Τσέχικα">
<!ENTITY foxyproxy.danish "Δανέζικα">
<!ENTITY foxyproxy.dutch "Ολλανδικά">
<!ENTITY foxyproxy.english "Αγγλικά">
<!ENTITY foxyproxy.english.british "Αγγλικά (Ην. βασιλείου)">
<!ENTITY foxyproxy.french "Γαλλικά">
<!ENTITY foxyproxy.german "Γερμανικά">
<!ENTITY foxyproxy.greek "Ελληνικά">
<!ENTITY foxyproxy.hungarian "Ουγγαρέζικα">
<!ENTITY foxyproxy.italian "Ιταλικά">
<!ENTITY foxyproxy.persian "Περσικά">
<!ENTITY foxyproxy.polish "Πολωνικά">
<!ENTITY foxyproxy.portugese.brazilian "Πορτογαλικά (Βραζιλίας)">
<!ENTITY foxyproxy.portugese.portugal "Πορτογαλικά (Πορτογαλίας)">
<!ENTITY foxyproxy.romanian "Ρουμανικά">
<!ENTITY foxyproxy.russian "Ρώσικα">
<!ENTITY foxyproxy.slovak "Σλοβάκικα">
<!ENTITY foxyproxy.spanish.spain "Ισπανικά">
<!ENTITY foxyproxy.spanish.argentina "Ισπανικά (Αργεντινής)">
<!ENTITY foxyproxy.swedish "Σουηδικά">
<!ENTITY foxyproxy.thai.thailand "Τάι (Ταϊλάνδης">
<!ENTITY foxyproxy.turkish "Τουρκικά">
<!ENTITY foxyproxy.ukrainian "Ουκρανικά">
<!ENTITY foxyproxy.your.language "Η γλώσσα σας">
<!ENTITY foxyproxy.your.name.here "Το όνομα σας!">
<!ENTITY foxyproxy.moveup.label "Μετακίνηση πάνω">
<!ENTITY foxyproxy.moveup.tooltip "Ενισχύει την προτεραιότητα της τρέχουσας επιλογής">
<!ENTITY foxyproxy.moveup.accesskey "Μ">
<!ENTITY foxyproxy.movedown.label "Μετακίνηση κάτω">
<!ENTITY foxyproxy.movedown.tooltip "Μειώνει την προτεραιότητα της τρέχουσας επιλογής">
<!ENTITY foxyproxy.movedown.accesskey "Κ">
<!ENTITY foxyproxy.autoconfurl.view.label "Εμφάνιση">
<!ENTITY foxyproxy.autoconfurl.view.accesskey "Ε">
<!ENTITY foxyproxy.autoconfurl.view.tooltip "Εμφάνιση του αρχείου αυτόματων ρυθμίσεων">
<!ENTITY foxyproxy.autoconfurl.test.label "Έλεγχος">
<!ENTITY foxyproxy.autoconfurl.test.accesskey "λ">
<!ENTITY foxyproxy.autoconfurl.test.tooltip "Έλεγχος του αρχείου αυτόματων ρυθμίσεων">
<!ENTITY foxyproxy.autoconfurl.reload.label "Ανανέωση του αρχείου PAC κάθε:">
<!ENTITY foxyproxy.autoconfurl.reload.accesskey "ν">
<!ENTITY foxyproxy.autoconfurl.reload.tooltip "Αυτόματη ανανέωση του αρχείου PAC σε καθορισμένο χρόνο">
<!ENTITY foxyproxy.minutes.label "λεπτά">
<!ENTITY foxyproxy.minutes.tooltip "λεπτά">
<!ENTITY foxyproxy.logging.maxsize.label "Μέγιστο μέγεθος αναδίπλωσης ιστορικού">
<!ENTITY foxyproxy.logging.maxsize.accesskey "Μ">
<!ENTITY foxyproxy.logging.maxsize.tooltip "Μέγιστος αριθμός εγγραφών στο ιστορικό καταγραφής πριν αυτό αναδιπλώθει από την αρχή">
<!ENTITY foxyproxy.logging.maxsize.button.label "Ορισμός">
<!ENTITY foxyproxy.logging.maxsize.button.accesskey "Ο">
<!ENTITY foxyproxy.logging.maxsize.button.tooltip "Ορίζει τον μέγιστο αριθμό εγγραφών του ιστορικού καταγραφής πριν αναδιπλώθει από την αρχή">
<!ENTITY foxyproxy.random.label "Φόρτωση των URL μέσω τυχαίων διαμεσολαβητών (αγνόωντας κάθε πρότυπο και προτεραιότητα)">
<!ENTITY foxyproxy.random.accesskey "Τ">
<!ENTITY foxyproxy.random.tooltip "Φόρτωση των URL μέσω τυχαίων διαμεσολαβητών (αγνόωντας κάθε πρότυπο και προτεραιότητα)">
<!ENTITY foxyproxy.random.includedirect.label "Συμπεριλήψη διαμεσολαβητών που έχουν ρυθμίστει ως άμεσες συνδέσεις με το διαδίκτυο">
<!ENTITY foxyproxy.random.includedirect.accesskey "Σ">
<!ENTITY foxyproxy.random.includedirect.tooltip "Οι διαμεσολαβητές που έχουν ρυθμιστεί ως άμεσες συνδέσεις με το διαδίκτυο συμπεριλαμβάνονται στην επιλογή τυχαίου διαμεσολαβητή">
<!ENTITY foxyproxy.random.includedisabled.label "Συμπερίληψη απενεργοποιημένων διαμεσολαβητών">
<!ENTITY foxyproxy.random.includedisabled.accesskey "Α">
<!ENTITY foxyproxy.random.includedisabled.tooltip "Οι διαμεσολαβητές που έχουν απενεργοποιηθεί συμπεριλαμβάνονται στην επιλογή τυχαίου διαμεσολαβητή">
<!ENTITY foxyproxy.random.settings.label "Επιλογή τυχαίου διαμεσολαβητή">
<!ENTITY foxyproxy.random.settings.accesskey "τ">
<!ENTITY foxyproxy.random.settings.tooltip "Ρυθμίσεις που επηρεάζουν την επιλογή τυχαίου διαμεσολαβητή">
<!ENTITY foxyproxy.tab.autoadd.label "Αυτόματη προσθήκη">
<!ENTITY foxyproxy.tab.autoadd.accesskey "Α">
<!ENTITY foxyproxy.tab.autoadd.tooltip "Διαχείριση ρυθμίσεων αυτόματης προσθήκης">
<!ENTITY foxyproxy.autoadd.description "Καθορίστε ένα πρότυπο για την αναγνώριση μπλοκαρισμένων ιστοτόπων. Όταν το πρότυπο αυτό βρεθεί σε μια σελίδα, γίνεται αυτόματη προσθήκη σε διαμεσολαβητή ενός πρότυπου σύμφωνου με το URL της σελίδας και ανανεώνεται προαιρετικά.">
<!ENTITY foxyproxy.autoadd.pattern.label "Πρότυπο αναγνώρισης μπλοκαρισμένων ιστότοπων">
<!ENTITY foxyproxy.autoadd.pattern.accesskey "Π">
<!ENTITY foxyproxy.autoadd.pattern.tooltip "Πρότυπο που χρησιμοποιήται για την αναγνώριση μπλοκαρισμένων ιστότοπων">
<!ENTITY foxyproxy.autoadd.wildcard.example.label "Παράδειγμα : «Δεν έχετε εξουσιοδότηση για να δείτε αυτή τη σελίδα»">
<!ENTITY foxyproxy.autoadd.regex.example.label "Παράδειγμα : .*Ο ιστότοπος.* έχει μπλοκαριστεί.*">
<!ENTITY foxyproxy.autoadd.proxy.label "Αυτόματη προσθήκη προτύπων στον διαμεσολαβητή">
<!ENTITY foxyproxy.autoadd.proxy.accesskey "π">
<!ENTITY foxyproxy.autoadd.proxy.tooltip "Ορισμός του διαμεσολαβητή στον οποίο θα γίνεται αυτόματη προσθήκη προτύπων">
<!ENTITY foxyproxy.pattern.template.label "Σχέδιο προτύπου URL">
<!ENTITY foxyproxy.pattern.template.accesskey "Σ">
<!ENTITY foxyproxy.pattern.template.tooltip "Σχέδιο προτύπου URL">
<!ENTITY foxyproxy.pattern.template.example.label1 "Παράδειγμα για">
<!ENTITY foxyproxy.pattern.template.example.label2 "http://fred:secret@mail.foo.com:8080/inbox/msg102.htm#subject?style=elegant">
<!ENTITY foxyproxy.pattern.template.currenturl.label "Τρέχον URL">
<!ENTITY foxyproxy.pattern.template.currenturl.accesskey "ρ">
<!ENTITY foxyproxy.pattern.template.currenturl.tooltip "URL της γραμμής πλοήγησης">
<!ENTITY foxyproxy.pattern.template.generatedpattern.label "Δημιουργημένο πρότυπο">
<!ENTITY foxyproxy.pattern.template.generatedpattern.accesskey "Δ">
<!ENTITY foxyproxy.pattern.template.generatedpattern.tooltip "Δυναμικά δημιουργημένο πρότυπο">
<!ENTITY foxyproxy.autoadd.reload.label "Ανανέωση σελίδας μετά την προσθήκη">
<!ENTITY foxyproxy.autoadd.reload.accesskey "Α">
<!ENTITY foxyproxy.autoadd.reload.tooltip "Αυτόματη ανανέωση σελίδας μετά την προσθήκη του προτύπου σε διαμεσολαβητή">
<!ENTITY foxyproxy.autoadd.notify.label "Ειδοποίηση όταν ενεργοποιηθεί η αυτόματη προσθήκη">
<!ENTITY foxyproxy.autoadd.notify.accesskey "ι">
<!ENTITY foxyproxy.autoadd.notify.tooltip "Σας ενημερώνει όταν μια σελίδα μπλοκαριστεί &amp; το πρότυπο URL προστεθεί σε διαμεσολαβητή">
<!ENTITY foxyproxy.graphics "Σχεδιασμός γραφικών και εικόνων από :">
<!ENTITY foxyproxy.website "Δημιουργία ιστοσελίδας από :">
<!ENTITY foxyproxy.contributions "Συνεισφορές από :">
<!ENTITY foxyproxy.pacloadnotification.label "Ειδοποίηση όταν φορτώνεται αρχείο αυτόματων ρυθμίσεων">
<!ENTITY foxyproxy.pacloadnotification.accesskey "δ">
<!ENTITY foxyproxy.pacloadnotification.tooltip "Προβολή αναδυόμενου όταν φορτώνεται ένα αρχείο PAC">
<!ENTITY foxyproxy.pacerrornotification.label "Ειδοποίηση για σφάλματα αρχείων αυτόματων ρυθμίσεων διαμεσολαβητή">
<!ENTITY foxyproxy.pacerrornotification.accesskey "ι">
<!ENTITY foxyproxy.pacerrornotification.tooltip "Προβολή αναδυόμενου όταν παρουσιάζονται σφάλματα αρχείων PAC">
<!ENTITY foxyproxy.toolsmenu.label "Προβολή εικονίδιου στο μενού εργαλείων">
<!ENTITY foxyproxy.toolsmenu.accesskey "Ε">
<!ENTITY foxyproxy.toolsmenu.tooltip "Προβολή εικονίδιου στο μενού εργαλείων του Firefox">
<!ENTITY foxyproxy.tip.label "Οδηγίες">
<!ENTITY foxyproxy.pactips.popup.height "15.4em">
<!ENTITY foxyproxy.pactips.popup.width "50em">
<!ENTITY foxyproxy.pactip1.label "Για αρχεία PAC που υπάρχουν στο δίσκο σας, χρησιμοποιήστε το πρωτόκολλο file://. Για παράδειγμα, file://c:/path/proxy.pac στα Windows ή file:///home/users/joe/proxy.pac σε Unix/Linux/Mac.">
<!ENTITY foxyproxy.pactip2.label "Για αρχεία PAC που υπάρχουν σε διακομιστή ftp, χρησιμοποιήστε το πρωτόκολλο ftp://. Για παράδειγμα, ftp://leahscape.com/path/proxy.pac">
<!ENTITY foxyproxy.pactip3.label "Μπορείτε επίσης να χρησιμοποιήσετε τα http://, https://, ή οποιοδήποτε άλλο υποστηριζόμενο πρωτόκολλο.">
<!ENTITY foxyproxy.contextmenu.label "Προβολή εικονίδιου στο μενού περιεχομένου">
<!ENTITY foxyproxy.contextmenu.accesskey "σ">
<!ENTITY foxyproxy.contextmenu.tooltip "Προβολή εικονίδιου στο μενού περιεχομένου">
<!ENTITY foxyproxy.quickadd.desc1 "Η άμεση προσθήκη προσθέτει ένα δυναμικό πρότυπο URL σε διαμεσολαβητή με το Alt-F2. Η συντόμευση Alt-F2 μπορεί να προσαρμοστεί με την χρήση της επέκτασης">
<!ENTITY foxyproxy.keyconfig.label "KeyConfig">
<!ENTITY foxyproxy.quickadd.desc2 ".">
<!ENTITY foxyproxy.quickadd.label "Άμεση προσθήκη">
<!ENTITY foxyproxy.quickadd.accesskey "μ">
<!ENTITY foxyproxy.quickadd.tooltip "Διαχείρηση ρυθμίσεων άμεσης προσθήκης">
<!ENTITY foxyproxy.quickadd.notify.label "Ειδοποίηση όταν ενεργοποιηθεί η άμεση προσθήκη">
<!ENTITY foxyproxy.quickadd.notify.accesskey "δ">
<!ENTITY foxyproxy.quickadd.notify.tooltip "Προβολή αναδυόμενου όταν ενεργοποιηθεί η άμεση προσθήκη">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.label "Ειδοποίηση όταν ακυρωθεί η άμεση προσθήκη">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.label2 "Η άμεση προσθήκη ακυρώνεται αυτόματα όταν πατήσετε το Alt-F2, αλλά το τρέχον URL ταιρίαζει με κάποιο ήδη υπάρχον πρότυπο της λίστας επιτρεπομένων του διαμεσολαβητή. Έτσι αποφεύγουμε την ύπαρξη διπλότυπων πρότυπων, που μπορούν να κάνουν δύσχρηστες τις ρυθμίσεις σας. Αυτή η ρύθμιση δεν ενεργοποιεί - απενεργοποιεί την ακύρωση, απλά ενεργοποιεί - απενεργοποιεί την ειδοποίηση όταν αυτή συμβεί.">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.accesskey "α">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.tooltip "Προβολή αναδυόμενου όταν η άμεση προσθήκη ενεργοποιηθεί και ακυρωθεί">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.popup.width "45em">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.popup.height "12.4em">
<!ENTITY foxyproxy.whatsthis "Τι είναι αυτό;">
<!ENTITY foxyproxy.quickadd.prompt.label "Ερώτηση για επεξεργασία και επιβεβαίωση πριν προστεθεί πρότυπο">
<!ENTITY foxyproxy.quickadd.prompt.accesskey "ε">
<!ENTITY foxyproxy.quickadd.prompt.tooltip "Να γίνεται ερώτηση για επεξεργασία και να απαιτείται επιβεβαίωση πριν προστεθεί πρότυπο σε διαμεσολαβητή">
<!ENTITY foxyproxy.quickadd.proxy.label "Προσθήκη προτύπου στον διαμεσολαβητή">
<!ENTITY foxyproxy.quickadd.proxy.accesskey "Δ">
<!ENTITY foxyproxy.quickadd.proxy.tooltip "Επιλέξτε τον διαμεσολαβητή στον οποίο θα προσθέσετε το πρότυπο">
<!ENTITY foxyproxy.bypasscache.label "Παράκαμψη της λανθάνουσας μνήμης του Firefox κατά την φόρτωση">
<!ENTITY foxyproxy.bypasscache.accesskey "Π">
<!ENTITY foxyproxy.bypasscache.tooltip "Η λανθάνουσα μνήμη του Firefox αγνοείται">
<!ENTITY foxyproxy.advancedmenus.label "Χρήση μενού για προχωρημένους">
<!ENTITY foxyproxy.advancedmenus.accesskey "χ">
<!ENTITY foxyproxy.advancedmenus.tooltip "Χρήση μενού για προχωρημένους (στο στυλ του FoxyProxy 2.2)">
<!ENTITY foxyproxy.importsettings.label "Εισαγωγή ρυθμίσεων">
<!ENTITY foxyproxy.importsettings.accesskey "ι">
<!ENTITY foxyproxy.importsettings.tooltip "Εισαγωγή ρυθμίσεων από αρχείο">
<!ENTITY foxyproxy.exportsettings.label "Εξαγωγή ρυθμίσεων">
<!ENTITY foxyproxy.exportsettings.accesskey "ξ">
<!ENTITY foxyproxy.exportsettings.tooltip "Εξαγωγή των ρυθμίσεων σε αρχείο">
<!ENTITY foxyproxy.importlist.label "Εισαγωγή λίστας διαμεσολαβητών">
<!ENTITY foxyproxy.importlist.accesskey "ι">
<!ENTITY foxyproxy.importlist.tooltip "Εισαγωγή μιας λίστας κειμένου με διαμεσολαβητές">
<!ENTITY foxyproxy.wildcard.reference.label "Πίνακας χαρακτήρων μπαλαντέρ">
<!ENTITY foxyproxy.wildcard.reference.accesskey "μ">
<!ENTITY foxyproxy.wildcard.reference.tooltip "Πίνακας αναφοράς χαρακτήρων μπαλαντέρ">
<!ENTITY foxyproxy.wildcard.reference.subtitle.label "Ο αστερίσκος (*) υποκαθιστά πολλούς χαρακτήρες (ή μηδέν χαρακτήρες) και το λατινικό ερωτηματικό (?) υποκαθιστά ένα μόνο χαρακτήρα">
<!ENTITY foxyproxy.wildcard.reference.mistakes "Συχνά σφάλματα κατά την συγγραφή προτύπων που περιέχουν χαρακτήρες μπαλαντέρ">
<!ENTITY foxyproxy.wildcard.reference.goal.label "Σκοπός">
<!ENTITY foxyproxy.wildcard.reference.goal1.label "Η συμπερίληψη όλων των σελίδων στον υποτομέα www του Myspace">
<!ENTITY foxyproxy.wildcard.reference.goal2.label "Η συμπερίληψη του τοπικού υπολογιστή">
<!ENTITY foxyproxy.wildcard.reference.goal3.label "Η συμπερίληψη όλων των υποτομέων και των σελίδων στο abc.com">
<!ENTITY foxyproxy.wildcard.reference.goal4.label "Η συμπερίληψη όλων των σελίδων του τομέα a.foo.com αλλά όχι και του b.foo.com">
<!ENTITY foxyproxy.wildcard.reference.correct.label "Σωστό">
<!ENTITY foxyproxy.wildcard.reference.correct2.label "Πρέπει να υπάρχουν δύο πρότυπα">
<!ENTITY foxyproxy.wildcard.reference.incorrect.label "Λάθος">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason.label "Αιτιολόγηση του λάθους">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason1.label "Εφόσον δεν υπάρχουν χαρακτήρες μπαλαντέρ, μόνο η αρχική σελίδα θα συμπεριληφθεί">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason2.label "Το FoxyProxy δεν αναγνωρίζει αυτή την μορφή σύνταξης">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason3.label "Δεν υπάρχουν χαρακτήρες μπαλαντέρ">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason4.label "Δεν υπάρχουν χαρακτήρες μπαλαντέρ">
<!ENTITY foxyproxy.wildcard.reference.popup.height "54em">
<!ENTITY foxyproxy.logging.noURLs.label "Να μην γίνεται αποθήκευση ή εμφάνιση URL">
<!ENTITY foxyproxy.logging.noURLs.accesskey "τ">
<!ENTITY foxyproxy.logging.noURLs.tooltip "Δεν θα γίνεται αποθήκευση των URL στη μνήμη RAM ή στον δίσκο">
<!ENTITY foxyproxy.ok.label "Εντάξει">
<!ENTITY foxyproxy.ok.accesskey "Ε">
<!ENTITY foxyproxy.ok.tooltip "Κλείσιμο παραθύρου">
<!ENTITY foxyproxy.pattern.template.reference.label "Πίνακας αναφοράς σχεδίων προτύπων">
<!ENTITY foxyproxy.pattern.template.reference.accesskey "Α">
<!ENTITY foxyproxy.pattern.template.reference.tooltip "Πίνακας αναφοράς σχεδίων προτύπων">
<!ENTITY foxyproxy.pattern.template.reference.subtitle.label "Τα σχέδια προτύπων URL καθορίζουν τη μορφή με την οποία γίνεται άμεση ή αυτόματη προσθήκη URL στους διαμεσολαβητές. Τα σχέδια υποστηρίζουν τους παρακάτω ειδικούς χαρακτήρες, οι οποίοι αντικαθιστωνταί με το αντίστοιχο τμήμα URL της γραμμής διευθύνσεων όταν ενεργοποιηθεί η άμεση ή αυτόματη προσθήκη.">
<!ENTITY foxyproxy.pattern.template.reference.specialstring.label "Ειδικό αλφαριθμητικό">
<!ENTITY foxyproxy.pattern.template.reference.subststring.label "Αντικαθίσταται με">
<!ENTITY foxyproxy.pattern.template.reference.example.label "Παράδειγμα">
<!ENTITY foxyproxy.pattern.template.reference.scheme.label "πρωτόκολλο">
<!ENTITY foxyproxy.pattern.template.reference.username.label "όνομα χρήστη">
<!ENTITY foxyproxy.pattern.template.reference.password.label "κωδικός">
<!ENTITY foxyproxy.pattern.template.reference.userpass.label "όνομα χρήστη και κωδικός με «:» και «@»">
<!ENTITY foxyproxy.pattern.template.reference.host.label "Κεντρικός υπολογιστής">
<!ENTITY foxyproxy.pattern.template.reference.port.label "θύρα">
<!ENTITY foxyproxy.pattern.template.reference.hostport.label "κεντρικός υπολογιστής και θύρα με «:»">
<!ENTITY foxyproxy.pattern.template.reference.prepath.label "αλφαριθμητικό πριν τη διαδρομή">
<!ENTITY foxyproxy.pattern.template.reference.path.label "διαδρομή (συμπεριλαμβάνει το όνομα αρχείου)">
<!ENTITY foxyproxy.pattern.template.reference.directory.label "κατάλογος">
<!ENTITY foxyproxy.pattern.template.reference.filebasename.label "βασικό όνομα αρχείου">
<!ENTITY foxyproxy.pattern.template.reference.fileextension.label "επέκταση αρχείου">
<!ENTITY foxyproxy.pattern.template.reference.filename.label "ολόκληρο το όνομα αρχείου">
<!ENTITY foxyproxy.pattern.template.reference.ref.label "τμήμα μετά το «#»">
<!ENTITY foxyproxy.pattern.template.reference.query.label "τμήμα μετά το «?»">
<!ENTITY foxyproxy.pattern.template.reference.spec.label "ολόκληρο το URL">
<!ENTITY foxyproxy.pattern.template.reference.popup.height "44em">
<!ENTITY foxyproxy.pattern.template.reference.popup.width "54em">
<!ENTITY foxyproxy.notifications.label "Ειδοποιήσεις">
<!ENTITY foxyproxy.notifications.accesskey "δ">
<!ENTITY foxyproxy.notifications.tooltip "Ρυθμίσεις ειδοποιήσεων">
<!ENTITY foxyproxy.indicators.label "Ενδείξεις">
<!ENTITY foxyproxy.indicators.accesskey "ξ">
<!ENTITY foxyproxy.indicators.tooltip "Ρυθμίσεις ενδείξεων">
<!ENTITY foxyproxy.misc.label "Διάφορα">
<!ENTITY foxyproxy.misc.accesskey "Δ">
<!ENTITY foxyproxy.misc.tooltip "Διάφορες ρυθμίσεις">
<!ENTITY foxyproxy.animatedicons.label "Εφέ κίνησης εικονίδιου όταν γίνεται χρήση του διαμεσολαβητή">
<!ENTITY foxyproxy.animatedicons.accesskey "κ">
<!ENTITY foxyproxy.animatedicons.tooltip "Εφέ κίνησης στο εικονίδιο όταν αυτός ο διαμεσολαβητής είναι ενεργός (πρέπει να έχει ενεργοποιηθεί και η επιλογή για εφέ κίνησης από τις γενικές ρυθμίσεις)">
<!ENTITY foxyproxy.statusbaractivation.label "Ενεργοποίηση γραμμής κατάστασης">
<!ENTITY foxyproxy.statusbaractivation.accesskey "κ">
<!ENTITY foxyproxy.statusbaractivation.tooltip "Ρυθμίσεις ενεργοποίησης γραμμής κατάστασης">
<!ENTITY foxyproxy.toolbaractivation.label "Ενεργοποίηση εργαλειοθήκης">
<!ENTITY foxyproxy.toolbaractivation.accesskey "ε">
<!ENTITY foxyproxy.toolbaractivation.tooltip "Ρυθμίσεις ενεργοποίησης εργαλειοθήκης">
<!ENTITY foxyproxy.leftclicksb.label "Αριστερό κλικ">
<!ENTITY foxyproxy.leftclicksb.accesskey "Α">
<!ENTITY foxyproxy.leftclicksb.tooltip "Επιλογή ένεργειας αριστερού κλικ στη γραμμή κατάστασης">
<!ENTITY foxyproxy.middleclicksb.label "Κεντρικό κλικ">
<!ENTITY foxyproxy.middleclicksb.accesskey "κ">
<!ENTITY foxyproxy.middleclicksb.tooltip "Επιλογή ένεργειας κεντρικού κλικ στη γραμμή κατάστασης">
<!ENTITY foxyproxy.rightclicksb.label "Δεξιό κλικ">
<!ENTITY foxyproxy.rightclicksb.accesskey "Δ">
<!ENTITY foxyproxy.rightclicksb.tooltip "Επιλογή ένεργειας δεξιού κλικ στη γραμμή κατάστασης">
<!ENTITY foxyproxy.leftclicktb.label "Αριστερό κλικ">
<!ENTITY foxyproxy.leftclicktb.accesskey "Α">
<!ENTITY foxyproxy.leftclicktb.tooltip "Επιλογή ενέργειας αριστερού κλικ στην εργαλειοθήκη">
<!ENTITY foxyproxy.middleclicktb.label "Κεντρικό κλικ">
<!ENTITY foxyproxy.middleclicktb.accesskey "Κ">
<!ENTITY foxyproxy.middleclicktb.tooltip "Επιλογή ενέργειας κεντρικού κλικ στην εργαλειοθήκη">
<!ENTITY foxyproxy.rightclicktb.label "Δεξιό κλικ">
<!ENTITY foxyproxy.rightclicktb.accesskey "Δ">
<!ENTITY foxyproxy.rightclicktb.tooltip "Επιλογή ενέργειας δεξιού κλικ στην εργαλειοθήκη">
<!ENTITY foxyproxy.click.options "Προβολή διαλόγου επιλογών">
<!ENTITY foxyproxy.click.cycle "Εναλλαγή τρόπου λειτουργίας">
<!ENTITY foxyproxy.click.contextmenu "Προβολή μενού περιεχομένου">
<!ENTITY foxyproxy.click.reloadcurtab "Ανανέωση τρέχουσας καρτέλας">
<!ENTITY foxyproxy.click.reloadtabsinbrowser "Ανανέωση όλων των καρτελών του παραθύρου">
<!ENTITY foxyproxy.click.reloadtabsinallbrowsers "Ανανέωση όλων των καρτελών σε όλα τα παράθυρα">
<!ENTITY foxyproxy.click.removeallcookies "Αφαίρεση όλων των cookies">
<!ENTITY foxyproxy.includeincycle.label "Συμπερίληψη στην εναλλαγή διαμεσολαβητών - με επιλογή της ρύθμισης «εναλλαγή τρόπου λειτουργίας» (γενικές ρυθμίσεις-&gt;ενεργοποίηση γραμμής κατάστασης/εργαλειοθήκης)">
<!ENTITY foxyproxy.includeincycle.accesskey "Σ">
<!ENTITY foxyproxy.includeincycle.tooltip "Συμπερίληψη αυτού του διαμεσολαβητή όταν γίνεται κλικ στο εικονίδο γραμμής κατάστασης/εργαλειοθήκης">
<!ENTITY foxyproxy.changes.msg1 "Που είναι οι ρυθμίσεις για HTTP, SSL, FTP, Gopher, και SOCKS;">
<!ENTITY foxyproxy.newGUI.popup.height "25em">
<!ENTITY foxyproxy.newGUI.popup.width "50em">
<!ENTITY foxyproxy.newGUI1.label "Ο παλιός διάλογος ρυθμίσεων διαμεσολαβητών του FoxyProxy ήταν βασισμένος και σχεδόν πανομοιότυπος με τον δίαλογο ρυθμίσεων σύνδεσης του Firefox, που με τη σειρά του ήταν σχεδόν πανομοιότυπος με τις ρυθμίσεις διαμεσολαβητών του απαρχαιωμένου περιηγητή Mosaic 2.1.1 του 1996. Το πρόβλημα με όλους αυτούς τους διαλόγους είναι η μειωμένη δυνατότητα διοχέτευσης κυκλοφορίας ανά πρωτόκολλο. Οι περιηγητές του 21ου αιώνα, όπως ο Firefox, μπορούν να χειριστούν πολλά περισσότερα πρωτόκολλα από τα HTTP, SSL, FTP, και GOPHER. Αυτοί οι διαλόγοι λοιπόν θα ήταν εξαιρετικά δύσχρηστοι αν επιχειρούσαμε να συμπεριλάβουμε όλα τα πρωτόκολλα.">
<!ENTITY foxyproxy.newGUI2.label "Εφόσον ούτως ή άλλως το FoxyProxy επιτρέπει την διοχέτευση κυκλοφορίας ανά πρωτόκολλο με πρότυπα που περιέχουν κανονικές εκφράσεις και χαρακτήρες μπαλαντέρ, δεν είναι απαραίτητη η παρουσία λίστας πρωτόκολλων, οπότε αρχίζοντας από την έκδοση 2.5 αφαιρέθηκε. Φυσικά αυτό δεν επιδρά στην λειτουργικότητα. Απλά προσφέρει ένα πιο λιτό περιβάλλον διασύνδεσης χρήστη. Αν θέλετε να διοχετεύετε κυκλοφορία ανά πρωτόκολλο, θα πρέπει να ορίσετε πρότυπα επιτρεπόμενων/μη επιτρεπόμενων με προσοχή στο τμήμα πρωτόκολλου (πχ ftp://*.yahoo.com/*, *://leahscape.com/*, κλπ)">
<!ENTITY foxyproxy.newGUI4.label "Κάντε κλικ εδώ για περισσότερες πληροφορίες.">
<!ENTITY foxyproxy.error.msg.label "Μήνυμα σφάλματος">
<!ENTITY foxyproxy.pac.result.label "Αποτελέσματα αρχείου PAC">
<!ENTITY foxyproxy.options.width "90em">
<!ENTITY foxyproxy.options.height "52em">
<!ENTITY foxyproxy.torwiz.width "89em">
<!ENTITY foxyproxy.torwiz.height "54em">
<!ENTITY foxyproxy.addeditproxy.width "89em">
<!ENTITY foxyproxy.addeditproxy.height "58em">

View File

@ -0,0 +1,136 @@
extensions.foxyproxy@eric.h.jung.description=FoxyProxy - Ανακτήστε το ιδιωτικό σας απόρρητο
foxyproxy=FoxyProxy
tor=Tor
privoxy=Privoxy
settings.error=Παρουσιάστηκε σφάλμα κατά την ανάγνωση των ρυθμίσεων
error=Σφάλμα
welcome=Καλώσορισατε στο FoxyProxy!
yes=Ναί
no=Όχι
disabled=Απενεργοποιημένο
torwiz.configure=Θέλετε να ρυθμίστεί το FoxyProxy για χρήση με το δίκτυο Tor;
torwiz.with.without.privoxy=Χρησιμοποιήτε το δίκτυο Tor σε συνδυασμό με το Privoxy ή χωρίς αυτό;
torwiz.with=Σε συνδυασμό
torwiz.without=Χωρίς
torwiz.privoxy.not.required=Σημείωση : Από την έκδοση 1,5 του Firefox και μετά, το Privoxy δεν είναι πιά απαραίτητο για τη χρήση του δίκτυου Tor από τον Firefox. Το privoxy προσθέτει χαρακτηριστικά όπως το φιλτράρισμα περιεχομένου, αλλά δεν είναι αυστηρά αναγκαίο για τη χρήση του Firefox 1,5+ με το δίκτυο Tor. Θέλετε να χρησιμοποιεί ο Firefox το δίκτιο Tor μέσω Privoxy;
torwiz.port=Εισάγετε τον αριθμό θύρας που δέχεται αιτήματα ο %S. Αν δεν τον γνωρίζετε, αφήστε τον προεπιλεγμένο
torwiz.nan=Αυτό δεν είναι αριθμός.
torwiz.proxy.notes=Διαμεσολαβητής μέσω του δίκτυου Tor - http://tor.eff.org
torwiz.google.mail=Ηλεκτρονικό ταχυδρομείο Google (Gmail)
torwiz.pattern=http://*mail.google.com/*
torwiz.congratulations=Συγχαρητήρια! Το FoxyProxy έχει ρυθμιστεί για χρήση με το δίκτυο Tor. Σιγουρευτείτε ότι ο πελάτης Tor τρέχει πριν επισκεφθείτε URL που έχετε ορίσει να χρησιμοπούν το δίκτυο Tor. Επιπρόσθετα, αν έχετε ρυθμίσει το FoxyProxy για χρήση παράλληλα με το Privoxy, σιγουρευτείτε ότι τρέχει και αυτό.
torwiz.cancelled=Ο βοηθός Tor του FoxyProxy ακυρώθηκε.
mode.patterns.label=Διαμεσολαβητής με βάση προκαθορισμένα πρότυπα & προτεραιότητες
mode.patterns.accesskey=Δ
mode.patterns.tooltip=Χρήση διαμεσολαβητών με βάση τα προκαθορισμένα πρότυπα και προτεραιότητες
mode.custom.label=Χρήση του διαμεσολαβητή «%S» για όλα τα URL
mode.custom.tooltip=Χρήση του διαμεσολαβητή «%S» για όλα τα URL
mode.disabled.label=Ολική απενεργοποίηση του FoxyProxy
mode.disabled.accesskey=Ο
mode.disabled.tooltip=Απενεργοποιεί εντελώς το FoxyProxy
more.label=Περισσότερα
more.accesskey=Π
more.tooltip=Περισσότερες επιλογές
invalid.url=Το URL που ορίσατε για αυτόματες ρυθμίσεις διαμεσολαβητή δεν είναι έγκυρο
protocols.error=Ορίστε ένα ή περισσότερα πρωτόκολλα επικοινωνίας για τον διαμεσολαβητή
noport2=Πρέπει να ορίσετε θύρα για τον κεντρικό υπολογιστή.
nohost2=Πρέπει να ορίσετε κεντρικό υπολογιστή μαζί με την θύρα
nohostport=Πρέπει να ορίσετε κεντρικό υπολογιστή και θύρα.
torwiz.nopatterns=Δεν έχετε εισάγει κανένα πρότυπο URL στη λίστα επιτρεπομένων (συμπεριληπτική). Αυτό σημαίνει ότι το δίκτυο Tor δεν θα χρησιμοποιηθεί. Θέλετε να συνεχίσετε;
months.long.1=Ιανουάριος
months.short.1=Ιαν.
months.long.2=Φεβρουάριος
months.short.2=Φεβ.
months.long.3=Μάρτιος
months.short.3=Μάρ.
months.long.4=Απρίλιος
months.short.4=Απρ.
months.long.5=Μάιος
months.short.5=Μάιος
months.long.6=Ιούνιος
months.short.6=Ιούν.
months.long.7=Ιούλιος
months.short.7=Ιούλ.
months.long.8=Αύγουστος
months.short.8=Αύγ.
months.long.9=Σεπτέμβριος
months.short.9=Σεπτ.
months.long.10=Οκτώβριος
months.short.10=Οκτ.
months.long.11=Νοέμβριος
months.short.11=Νοέμ.
months.long.12=Δεκέμβριος
months.short.12=Δεκ.
days.long.1=Κυριακή
days.short.1=Κυρ.
days.long.2=Δευτέρα
days.short.2=Δευτ.
days.long.3=Τρίτη
days.short.3=Τρ.
days.long.4=Τετάρτη
days.short.4=Τετ.
days.long.5=Πέμπτη
days.short.5=Πεμ.
days.long.6=Παρασκευή
days.short.6=Παρ.
days.long.7=Σάββατο
days.short.7=Σαββ.
timeformat=HH:nn:ss:zzz mmm dd, yyyy
file.select=Επιλέξτε το αρχείο που θα αποθηκευθούν οι ρυθμίσεις
manual=Χειρωνακτικά
auto=Αυτόματα
direct=Άμεσα
delete.proxy.confirm=Διαγραφή διαμεσολαβητή : είστε σίγουροι;
pattern.required=Απαιτήται πρότυπο.
pattern.invalid.regex=Το «%S» δεν είναι μια έγκυρη κανονική έκφραση.
proxy.error.for.url=Παρουσιάστηκε σφάλμα κατα την επιλογή διαμεσολαβητή για το %S
proxy.default.settings.used=Δεν έγινε χρήση του FoxyProxy γι' αυτό το URL - Χρησιμοποιήθηκαν οι προεπιλεγμένες ρυθμίσεις σύνδεσης του Firefox.
proxy.all.urls=Όλα τα URL ρυθμίστικαν ώστε να χρησιμοποιούν αυτόν τον διαμεσολαβητή
pac.status=Κατάσταση αρχείου PAC του FoxyProxy
pac.status.loadfailure=Αποτυχία φόρτωσης του αρχείου PAC για τον διαμεσολαβητή «%S»
pac.status.success=Το αρχείο PAC για τον διαμεσολαβητή «%S» φορτώθηκε
pac.status.error=Σφάλμα στο αρχείο PAC για τον διαμεσολαβητή «%S»
error.noload=Παρουσιάστηκε σφάλμα. Παρακαλούμε επικοινωνήστε με την ομάδα ανάπτυξης του FoxyProxy. Δεν διέρευσαν προσωπικά δεδομένα αλλά ο πόρος δεν θα φορτωθεί. Εξαίρεση : %S
proxy.name.required=Εισάγετε ένα όνομα για αυτόν τον διαμεσολαβητή στην καρτέλα «γενικά» των επιλογών.
proxy.default=Προεπιλεγμένος
proxy.default.notes=Αυτές οι ρυθμίσεις θα χρησιμοποιούνται όταν ένα URL δεν περιλαμβάνεται σε κανένα πρότυπο.
proxy.default.match.name=Όλα
delete.proxy.default=Δεν μπορείτε να διαγράψετε αυτόν τον διαμεσολαβητή.
copy.proxy.default=Δεν μπορείτε να αντιγράψετε αυτόν τον διαμεσολαβητή.
logg.maxsize.change=Πρόκειται να διαγράψετε το ιστορικό καταγραφής. Συνέχεια;
logg.maxsize.maximum=Το μέγιστο προτεινόμενο μέγεθος είναι 9999. Μεγαλύτερα ποσά θα καταναλώνουν περισσότερη μνήμη και ίσως επηρεάσουν την απόδοση του συστήματος. Συνέχεια;
proxy.random=Επιλέχθηκε τυχαίος διαμεσολαβητής
mode.random.label=Χρήση τυχαίου διαμεσολαβητή για όλα τα URL (αγνοώντας κάθε πρότυπο και προτεραιότητα)
mode.random.accesskey=τ
mode.random.tooltip=Φόρτωση URL μέσω τυχαίων διαμεσολαβητών (αγνοώντας κάθε πρότυπο και προτεραιότητα)
random=Τυχαίος
random.applicable=Αυτή η ρύθμιση μπορεί να εφαρμοστεί μόνο όταν έχει επιλεγεί η κατάσταση λειτουργίας «χρήση τυχαίου διαμεσολαβητή για όλα τα URL(αγνοώντας κάθε πρότυπο και προτεραιότητα)»
superadd.error=Σφάλμα ρυθμίσεων: το %S απενεργοποιήθηκε.
superadd.notify=Διαμεσολαβητής %S
superadd.url.added=Έγινε προσθήκη του %S στον διαμεσολαβητή %S
autoadd.pattern.label=Δυναμικό πρότυπο αυτόματης προσθήκης
quickadd.pattern.label=Δυναμικό πρότυπο άμεσης προσθήκης
torwiz.proxydns=Θέλετε τα αιτήματα DNS να δρομολογούντε μέσω του δίκτυου Tor; Αν δεν καταλαβαίνετε την ερώτηση, κάντε κλικ στο «Ναί»
superadd.verboten2=Δεν είναι δυνατή η ενεργοποίηση του %S γιατί είτε δεν έχουν οριστεί διαμεσολαβητές, είτε είναι όλοι απενεργοποιημένοι.
autoadd.notice=Σημείωση : Η αυτόματη προσθήκη επιρεάζει τον χρόνο φόρτωσης μιας ιστοσελίδας. Όσο πιο περίπλοκο είναι το σχέδιο του πρότυπου σας για μια μεγάλου μεγέθους ιστοσελίδα, τόσο περισσότερο χρόνο θα χρειαστεί η επεξεργασία για την αυτόματη προσθήκη του. Αν διαπιστώσετε σημαντικές καθυστερήσεις, απενεργοποιήστε την αυτόματη προσθήκη.
autoadd.notice2=
autoconfurl.test.success=Το αρχείο PAC βρέθηκε, φορτώθηκε και αναλύθηκε με επιτυχία.
autoconfurl.test.fail=Παρουσιάστηκε πρόβλημα κατά την φόρτωση, εύρεση, ή ανάλυση του αρχείου PAC :\nΚώδικας κατάστασης HTTP : %S\nΕξαίρεση : %S
none=Κανένα
delete.settings.ask=Να διαγραφούν οι ρυθμίσεις του FoxyProxy που είναι αποθηκευμένες στο %S;
delete.settings.confirm=Το αρχείο %S θα διαγραφεί αφού κλείσουν όλα τα παράθυρα του περιηγητή.
no.wildcard.characters=Το πρότυπο δεν περιλαμβάνει χαρακτήρες μπαλαντέρ. Αυτό σημαίνει ότι το «%S» θα αναγνωριστεί κυριολεκτικά. Δεν αποτελεί συνηθισμένο πρότυπο του FoxyProxy και συνήθως σημαίνει ότι υπάρχει σφάλμα στον ορισμό ή ότι δεν έχετε κατανοήσει τον ορισμό προτύπων του FoxyProxy. Συνέχεια;
message.stop=Να μην εμφανιστεί αυτό το μήνυμα ξανά
log.save=Αποθήκευση ιστορικού καταγραφής
log.saved2=Το ιστορικό καταγραφής έχει αποθηκευθεί στο %S. Εμφάνιση;
log.nourls.url=Χωρίς καταγραφή
log.scrub=Καθαρισμός ήδη καταγεγραμένων URL;
no.white.patterns=Δεν έχετε εισάγει κανένα πρότυπο URL στη λίστα επιτρεπομένων (συμπεριληπτική). Αυτό σημαίνει ότι ο διαμεσολαβητής δεν θα χρησιμοποιηθεί. Συνέχεια;
quickadd.quickadd.canceled=Ακυρώθηκε η γρήγορη προσθήκη γιατί το τρέχον URL ταιριάζει με το πρότυπο «%S» του διαμεσολαβητή %S
quickadd.nourl=Δεν ήταν δυνατή η ανάκτηση του τρέχοντος URL
cookies.allremoved=Αφαιρέθηκαν όλα τα cookies
route.error=Σφάλμα κατά τη διαδικασία επιλογής κεντρικού υπολογιστή για διαμεσολάβηση
route.exception=Εξαίρεση κατά τη διάρκεια επιλογής κεντρικού υπολογιστή για διαμεσολάβηση %S
see.log=Δείτε το ιστορικό καταγραφής για περισσότερες πληροφορίες.
pac.select=Επιλογή αρχείου PAC
pac.files=Αρχεία PAC

View File

@ -0,0 +1,55 @@
<!-- switched from xhtml to html because of BabelZilla WTS adds extraneous html tags on locale download -->
<html>
<head>
<style type="text/css">
table {
border-width: 0px;
border-spacing: 2px;
border-style: none;
border-color: white;
border-collapse: separate;
background-color: rgb(250, 240, 230);
font-size: x-small;
font-family: verdana, sans-serif;
}
table td,table th {
border-width: 1px;
padding: 1px;
border-style: groove;
border-color: green;
background-color: rgb(250, 240, 230);
vertical-align: top;
font-size: x-small;
font-family: verdana, sans-serif;
}
p {background-color: white; font-size: x-small; font-family: verdana, sans-serif;}
body {font-family: verdana, sans-serif;}
h3 {font-size: small;}
h4 {font-size: x-small;}
</style>
</head>
<body>
<h3>Πρότυπα URL</h3>
<p>Πρίν ο Firefox φορτώσει ένα URL, ρωτάει το FoxyProxy αν πρέπει να χρησιμοποιήσει διαμεσολαβητή.
Το FoxyProxy απαντάει στο ερώτημα αφού πρώτα ελέγχει αν το τρέχων URL ταιριάζει με κάποιο από τα πρότυπα URL που ορίζετε παρακάτω.
Ο απλούστερος τρόπος να ορίσετε πρότυπα, είναι με τη χρήση χαρακτήρων μπαλαντέρ.</p>
<h4><a name="wildcards">Χαρακτήρες μπαλαντέρ</a></h4>
<p>Οι χαρακτήρες μπαλαντέρ είναι κοινότυποι σε όλες τις εφαρμογές, πιθανότατα τους έχετε συναντήσει και αλλού.
Ο αστερίσκος (*) υποκαθιστά οποιδήποτε αριθμό χαρακτήρων (ακόμα και 0 χαρακτήρες),
και το λατινικό ερωτηματικό (?) υποκαθιστά ένα μόνο χαρακτήρα.
</p>
<p>Χρησιμοποιώντας κανονικές εκφράσεις έχετε την δυνατότητα να θέσετε πιό εξελιγμένους κάνονες ταιριάζματος. Για λεπτομέριες, κάντε κλικ στο κουμπί «περιεχόμενα βοήθειας».</p>
<h4>Παραδείγματα χαρακτήρων μπαλαντέρ</h4>
<table>
<thead><tr><th>Πρότυπο URL</th><th>Ταιρίαζει</th><th>Δεν ταιριάζει</th></tr></thead>
<tr><td>*//:*.yahoo.com/*</td><td>Τα πάντα στον ιστότοπο του Yahoo</td><td>http://mail.google.com/</td></tr>
<tr><td>*//:mail.yahoo.com/*</td><td>http://mail.yahoo.com/<br/>http://mail.yahoo.com/clownshoes/<br/>http://mail.yahoo.com/inbox/123.html<br/>ftp://mail.yahoo.com</td><td>http://maps.yahoo.com</td></tr>
<tr><td>http://??.wikipedia.org/wiki/Clown</td><td>http://en.wikipedia.org/wiki/Clown<br/>http://de.wikipedia.org/wiki/Clown<br/>http://cs.wikipedia.org/wiki/Clown</td><td>https://en.wikipedia.org/wiki/Clown<br/>http://de.wikipedia.org/wiki/Clown/<br/>ftp://en.wikipedia.org/wiki/Clown</td></tr>
<tr><td>http://digg.com/</td><td>http://digg.com/</td><td>http://digg.com<br/>http://www.digg.com/</td></tr>
<tr><td>*://*.asimov.???/*</td><td>ftp://ftp.asimov.net/<br/>ftp://ftp.asimov.com/theory.html<br/>http://bear.asimov.net/mom/<br/>https://isaac.asimov.org/hercules<br/>gopher://asimov.net/</td>
<td>ftp://ftp.asimov.co.uk<br/>http://isaac.home.com/tin.php</td></tr>
<tr><td>*</td><td><i>Με τα πάντα</i></td><td>&nbsp;</td></tr>
</table>
</body>
</html>

View File

@ -0,0 +1,532 @@
<!ENTITY foxyproxy.label "FoxyProxy">
<!ENTITY foxyproxy.accesskey "F">
<!ENTITY foxyproxy.tooltip "FoxyProxy">
<!ENTITY foxyproxy.optionsdialog.label "FoxyProxy Options">
<!ENTITY foxyproxy.options.label "Options">
<!ENTITY foxyproxy.options.accesskey "O">
<!ENTITY foxyproxy.options.tooltip "Open the Options Dialog">
<!ENTITY foxyproxy.tree.pickertooltiptext.label "Click to select which columns to display">
<!ENTITY foxyproxy.proxy.name.label "Proxy Name">
<!ENTITY foxyproxy.proxy.name.accesskey "N">
<!ENTITY foxyproxy.proxy.name.tooltip "Proxy Name">
<!ENTITY foxyproxy.proxy.notes.label "Proxy Notes">
<!ENTITY foxyproxy.proxy.notes.accesskey "N">
<!ENTITY foxyproxy.proxy.notes.tooltip "Proxy Notes">
<!ENTITY foxyproxy.pattern.label "Pattern">
<!ENTITY foxyproxy.pattern.type.label "Pattern Type">
<!ENTITY foxyproxy.whitelist.blacklist.label "Whitelist (Inclusive) or Blacklist (Exclusive)">
<!ENTITY foxyproxy.pattern.name.label "Pattern Name">
<!ENTITY foxyproxy.pattern.name.accesskey "P">
<!ENTITY foxyproxy.pattern.name.tooltip "Name for the pattern">
<!ENTITY foxyproxy.url.pattern.label "URL pattern">
<!ENTITY foxyproxy.url.pattern.accesskey "U">
<!ENTITY foxyproxy.url.pattern.tooltip "URL pattern">
<!ENTITY foxyproxy.enabled.label "Enabled">
<!ENTITY foxyproxy.enabled.accesskey "E">
<!ENTITY foxyproxy.enabled.tooltip "Toggle enable/disable">
<!ENTITY foxyproxy.delete.selection.label "Delete Selection">
<!ENTITY foxyproxy.delete.selection.accesskey "D">
<!ENTITY foxyproxy.delete.selection.tooltip "Delete the currently selected item">
<!ENTITY foxyproxy.edit.selection.label "Edit Selection">
<!ENTITY foxyproxy.edit.selection.accesskey "E">
<!ENTITY foxyproxy.edit.selection.tooltip "Edit the currently selected item">
<!ENTITY foxyproxy.help.label "Help Contents">
<!ENTITY foxyproxy.help.accesskey "H">
<!ENTITY foxyproxy.help.tooltip "Show Help">
<!ENTITY foxyproxy.close.label "Close">
<!ENTITY foxyproxy.close.accesskey "C">
<!ENTITY foxyproxy.close.tooltip "Close Window">
<!ENTITY foxyproxy.about.label "About">
<!ENTITY foxyproxy.about.accesskey "A">
<!ENTITY foxyproxy.about.tooltip "Opens the about box">
<!ENTITY foxyproxy.online.label "FoxyProxy Online">
<!ENTITY foxyproxy.online.accesskey "O">
<!ENTITY foxyproxy.online.tooltip "Visit the FoxyProxy Website">
<!ENTITY foxyproxy.tor.label "Tor Wizard">
<!ENTITY foxyproxy.tor.accesskey "W">
<!ENTITY foxyproxy.tor.tooltip "Tor Wizard">
<!ENTITY foxyproxy.copy.selection.label "Copy Selection">
<!ENTITY foxyproxy.copy.selection.accesskey "C">
<!ENTITY foxyproxy.copy.selection.tooltip "Copies selection">
<!ENTITY foxyproxy.mode.label "Mode">
<!ENTITY foxyproxy.auto.url.label "Automatic proxy configuration URL">
<!ENTITY foxyproxy.auto.url.accesskey "A">
<!ENTITY foxyproxy.auto.url.tooltip "Enter URL of the PAC file">
<!ENTITY foxyproxy.port.label "Port">
<!ENTITY foxyproxy.port.accesskey "P">
<!ENTITY foxyproxy.port.tooltip "Port">
<!ENTITY foxyproxy.socks.proxy.label "SOCKS Proxy">
<!ENTITY foxyproxy.socks.proxy.accesskey "C">
<!ENTITY foxyproxy.socks.proxy.tooltip "URL of SOCKS Proxy">
<!ENTITY foxyproxy.socks.v4 "SOCKS v4/4a">
<!ENTITY foxyproxy.socks.v5 "SOCKS v5">
<!ENTITY foxyproxy.addeditpattern.title "Add/Edit Pattern">
<!ENTITY foxyproxy.wildcard.label "Wildcards">
<!ENTITY foxyproxy.wildcard.accesskey "W">
<!ENTITY foxyproxy.wildcard.tooltip "Specifies that the URL pattern uses wildcards and is not a regular expression">
<!ENTITY foxyproxy.wildcard.example.label "Example: *mail.yahoo.com/*">
<!ENTITY foxyproxy.regex.label "Regular Expression">
<!ENTITY foxyproxy.regex.accesskey "R">
<!ENTITY foxyproxy.regex.tooltip "Specifies that the URL pattern is a regular expression">
<!ENTITY foxyproxy.regex.example.label "Example: http?://.*\.mail\.yahoo\.com/.*">
<!ENTITY foxyproxy.version "Version">
<!ENTITY foxyproxy.createdBy "Created By">
<!ENTITY foxyproxy.copyright "Copyright">
<!ENTITY foxyproxy.rights "All Rights Reserved.">
<!ENTITY foxyproxy.released "Released under the GPL license.">
<!ENTITY foxyproxy.thanks "Special thanks to">
<!ENTITY foxyproxy.translations "Translations">
<!ENTITY foxyproxy.tab.general.label "General">
<!ENTITY foxyproxy.tab.general.accesskey "G">
<!ENTITY foxyproxy.tab.general.tooltip "Manage General Proxy Settings">
<!ENTITY foxyproxy.tab.proxy.label "Proxy Details">
<!ENTITY foxyproxy.tab.proxy.accesskey "R">
<!ENTITY foxyproxy.tab.proxy.tooltip "Manage Proxy Details">
<!ENTITY foxyproxy.tab.patterns.label "Patterns">
<!ENTITY foxyproxy.tab.patterns.accesskey "P">
<!ENTITY foxyproxy.tab.patterns.tooltip "Manage URL Patterns">
<!ENTITY foxyproxy.add.title "Proxy Settings">
<!ENTITY foxyproxy.pattern.description "Here you can specify when this proxy is and is not used.">
<!ENTITY foxyproxy.pattern.matchtype.label "Pattern Contains">
<!ENTITY foxyproxy.pattern.matchtype2.label "Pattern To Identify Blocked Websites Contains">
<!ENTITY foxyproxy.pattern.template.matchtype.label "Pattern Template Contains">
<!ENTITY foxyproxy.pattern.whiteblack.label "URL Inclusion/Exclusion">
<!ENTITY foxyproxy.add.option.direct.label "Direct internet connection (no proxy)">
<!ENTITY foxyproxy.add.option.direct.accesskey "D">
<!ENTITY foxyproxy.add.option.direct.tooltip "Do not use a proxy - use the underlying direct internet connection">
<!ENTITY foxyproxy.add.option.manual.label "Manual Proxy Configuration">
<!ENTITY foxyproxy.add.option.manual.accesskey "M">
<!ENTITY foxyproxy.add.option.manual.tooltip "Manually define a proxy configuration">
<!ENTITY foxyproxy.add.new.pattern.label "Add New Pattern">
<!ENTITY foxyproxy.add.new.pattern.accesskey "A">
<!ENTITY foxyproxy.add.new.pattern.tooltip "Add New Pattern">
<!ENTITY foxyproxy.menubar.file.label "File">
<!ENTITY foxyproxy.menubar.file.accesskey "F">
<!ENTITY foxyproxy.menubar.file.tooltip "Open the File Menu">
<!ENTITY foxyproxy.menubar.help.label "Help">
<!ENTITY foxyproxy.menubar.help.accesskey "H">
<!ENTITY foxyproxy.menubar.help.tooltip "Open the Help Menu">
<!ENTITY foxyproxy.mode.label "Select Mode">
<!ENTITY foxyproxy.mode.accesskey "M">
<!ENTITY foxyproxy.mode.tooltip "Select how to enable FoxyProxy">
<!ENTITY foxyproxy.tab.proxies.label "Proxies">
<!ENTITY foxyproxy.tab.proxies.accesskey "P">
<!ENTITY foxyproxy.tab.proxies.tooltip "Manage Proxies">
<!ENTITY foxyproxy.tab.global.label "Global Settings">
<!ENTITY foxyproxy.tab.global.accesskey "G">
<!ENTITY foxyproxy.tab.global.tooltip "Manage Global Settings">
<!ENTITY foxyproxy.tab.logging.label "Logging">
<!ENTITY foxyproxy.tab.logging.accesskey "L">
<!ENTITY foxyproxy.tab.logging.tooltip "Manage Logging Settings">
<!ENTITY foxyproxy.proxydns.label "Use SOCKS proxy for DNS lookups">
<!ENTITY foxyproxy.proxydns.accesskey "U">
<!ENTITY foxyproxy.proxydns.tooltip "If checked, DNS lookups are routed through a SOCKS proxy">
<!ENTITY foxyproxy.proxydns.notice "Firefox must restart for settings to take effect. Restart now?">
<!ENTITY foxyproxy.showstatusbaricon.label "Show icon on statusbar">
<!ENTITY foxyproxy.showstatusbaricon.accesskey "S">
<!ENTITY foxyproxy.showstatusbaricon.tooltip "If checked, FoxyProxy icon is shown on the statusbar">
<!ENTITY foxyproxy.showstatusbarmode.label "Show mode (text) on statusbar">
<!ENTITY foxyproxy.showstatusbarmode.accesskey "S">
<!ENTITY foxyproxy.showstatusbarmode.tooltip "If checked, FoxyProxy mode is shown on the statusbar">
<!ENTITY foxyproxy.storagelocation.label "Settings Storage Location">
<!ENTITY foxyproxy.storagelocation.accesskey "S">
<!ENTITY foxyproxy.storagelocation.tooltip "Location to store FoxyProxy's settings">
<!ENTITY foxyproxy.tab.logging.timestamp.label "Timestamp">
<!ENTITY foxyproxy.tab.logging.url.label "URL">
<!ENTITY foxyproxy.host.label "Host Name">
<!ENTITY foxyproxy.host.accesskey "H">
<!ENTITY foxyproxy.host.tooltip "Host Name">
<!ENTITY foxyproxy.clear.label "Clear">
<!ENTITY foxyproxy.clear.accesskey "C">
<!ENTITY foxyproxy.clear.tooltip "Clear">
<!ENTITY foxyproxy.refresh.label "Refresh">
<!ENTITY foxyproxy.refresh.accesskey "R">
<!ENTITY foxyproxy.refresh.tooltip "Refresh">
<!ENTITY foxyproxy.save.label "Save">
<!ENTITY foxyproxy.save.accesskey "S">
<!ENTITY foxyproxy.save.tooltip "Save">
<!ENTITY foxyproxy.addnewproxy.label "Add New Proxy">
<!ENTITY foxyproxy.addnewproxy.accesskey "A">
<!ENTITY foxyproxy.addnewproxy.tooltip "Add New Proxy">
<!ENTITY foxyproxy.whitelist.label "Whitelist">
<!ENTITY foxyproxy.whitelist.accesskey "W">
<!ENTITY foxyproxy.whitelist.tooltip "URLs matching this pattern are loaded through this proxy">
<!ENTITY foxyproxy.whitelist.description.label "URLs matching this pattern are loaded through this proxy">
<!ENTITY foxyproxy.blacklist.label "Blacklist">
<!ENTITY foxyproxy.blacklist.accesskey "B">
<!ENTITY foxyproxy.blacklist.tooltip "URLs matching this pattern are NOT loaded through this proxy">
<!ENTITY foxyproxy.blacklist.description.label "URLs matching this pattern are NOT loaded through this proxy">
<!ENTITY foxyproxy.whiteblack.description.label "Blacklist (exclusion) patterns have precedence over whitelist (inclusion) patterns: if a URL matches both a whitelisted pattern and a blacklisted pattern for the same proxy, the URL is excluded from being loaded by that proxy.">
<!ENTITY foxyproxy.usingPFF.label1 "I am using">
<!ENTITY foxyproxy.usingPFF.label2 "Portable Firefox">
<!ENTITY foxyproxy.usingPFF.accesskey "P">
<!ENTITY foxyproxy.usingPFF.tooltip "Check here if you are using Portable Firefox">
<!ENTITY foxyproxy.socks.version.label "SOCKS Version">
<!ENTITY foxyproxy.autopacurl.label "Auto PAC URL">
<!ENTITY foxyproxy.issocks.label "SOCKS proxy?">
<!ENTITY foxyproxy.issocks.accesskey "S">
<!ENTITY foxyproxy.issocks.tooltip "Is this a web proxy or SOCKS proxy?">
<!ENTITY foxyproxy.chinese.simplified "Chinese (Simplified)">
<!ENTITY foxyproxy.chinese.traditional "Chinese (Traditional)">
<!ENTITY foxyproxy.croatian "Croatian">
<!ENTITY foxyproxy.czech "Czech">
<!ENTITY foxyproxy.danish "Danish">
<!ENTITY foxyproxy.dutch "Dutch">
<!ENTITY foxyproxy.english "English">
<!ENTITY foxyproxy.english.british "English (British)">
<!ENTITY foxyproxy.french "French">
<!ENTITY foxyproxy.german "German">
<!ENTITY foxyproxy.greek "Greek">
<!ENTITY foxyproxy.hungarian "Hungarian">
<!ENTITY foxyproxy.italian "Italian">
<!ENTITY foxyproxy.persian "Persian">
<!ENTITY foxyproxy.polish "Polish">
<!ENTITY foxyproxy.portugese.brazilian "Portugese (Brazilian)">
<!ENTITY foxyproxy.portugese.portugal "Portugese (Portugal)">
<!ENTITY foxyproxy.romanian "Romanian">
<!ENTITY foxyproxy.russian "Russian">
<!ENTITY foxyproxy.slovak "Slovak">
<!ENTITY foxyproxy.spanish.spain "Spanish (Spain)">
<!ENTITY foxyproxy.spanish.argentina "Spanish (Argentina)">
<!ENTITY foxyproxy.swedish "Swedish">
<!ENTITY foxyproxy.thai.thailand "Thai (Thailand)">
<!ENTITY foxyproxy.turkish "Turkish">
<!ENTITY foxyproxy.ukrainian "Ukrainian">
<!ENTITY foxyproxy.your.language "Your Language">
<!ENTITY foxyproxy.your.name.here "Your name here!">
<!ENTITY foxyproxy.moveup.label "Move Up">
<!ENTITY foxyproxy.moveup.tooltip "Increase priority of current selection">
<!ENTITY foxyproxy.moveup.accesskey "U">
<!ENTITY foxyproxy.movedown.label "Move Down">
<!ENTITY foxyproxy.movedown.tooltip "Decrease priority of current selection">
<!ENTITY foxyproxy.movedown.accesskey "D">
<!ENTITY foxyproxy.autoconfurl.view.label "View">
<!ENTITY foxyproxy.autoconfurl.view.accesskey "V">
<!ENTITY foxyproxy.autoconfurl.view.tooltip "View the auto-configuration file">
<!ENTITY foxyproxy.autoconfurl.test.label "Test">
<!ENTITY foxyproxy.autoconfurl.test.accesskey "T">
<!ENTITY foxyproxy.autoconfurl.test.tooltip "Test the auto-configuration file">
<!ENTITY foxyproxy.autoconfurl.reload.label "Reload the PAC every">
<!ENTITY foxyproxy.autoconfurl.reload.accesskey "R">
<!ENTITY foxyproxy.autoconfurl.reload.tooltip "Auto-reload the PAC file every specified period">
<!ENTITY foxyproxy.minutes.label "minutes">
<!ENTITY foxyproxy.minutes.tooltip "minutes">
<!ENTITY foxyproxy.logging.maxsize.label "Maximum size before log wraps">
<!ENTITY foxyproxy.logging.maxsize.accesskey "M">
<!ENTITY foxyproxy.logging.maxsize.tooltip "Maximum number of log entries before the log wraps to the beginning">
<!ENTITY foxyproxy.logging.maxsize.button.label "Set">
<!ENTITY foxyproxy.logging.maxsize.button.accesskey "S">
<!ENTITY foxyproxy.logging.maxsize.button.tooltip "Sets the maximum number of log entries before the log wraps to the beginning">
<!ENTITY foxyproxy.random.label "Load URLs through random proxies (ignore all patterns and priorities)">
<!ENTITY foxyproxy.random.accesskey "R">
<!ENTITY foxyproxy.random.tooltip "Load URLs through random proxies (ignore all patterns and priorities)">
<!ENTITY foxyproxy.random.includedirect.label "Include proxies configured as direct internet connections">
<!ENTITY foxyproxy.random.includedirect.accesskey "I">
<!ENTITY foxyproxy.random.includedirect.tooltip "Proxies configured as direct internet connections are included in random proxy selection">
<!ENTITY foxyproxy.random.includedisabled.label "Include disabled proxies">
<!ENTITY foxyproxy.random.includedisabled.accesskey "D">
<!ENTITY foxyproxy.random.includedisabled.tooltip "Proxies configured as disabled are included in random proxy selection">
<!ENTITY foxyproxy.random.settings.label "Random Proxy Selection">
<!ENTITY foxyproxy.random.settings.accesskey "R">
<!ENTITY foxyproxy.random.settings.tooltip "Settings which affect random proxy selection">
<!ENTITY foxyproxy.tab.autoadd.label "AutoAdd">
<!ENTITY foxyproxy.tab.autoadd.accesskey "A">
<!ENTITY foxyproxy.tab.autoadd.tooltip "Manage AutoAdd Settings">
<!ENTITY foxyproxy.autoadd.description "Specify a pattern that identifies blocked websites. When the pattern is found on a page, a pattern matching that website's URL is automatically added to a proxy and optionally reloaded. This prevents you from having to proactively identify all blocked websites.">
<!ENTITY foxyproxy.autoadd.pattern.label "Pattern to identify blocked websites">
<!ENTITY foxyproxy.autoadd.pattern.accesskey "P">
<!ENTITY foxyproxy.autoadd.pattern.tooltip "Pattern that identifies blocked websites">
<!ENTITY foxyproxy.autoadd.wildcard.example.label "Example: *You are not authorized to view this page*">
<!ENTITY foxyproxy.autoadd.regex.example.label "Example: .*Site.*has been blocked.*">
<!ENTITY foxyproxy.autoadd.proxy.label "Proxy to which patterns are automatically added">
<!ENTITY foxyproxy.autoadd.proxy.accesskey "P">
<!ENTITY foxyproxy.autoadd.proxy.tooltip "Specify the proxy to which URLs are automatically added">
<!ENTITY foxyproxy.pattern.template.label "URL Pattern Template">
<!ENTITY foxyproxy.pattern.template.accesskey "U">
<!ENTITY foxyproxy.pattern.template.tooltip "URL Pattern Template">
<!ENTITY foxyproxy.pattern.template.example.label1 "Example for ">
<!ENTITY foxyproxy.pattern.template.example.label2 "http://fred:secret@mail.foo.com:8080/inbox/msg102.htm#subject?style=elegant">
<!ENTITY foxyproxy.pattern.template.currenturl.label "Current URL">
<!ENTITY foxyproxy.pattern.template.currenturl.accesskey "C">
<!ENTITY foxyproxy.pattern.template.currenturl.tooltip "URL in the address bar">
<!ENTITY foxyproxy.pattern.template.generatedpattern.label "Generated Pattern">
<!ENTITY foxyproxy.pattern.template.generatedpattern.accesskey "G">
<!ENTITY foxyproxy.pattern.template.generatedpattern.tooltip "Dynamically generated pattern">
<!ENTITY foxyproxy.autoadd.reload.label "Reload the page after pattern is added to proxy">
<!ENTITY foxyproxy.autoadd.reload.accesskey "R">
<!ENTITY foxyproxy.autoadd.reload.tooltip "Automatically reload the page after the pattern is added to a proxy">
<!ENTITY foxyproxy.autoadd.notify.label "Notify me when AutoAdd is activated">
<!ENTITY foxyproxy.autoadd.notify.accesskey "N">
<!ENTITY foxyproxy.autoadd.notify.tooltip "Informs you when a page is blocked &amp; the URL pattern is added to a proxy">
<!ENTITY foxyproxy.graphics "Graphic design and images by">
<!ENTITY foxyproxy.website "Website by">
<!ENTITY foxyproxy.contributions "Contributions by">
<!ENTITY foxyproxy.pacloadnotification.label "Notify me about proxy auto-configuration file loads">
<!ENTITY foxyproxy.pacloadnotification.accesskey "L">
<!ENTITY foxyproxy.pacloadnotification.tooltip "Display a popup when a PAC file loads">
<!ENTITY foxyproxy.pacerrornotification.label "Notify me about proxy auto-configuration file errors">
<!ENTITY foxyproxy.pacerrornotification.accesskey "E">
<!ENTITY foxyproxy.pacerrornotification.tooltip "Display a popup when encountering PAC file errors">
<!ENTITY foxyproxy.toolsmenu.label "Show icon in the Firefox tools menu">
<!ENTITY foxyproxy.toolsmenu.accesskey "T">
<!ENTITY foxyproxy.toolsmenu.tooltip "Show icon in the Firefox tools menu">
<!ENTITY foxyproxy.tip.label "Tip">
<!ENTITY foxyproxy.pactips.popup.height "165px">
<!ENTITY foxyproxy.pactips.popup.width "400px">
<!ENTITY foxyproxy.pactip1.label "For PAC files stored on a local hard drive, use the file:// scheme. For example, file://c:/path/proxy.pac on Windows or file:///home/users/joe/proxy.pac on Unix/Linux/Mac.">
<!ENTITY foxyproxy.pactip2.label "For PAC files on an ftp server, use the ftp:// scheme. For example, ftp://leahscape.com/path/proxy.pac">
<!ENTITY foxyproxy.pactip3.label "You can also use http://, https://, and any other supported scheme.">
<!ENTITY foxyproxy.contextmenu.label "Show icon in the context-menu">
<!ENTITY foxyproxy.contextmenu.accesskey "C">
<!ENTITY foxyproxy.contextmenu.tooltip "Show icon in the context-menu">
<!ENTITY foxyproxy.quickadd.desc1 "QuickAdd adds a dynamic URL pattern to a proxy when you press Alt-F2. It is practical alternative to AutoAdd. Customize the Alt-F2 shortcut with the ">
<!ENTITY foxyproxy.keyconfig.label "KeyConfig">
<!ENTITY foxyproxy.quickadd.desc2 "extension">
<!ENTITY foxyproxy.quickadd.label "QuickAdd">
<!ENTITY foxyproxy.quickadd.accesskey "Q">
<!ENTITY foxyproxy.quickadd.tooltip "Manage QuickAdd Settings">
<!ENTITY foxyproxy.quickadd.notify.label "Notify me when QuickAdd is activated">
<!ENTITY foxyproxy.quickadd.notify.accesskey "N">
<!ENTITY foxyproxy.quickadd.notify.tooltip "Display a popup when QuickAdd is activated">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.label "Notify me when QuickAdd is canceled">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.label2 "QuickAdd is automatically canceled when the URL in the address bar already matches a whitelist pattern in the QuickAdd proxy. In this way duplicate patterns, which can clutter your configuration, are prevented. This setting does not enable/disable cancelation; rather, it toggles notification when cancelation occurs.">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.accesskey "C">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.tooltip "Display a popup when QuickAdd is activated but canceled">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.popup.width "400px">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.popup.height "120px">
<!ENTITY foxyproxy.whatsthis "What's This?">
<!ENTITY foxyproxy.quickadd.prompt.label "Prompt for editing and confirmation before adding pattern to proxy">
<!ENTITY foxyproxy.quickadd.prompt.accesskey "P">
<!ENTITY foxyproxy.quickadd.prompt.tooltip "Prompt for editing and confirmation before adding pattern to proxy">
<!ENTITY foxyproxy.quickadd.proxy.label "Proxy to which pattern is added">
<!ENTITY foxyproxy.quickadd.proxy.accesskey "P">
<!ENTITY foxyproxy.quickadd.proxy.tooltip "Choose proxy to which pattern will be added">
<!ENTITY foxyproxy.bypasscache.label "Bypass Firefox cache when loading">
<!ENTITY foxyproxy.bypasscache.accesskey "B">
<!ENTITY foxyproxy.bypasscache.tooltip "Firefox cache is ignored">
<!ENTITY foxyproxy.advancedmenus.label "Use Advanced Menus">
<!ENTITY foxyproxy.advancedmenus.accesskey "M">
<!ENTITY foxyproxy.advancedmenus.tooltip "Use advanced menus (FoxyProxy 2.2-style)">
<!ENTITY foxyproxy.importsettings.label "Import settings">
<!ENTITY foxyproxy.importsettings.accesskey "I">
<!ENTITY foxyproxy.importsettings.tooltip "Import settings from a file">
<!ENTITY foxyproxy.exportsettings.label "Export current settings">
<!ENTITY foxyproxy.exportsettings.accesskey "E">
<!ENTITY foxyproxy.exportsettings.tooltip "Export current settings to file">
<!ENTITY foxyproxy.importlist.label "Import list of proxies">
<!ENTITY foxyproxy.importlist.accesskey "I">
<!ENTITY foxyproxy.importlist.tooltip "Import a text file list of proxies">
<!ENTITY foxyproxy.wildcard.reference.label "Wildcard Reference">
<!ENTITY foxyproxy.wildcard.reference.accesskey "W">
<!ENTITY foxyproxy.wildcard.reference.tooltip "Wildcard Reference">
<!ENTITY foxyproxy.wildcard.reference.subtitle.label "The asterisk (*) matches zero or more characters, and the question mark (?) matches any single character">
<!ENTITY foxyproxy.wildcard.reference.mistakes "Common Mistakes When Writing Wildcard Patterns">
<!ENTITY foxyproxy.wildcard.reference.goal.label "Goal">
<!ENTITY foxyproxy.wildcard.reference.goal1.label "Match all pages in MySpace's www subdomain">
<!ENTITY foxyproxy.wildcard.reference.goal2.label "Match the local PC">
<!ENTITY foxyproxy.wildcard.reference.goal3.label "Match all subdomains and pages at abc.com">
<!ENTITY foxyproxy.wildcard.reference.goal4.label "Match all pages in the a.foo.com domain but not b.foo.com">
<!ENTITY foxyproxy.wildcard.reference.correct.label "Correct">
<!ENTITY foxyproxy.wildcard.reference.correct2.label "Must be two patterns">
<!ENTITY foxyproxy.wildcard.reference.incorrect.label "Incorrect">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason.label "Reason Why It's Incorrect">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason1.label "Since there are no wildcards, only the home page is matched">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason2.label "FoxyProxy doesn't understand this kind of syntax">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason3.label "There are no wildcards">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason4.label "There are no wildcards">
<!ENTITY foxyproxy.wildcard.reference.popup.height "350px">
<!ENTITY foxyproxy.logging.noURLs.label "Do not store or display URLs">
<!ENTITY foxyproxy.logging.noURLs.accesskey "U">
<!ENTITY foxyproxy.logging.noURLs.tooltip "URLs aren't stored in RAM or on disk">
<!ENTITY foxyproxy.ok.label "OK">
<!ENTITY foxyproxy.ok.accesskey "O">
<!ENTITY foxyproxy.ok.tooltip "Close Window">
<!ENTITY foxyproxy.pattern.template.reference.label "Pattern Template Reference">
<!ENTITY foxyproxy.pattern.template.reference.accesskey "T">
<!ENTITY foxyproxy.pattern.template.reference.tooltip "Pattern Template Reference">
<!ENTITY foxyproxy.pattern.template.reference.subtitle.label "URL pattern templates define the format with which URLs are QuickAdded or AutoAdded to proxies. Templates support the following special strings which, when QuickAdd or AutoAdd are activated, are substituted with the corresponding URL component in the address bar.">
<!ENTITY foxyproxy.pattern.template.reference.specialstring.label "Special String">
<!ENTITY foxyproxy.pattern.template.reference.subststring.label "Substituted With">
<!ENTITY foxyproxy.pattern.template.reference.example.label "Example">
<!ENTITY foxyproxy.pattern.template.reference.scheme.label "protocol">
<!ENTITY foxyproxy.pattern.template.reference.username.label "username">
<!ENTITY foxyproxy.pattern.template.reference.password.label "password">
<!ENTITY foxyproxy.pattern.template.reference.userpass.label "username &amp; password with &quot;:&quot; &amp; &quot;@&quot;">
<!ENTITY foxyproxy.pattern.template.reference.host.label "host">
<!ENTITY foxyproxy.pattern.template.reference.port.label "port">
<!ENTITY foxyproxy.pattern.template.reference.hostport.label "host &amp; port with &quot;:&quot;">
<!ENTITY foxyproxy.pattern.template.reference.prepath.label "string before the path">
<!ENTITY foxyproxy.pattern.template.reference.path.label "path (includes filename)">
<!ENTITY foxyproxy.pattern.template.reference.directory.label "directory">
<!ENTITY foxyproxy.pattern.template.reference.filebasename.label "file basename">
<!ENTITY foxyproxy.pattern.template.reference.fileextension.label "file extension">
<!ENTITY foxyproxy.pattern.template.reference.filename.label "complete filename">
<!ENTITY foxyproxy.pattern.template.reference.ref.label "part after the &quot;#&quot;">
<!ENTITY foxyproxy.pattern.template.reference.query.label "part after the &quot;?&quot;">
<!ENTITY foxyproxy.pattern.template.reference.spec.label "complete URL">
<!ENTITY foxyproxy.pattern.template.reference.popup.height "400px">
<!ENTITY foxyproxy.pattern.template.reference.popup.width "800px">
<!ENTITY foxyproxy.notifications.label "Notifications">
<!ENTITY foxyproxy.notifications.accesskey "N">
<!ENTITY foxyproxy.notifications.tooltip "Notification Settings">
<!ENTITY foxyproxy.indicators.label "Indicators">
<!ENTITY foxyproxy.indicators.accesskey "I">
<!ENTITY foxyproxy.indicators.tooltip "Indicator Settings">
<!ENTITY foxyproxy.misc.label "Miscellaneous">
<!ENTITY foxyproxy.misc.accesskey "M">
<!ENTITY foxyproxy.misc.tooltip "Miscellaneous Settings">
<!ENTITY foxyproxy.animatedicons.label "Animate icons when this proxy is in use">
<!ENTITY foxyproxy.animatedicons.accesskey "A">
<!ENTITY foxyproxy.animatedicons.tooltip "Animate icons when this proxy active (Global Settings->Animations must also be checked)">
<!ENTITY foxyproxy.statusbaractivation.label "Statusbar Activation">
<!ENTITY foxyproxy.statusbaractivation.accesskey "S">
<!ENTITY foxyproxy.statusbaractivation.tooltip "Statusbar Activation Settings">
<!ENTITY foxyproxy.toolbaractivation.label "Toolbar Activation">
<!ENTITY foxyproxy.toolbaractivation.accesskey "T">
<!ENTITY foxyproxy.toolbaractivation.tooltip "Toolbar Activation Settings">
<!ENTITY foxyproxy.leftclicksb.label "Left-click">
<!ENTITY foxyproxy.leftclicksb.accesskey "L">
<!ENTITY foxyproxy.leftclicksb.tooltip "Action to take when left-clicking FoxyProxy in status bar">
<!ENTITY foxyproxy.middleclicksb.label "Middle-click">
<!ENTITY foxyproxy.middleclicksb.accesskey "M">
<!ENTITY foxyproxy.middleclicksb.tooltip "Action to take when middle-clicking FoxyProxy in status bar">
<!ENTITY foxyproxy.rightclicksb.label "Right-click">
<!ENTITY foxyproxy.rightclicksb.accesskey "R">
<!ENTITY foxyproxy.rightclicksb.tooltip "Action to take when right-clicking FoxyProxy in status bar">
<!ENTITY foxyproxy.leftclicktb.label "Left-click">
<!ENTITY foxyproxy.leftclicktb.accesskey "L">
<!ENTITY foxyproxy.leftclicktb.tooltip "Action to take when left-clicking FoxyProxy in toolbar">
<!ENTITY foxyproxy.middleclicktb.label "Middle-click">
<!ENTITY foxyproxy.middleclicktb.accesskey "M">
<!ENTITY foxyproxy.middleclicktb.tooltip "Action to take when middle-clicking FoxyProxy in toolbar">
<!ENTITY foxyproxy.rightclicktb.label "Right-click">
<!ENTITY foxyproxy.rightclicktb.accesskey "R">
<!ENTITY foxyproxy.rightclicktb.tooltip "Action to take when right-clicking FoxyProxy in toolbar">
<!ENTITY foxyproxy.click.options "Show options dialog">
<!ENTITY foxyproxy.click.cycle "Cycles through modes">
<!ENTITY foxyproxy.click.contextmenu "Show context menu">
<!ENTITY foxyproxy.click.reloadcurtab "Reload current tab">
<!ENTITY foxyproxy.click.reloadtabsinbrowser "Reload all tabs in current browser">
<!ENTITY foxyproxy.click.reloadtabsinallbrowsers "Reload all tabs in all browsers">
<!ENTITY foxyproxy.click.removeallcookies "Remove all cookies">
<!ENTITY foxyproxy.includeincycle.label "Include this proxy when cycling proxies by clicking on statusbar or toolbar (Global Settings->Statusbar/Toolbar Activation->Cycle through modes must be selected)">
<!ENTITY foxyproxy.includeincycle.accesskey "I">
<!ENTITY foxyproxy.includeincycle.tooltip "Include this proxy when clicking on the statusbar/toolbar">
<!ENTITY foxyproxy.changes.msg1 "Help! Where are settings for HTTP, SSL, FTP, Gopher, and SOCKS?">
<!ENTITY foxyproxy.newGUI.popup.height "280px">
<!ENTITY foxyproxy.newGUI.popup.width "400px">
<!ENTITY foxyproxy.newGUI1.label "The old FoxyProxy Proxy Settings screen was based on and nearly identical to Firefox's Connection Settings dialog, which in turn was nearly identical to the Proxy Settings in the ancient Mosaic 2.1.1 browser from 1996. The problem with all of these screens is their limited ability to route traffic by protocol. 21st century browsers like Firefox handle many more protocols than HTTP, SSL, FTP, and GOPHER. Clearly, these old screens would be unwieldy if they attempted to include every possible protocol.">
<!ENTITY foxyproxy.newGUI2.label "Since FoxyProxy already enables traffic routing by protocol with wildcard and regular expression patterns, the listing of protocols on this screen is unnecessary. As of version 2.5, FoxyProxy has removed this protocol list from the Proxy Settings GUI. However, this does not reduce functionality. It makes for a simpler interface. If you need to route traffic by protocol, you should define whitelist and blacklist patterns with careful attention to the scheme/protocol portion of the pattern (e.g., ftp://*.yahoo.com/*, *://leahscape.com/*, etc.)">
<!ENTITY foxyproxy.newGUI4.label "Click here for more information.">
<!ENTITY foxyproxy.error.msg.label "Error Message">
<!ENTITY foxyproxy.pac.result.label "PAC Result">
<!ENTITY foxyproxy.options.width "666">
<!ENTITY foxyproxy.options.height "477">
<!ENTITY foxyproxy.torwiz.width "660">
<!ENTITY foxyproxy.torwiz.height "375">
<!ENTITY foxyproxy.addeditproxy.width "660">
<!ENTITY foxyproxy.addeditproxy.height "470">

View File

@ -0,0 +1,136 @@
extensions.foxyproxy@eric.h.jung.description=FoxyProxy
foxyproxy=FoxyProxy
tor=Tor
privoxy=Privoxy
settings.error=Error reading settings
error=Error
welcome=Welcome to FoxyProxy!
yes=Yes
no=No
disabled=Disabled
torwiz.configure=Would you like to configure FoxyProxy for use with Tor?
torwiz.with.without.privoxy=Are you using Tor with Privoxy or without?
torwiz.with=with
torwiz.without=without
torwiz.privoxy.not.required=Please note: as of Firefox 1.5, Privoxy is no longer needed to use Firefox with Tor. Privoxy adds value such as content filtering, but it is not strictly necessary for use with Firefox 1.5+ and Tor. Would you still like Firefox to use Tor via Privoxy?
torwiz.port=Please enter the port on which %S is listening. If you don't know, use the default.
torwiz.nan=That is not a number.
torwiz.proxy.notes=Proxy through the Tor Network - http://tor.eff.org
torwiz.google.mail=Google Mail
torwiz.pattern=http://*mail.google.com/*
torwiz.congratulations=Congratulations! FoxyProxy has been configured for use with Tor. Please ensure Tor is running before visiting URLs which you've specified to use the Tor network. Additionally, if you've configured FoxyProxy to use Privoxy, please ensure it is also running.
torwiz.cancelled=The FoxyProxy Tor Wizard has been cancelled.
mode.patterns.label=Use proxies based on their pre-defined patterns and priorities
mode.patterns.accesskey=U
mode.patterns.tooltip=Use proxies based on their pre-defined patterns and priorities
mode.custom.label=Use proxy "%S" for all URLs
mode.custom.tooltip=Use proxy "%S" for all URLs
mode.disabled.label=Completely disable FoxyProxy
mode.disabled.accesskey=D
mode.disabled.tooltip=Completely disable FoxyProxy
more.label=More
more.accesskey=M
more.tooltip=More Options
invalid.url=The URL specified for automatic proxy configuration is not a valid URL.
protocols.error=Please specify one or more protocols for the proxy.
noport2=A port must be specified for the host.
nohost2=A host name must be specified with the port.
nohostport=Host name and port must be specified.
torwiz.nopatterns=You didn't enter any whitelisted (inclusive) URL patterns. This means the Tor network won't be used. Continue anyway?
months.long.1=January
months.short.1=Jan
months.long.2=February
months.short.2=Feb
months.long.3=March
months.short.3=Mar
months.long.4=April
months.short.4=Apr
months.long.5=May
months.short.5=May
months.long.6=June
months.short.6=Jun
months.long.7=July
months.short.7=Jul
months.long.8=August
months.short.8=Aug
months.long.9=September
months.short.9=Sep
months.long.10=October
months.short.10=Oct
months.long.11=November
months.short.11=Nov
months.long.12=December
months.short.12=Dec
days.long.1=Sunday
days.short.1=Sun
days.long.2=Monday
days.short.2=Mon
days.long.3=Tuesday
days.short.3=Tue
days.long.4=Wednesday
days.short.4=Wed
days.long.5=Thursday
days.short.5=Thu
days.long.6=Friday
days.short.6=Fri
days.long.7=Saturday
days.short.7=Sat
timeformat=HH:nn:ss:zzz mmm dd, yyyy
file.select=Select the file in which to store the settings
manual=Manual
auto=Auto
direct=Direct
delete.proxy.confirm=Delete proxy: are you sure?
pattern.required=A pattern is required.
pattern.invalid.regex=%S is not a valid regular expression.
proxy.error.for.url=Error determining proxy for %S
proxy.default.settings.used=FoxyProxy not used for this URL - default Firefox connection settings were used
proxy.all.urls=All URLs were configured to use this proxy
pac.status=FoxyProxy PAC Status
pac.status.loadfailure=Failed to Load PAC for Proxy "%S"
pac.status.success=Loaded PAC for Proxy "%S"
pac.status.error=Error in PAC for Proxy "%S"
error.noload=Error. Please contact the FoxyProxy development team. No private data is leaking, but the resource will not load. Exception is %S
proxy.name.required=Please enter a name for this proxy on the General Tab.
proxy.default=Default
proxy.default.notes=These are the settings that are used when no patterns match a URL.
proxy.default.match.name=All
delete.proxy.default=You cannot delete this proxy.
copy.proxy.default=You cannot copy this proxy.
logg.maxsize.change=This will clear the log. Continue?
logg.maxsize.maximum=Maximum recommended size is 9999. Higher amounts will consume more memory and may affect performance. Continue anyway?
proxy.random=Proxy was randomly selected
mode.random.label=Use random proxies for all URLs (ignore all patterns and priorities)
mode.random.accesskey=R
mode.random.tooltip=Load URLs through random proxies (ignore all patterns and priorities)
random=Random
random.applicable=This setting only applies when mode is "Use random proxies for all URLs (ignore all patterns and priorities)"
superadd.error=Configuration error: %S has been disabled.
superadd.notify=Proxy %S
superadd.url.added=Pattern %S added to proxy "%S"
autoadd.pattern.label=Dynamic AutoAdd Pattern
quickadd.pattern.label=Dynamic QuickAdd Pattern
torwiz.proxydns=Would you like DNS requests to go through the Tor network? If you don't understand this question, click "yes"
superadd.verboten2=%S cannot be enabled because either no proxies are defined or all proxies are disabled.
autoadd.notice=Please note: AutoAdd affects the time in which a webpage loads. The more complex your pattern and the larger the webpage, the longer AutoAdd takes to process. If you experience significant delays, please disable AutoAdd.\n\nYou are encouraged to use QuickAdd instead of AutoAdd.
autoadd.notice2=
autoconfurl.test.success=The PAC was found, loaded, and successfully parsed.
autoconfurl.test.fail=There was a problem loading, finding, or parsing the PAC:\nHTTP Status Code: %S\nException: %S
none=None
delete.settings.ask=Do you want to delete the FoxyProxy settings stored at %S?
delete.settings.confirm=%S will be deleted when all browsers are closed.
no.wildcard.characters=The pattern has no wildcard characters. This means "%S" will be matched exactly. It is unusual for FoxyProxy to be used in this manner, and this likely means there is a mistake in the pattern or you don't understand how to define FoxyProxy patterns. Continue anyway?
message.stop=Do not show this message again
log.save=Save Log
log.saved2=Log has been saved to %S. View now?
log.nourls.url=Not logged
log.scrub=Clean existing log entries of URLs?
no.white.patterns=You didn't enter any whitelisted (inclusive) URL patterns. This means the proxy won't be used. Continue anyway?
quickadd.quickadd.canceled=QuickAdd has been canceled because the current URL already matches the existing pattern named "%S" in proxy "%S"
quickadd.nourl=Unable to get current URL
cookies.allremoved=All cookies removed
route.error=Error while determining which host to use for proxying
route.exception=Exception while determinig which host to use for proxying %S
see.log=Please see log for more information.
pac.select=Select the PAC file to use
pac.files=PAC Files

View File

@ -0,0 +1,55 @@
<!-- switched from xhtml to html because of BabelZilla WTS adds extraneous html tags on locale download -->
<html>
<head>
<style type="text/css">
table {
border-width: 0px;
border-spacing: 2px;
border-style: none;
border-color: white;
border-collapse: separate;
background-color: rgb(250, 240, 230);
font-size: x-small;
font-family: verdana, sans-serif;
}
table td,table th {
border-width: 1px;
padding: 1px;
border-style: groove;
border-color: green;
background-color: rgb(250, 240, 230);
vertical-align: top;
font-size: x-small;
font-family: verdana, sans-serif;
}
p {background-color: white; font-size: x-small; font-family: verdana, sans-serif;}
body {font-family: verdana, sans-serif;}
h3 {font-size: small;}
h4 {font-size: x-small;}
</style>
</head>
<body>
<h3>URL Patterns</h3>
<p>Before Firefox loads a URL, Firefox asks FoxyProxy if a proxy should be used.
FoxyProxy answers this question by attempting to match the current URL with all of the URL patterns you define below.
The simplest way to specify patterns is with wildcards.</p>
<h4><a name="wildcards">Wildcards</a></h4>
<p>Wildcards are pervasive throughout computing; you've most likely seen
them before. The asterisk (*) substitutes as a wildcard character for zero or more characters,
and the question mark (?) substitutes as a wildcard character for any one character.
</p>
<p>More advanced matching rules are possible using regular expressions. For details, click the "Help Contents" button.</p>
<h4>Wildcard Examples</h4>
<table>
<thead><tr><th>URL Pattern</th><th>Some Matches</th><th>Some Non-Matches</th></tr></thead>
<tr><td>*://*.yahoo.com/*</td><td>Everything in Yahoo's domain</td><td>http://mail.google.com/</td></tr>
<tr><td>*://mail.yahoo.com/*</td><td>http://mail.yahoo.com/<br/>http://mail.yahoo.com/clownshoes/<br/>http://mail.yahoo.com/inbox/123.html<br/>ftp://mail.yahoo.com</td><td>http://maps.yahoo.com</td></tr>
<tr><td>http://??.wikipedia.org/wiki/Clown</td><td>http://en.wikipedia.org/wiki/Clown<br/>http://de.wikipedia.org/wiki/Clown<br/>http://cs.wikipedia.org/wiki/Clown</td><td>https://en.wikipedia.org/wiki/Clown<br/>http://de.wikipedia.org/wiki/Clown/<br/>ftp://en.wikipedia.org/wiki/Clown</td></tr>
<tr><td>http://digg.com/</td><td>http://digg.com/</td><td>http://digg.com<br/>http://www.digg.com/</td></tr>
<tr><td>*://*.asimov.???/*</td><td>ftp://ftp.asimov.net/<br/>ftp://ftp.asimov.com/theory.html<br/>http://bear.asimov.net/mom/<br/>https://isaac.asimov.org/hercules<br/>gopher://asimov.net/</td>
<td>ftp://ftp.asimov.co.uk<br/>http://isaac.home.com/tin.php</td></tr>
<tr><td>*</td><td><i>Matches everything</i></td><td>&nbsp;</td></tr>
</table>
</body>
</html>

View File

@ -0,0 +1,427 @@
<!ENTITY foxyproxy.label "FoxyProxy">
<!ENTITY foxyproxy.accesskey "F">
<!ENTITY foxyproxy.tooltip "FoxyProxy">
<!ENTITY foxyproxy.optionsdialog.label "Opciones para FoxyProxy">
<!ENTITY foxyproxy.options.label "Opciones">
<!ENTITY foxyproxy.options.accesskey "O">
<!ENTITY foxyproxy.options.tooltip "Abrir el Cuadro de Opciones">
<!ENTITY foxyproxy.tree.pickertooltiptext.label "Seleccione con el mouse las columnas que desea mostrar">
<!ENTITY foxyproxy.proxy.name.label "Nombre del Proxy">
<!ENTITY foxyproxy.proxy.name.accesskey "N">
<!ENTITY foxyproxy.proxy.name.tooltip "Nombre del Proxy">
<!ENTITY foxyproxy.proxy.notes.label "Notas del Proxy">
<!ENTITY foxyproxy.proxy.notes.accesskey "N">
<!ENTITY foxyproxy.proxy.notes.tooltip "Notas del Proxy">
<!ENTITY foxyproxy.pattern.label "Patrón">
<!ENTITY foxyproxy.pattern.type.label "Tipo de Patrón">
<!ENTITY foxyproxy.whitelist.blacklist.label "Lista Blanca (inclusiva) o Lista Negra (Exclusiva)">
<!ENTITY foxyproxy.pattern.name.label "Nombre del Patrón">
<!ENTITY foxyproxy.pattern.name.accesskey "P">
<!ENTITY foxyproxy.pattern.name.tooltip "Nombre para el patrón">
<!ENTITY foxyproxy.url.pattern.label "URL o Patrón de URL">
<!ENTITY foxyproxy.url.pattern.accesskey "U">
<!ENTITY foxyproxy.url.pattern.tooltip "URL o Patrón de URL">
<!ENTITY foxyproxy.enabled.label "Habilitado">
<!ENTITY foxyproxy.enabled.accesskey "E">
<!ENTITY foxyproxy.enabled.tooltip "Habilitar/Deshabilitar">
<!ENTITY foxyproxy.delete.selection.label "Eliminar Selección">
<!ENTITY foxyproxy.delete.selection.accesskey "D">
<!ENTITY foxyproxy.delete.selection.tooltip "Eliminar el elemento seleccionado">
<!ENTITY foxyproxy.edit.selection.label "Editar la Selección">
<!ENTITY foxyproxy.edit.selection.accesskey "E">
<!ENTITY foxyproxy.edit.selection.tooltip "Editar el elemento seleccionado">
<!ENTITY foxyproxy.help.label "Contenido de la Ayuda">
<!ENTITY foxyproxy.help.accesskey "H">
<!ENTITY foxyproxy.help.tooltip "Mostrar la Ayuda">
<!ENTITY foxyproxy.close.label "Cerrar">
<!ENTITY foxyproxy.close.accesskey "C">
<!ENTITY foxyproxy.close.tooltip "Cerrar la Ventana">
<!ENTITY foxyproxy.about.label "Acerca de">
<!ENTITY foxyproxy.about.accesskey "A">
<!ENTITY foxyproxy.about.tooltip "Abrir el cuadro de Acerca de">
<!ENTITY foxyproxy.online.label "FoxyProxy En Línea">
<!ENTITY foxyproxy.online.accesskey "O">
<!ENTITY foxyproxy.online.tooltip "Visitar el Sitio Web de FoxyProxy">
<!ENTITY foxyproxy.tor.label "Asistente Tor">
<!ENTITY foxyproxy.tor.accesskey "W">
<!ENTITY foxyproxy.tor.tooltip "Asistente Tor">
<!ENTITY foxyproxy.copy.selection.label "Copiar Selección">
<!ENTITY foxyproxy.copy.selection.accesskey "C">
<!ENTITY foxyproxy.copy.selection.tooltip "Copia la selección">
<!ENTITY foxyproxy.mode.label "Elija el Modo">
<!ENTITY foxyproxy.auto.url.label "URL de configuración automática del proxy">
<!ENTITY foxyproxy.auto.url.accesskey "A">
<!ENTITY foxyproxy.auto.url.tooltip "Ingrese la URL del archivo PAC">
<!ENTITY foxyproxy.port.label "Puerto">
<!ENTITY foxyproxy.port.accesskey "P">
<!ENTITY foxyproxy.port.tooltip "Puerto">
<!ENTITY foxyproxy.socks.proxy.label "Proxy SOCKS">
<!ENTITY foxyproxy.socks.proxy.accesskey "C">
<!ENTITY foxyproxy.socks.proxy.tooltip "URL del Proxy SOCKS">
<!ENTITY foxyproxy.socks.v4 "SOCKS v4/4a">
<!ENTITY foxyproxy.socks.v5 "SOCKS v5">
<!ENTITY foxyproxy.addeditpattern.title "Agregar/Editar Patrón">
<!ENTITY foxyproxy.wildcard.label "Comodines">
<!ENTITY foxyproxy.wildcard.accesskey "W">
<!ENTITY foxyproxy.wildcard.tooltip "Especifica que la URL o el patrón de URL utiliza comodines y no es una expresión regular">
<!ENTITY foxyproxy.wildcard.example.label "Ejemplo: *mail.yahoo.com/*">
<!ENTITY foxyproxy.regex.label "Expresión Regular">
<!ENTITY foxyproxy.regex.accesskey "R">
<!ENTITY foxyproxy.regex.tooltip "Especifica que la URL o el patrón de URL es una expresión regular">
<!ENTITY foxyproxy.regex.example.label "Ejemplo: http?://.*\.mail\.yahoo\.com/.*">
<!ENTITY foxyproxy.version "Versión">
<!ENTITY foxyproxy.createdBy "Creado Por">
<!ENTITY foxyproxy.copyright "Derechos de Autor">
<!ENTITY foxyproxy.rights "Todos los Derechos Reservados">
<!ENTITY foxyproxy.released "Liberado bajo la licencia GPL.">
<!ENTITY foxyproxy.thanks "Agradecimientos especiales a">
<!ENTITY foxyproxy.translations "Traducciones">
<!ENTITY foxyproxy.tab.general.label "General">
<!ENTITY foxyproxy.tab.general.accesskey "G">
<!ENTITY foxyproxy.tab.general.tooltip "Administrar la Configuración General del Proxy">
<!ENTITY foxyproxy.tab.proxy.label "Detalles del Proxy">
<!ENTITY foxyproxy.tab.proxy.accesskey "R">
<!ENTITY foxyproxy.tab.proxy.tooltip "Administrar los Detalles del Proxy">
<!ENTITY foxyproxy.tab.patterns.label "Patrones">
<!ENTITY foxyproxy.tab.patterns.accesskey "P">
<!ENTITY foxyproxy.tab.patterns.tooltip "Administrar Patrones de URL">
<!ENTITY foxyproxy.add.title "Configuración del Proxy">
<!ENTITY foxyproxy.pattern.description "Aquí usted puede indicar cuando se utilizará o no éste proxy">
<!ENTITY foxyproxy.pattern.matchtype.label "Contenidos del Patrón">
<!ENTITY foxyproxy.pattern.matchtype2.label "Pattern To Identify Blocked Websites Contains">
<!ENTITY foxyproxy.pattern.template.matchtype.label "Pattern Template Contains">
<!ENTITY foxyproxy.pattern.whiteblack.label "Inclusión/Exclusión de URL">
<!ENTITY foxyproxy.add.option.direct.label "Conexión Directa a Internet">
<!ENTITY foxyproxy.add.option.direct.accesskey "D">
<!ENTITY foxyproxy.add.option.direct.tooltip "No utilizar un Proxy - utilizar la conexión directa a Internet">
<!ENTITY foxyproxy.add.option.manual.label "Configuración Manual del Proxy">
<!ENTITY foxyproxy.add.option.manual.accesskey "M">
<!ENTITY foxyproxy.add.option.manual.tooltip "Definir manualmente la configuración del proxy">
<!ENTITY foxyproxy.add.new.pattern.label "Agregar un Nuevo Patrón">
<!ENTITY foxyproxy.add.new.pattern.accesskey "A">
<!ENTITY foxyproxy.add.new.pattern.tooltip "Agregar un Nuevo Patrón">
<!ENTITY foxyproxy.menubar.file.label "Archivo">
<!ENTITY foxyproxy.menubar.file.accesskey "F">
<!ENTITY foxyproxy.menubar.file.tooltip "Abrir el Menú de Archivo">
<!ENTITY foxyproxy.menubar.help.label "Ayuda">
<!ENTITY foxyproxy.menubar.help.accesskey "H">
<!ENTITY foxyproxy.menubar.help.tooltip "Abrir el Menú de Ayuda">
<!ENTITY foxyproxy.mode.accesskey "M">
<!ENTITY foxyproxy.mode.tooltip "Elegir cómo habilitar FoxyProxy">
<!ENTITY foxyproxy.tab.proxies.label "Proxies">
<!ENTITY foxyproxy.tab.proxies.accesskey "P">
<!ENTITY foxyproxy.tab.proxies.tooltip "Administrar Proxies">
<!ENTITY foxyproxy.tab.global.label "Configuración Global">
<!ENTITY foxyproxy.tab.global.accesskey "G">
<!ENTITY foxyproxy.tab.global.tooltip "Administrar la Configuración Global">
<!ENTITY foxyproxy.tab.logging.label "Registro">
<!ENTITY foxyproxy.tab.logging.accesskey "L">
<!ENTITY foxyproxy.tab.logging.tooltip "Administrar la Configuración de Registro">
<!ENTITY foxyproxy.proxydns.label "Utilizar un proxy SOCKS para las consultas DNS">
<!ENTITY foxyproxy.proxydns.accesskey "U">
<!ENTITY foxyproxy.proxydns.tooltip "Si está seleccionado, las consultas DNS se realizan por medio de un proxy SOCKS">
<!ENTITY foxyproxy.proxydns.notice "Debe reiniciar Firefox para que los cambios en la configuración tengan efecto. Reinicia ahora?">
<!ENTITY foxyproxy.showstatusbaricon.label "Mostrar el ícono en la barra de estado">
<!ENTITY foxyproxy.showstatusbaricon.accesskey "S">
<!ENTITY foxyproxy.showstatusbaricon.tooltip "Si está marcado, el ícono de FoxyProxy se mostrará en la barra de estado">
<!ENTITY foxyproxy.showstatusbarmode.label "Mostrar el modo (texto) en la barra de estado">
<!ENTITY foxyproxy.showstatusbarmode.accesskey "S">
<!ENTITY foxyproxy.showstatusbarmode.tooltip "Si está marcado, el modo de FoxyProxy se mostrará en la barra de estado">
<!ENTITY foxyproxy.storagelocation.label "Ubicación de Almacenamiento de la Configuración">
<!ENTITY foxyproxy.storagelocation.accesskey "S">
<!ENTITY foxyproxy.storagelocation.tooltip "Ubicación donde almacenar la configuración de FoxyProxy">
<!ENTITY foxyproxy.tab.logging.timestamp.label "Marcas de tiempo">
<!ENTITY foxyproxy.tab.logging.url.label "URL">
<!ENTITY foxyproxy.host.label "Nombre de Equipo">
<!ENTITY foxyproxy.host.accesskey "H">
<!ENTITY foxyproxy.host.tooltip "Nombre de Equipo">
<!ENTITY foxyproxy.clear.label "Borrar">
<!ENTITY foxyproxy.clear.accesskey "C">
<!ENTITY foxyproxy.clear.tooltip "Borrar">
<!ENTITY foxyproxy.refresh.label "Refrescar">
<!ENTITY foxyproxy.refresh.accesskey "R">
<!ENTITY foxyproxy.refresh.tooltip "Refrescar">
<!ENTITY foxyproxy.save.label "Guardar">
<!ENTITY foxyproxy.save.accesskey "S">
<!ENTITY foxyproxy.save.tooltip "Guardar">
<!ENTITY foxyproxy.addnewproxy.label "Agregar un Nuevo Proxy">
<!ENTITY foxyproxy.addnewproxy.accesskey "A">
<!ENTITY foxyproxy.addnewproxy.tooltip "Agregar un Nuevo Proxy">
<!ENTITY foxyproxy.whitelist.label "Lista Blanca">
<!ENTITY foxyproxy.whitelist.accesskey "W">
<!ENTITY foxyproxy.whitelist.tooltip "Las URLs que coincidan con éste patrón serán cargadas con éste proxy">
<!ENTITY foxyproxy.whitelist.description.label "Las URLs que coincidan con éste patrón serán cargadas con éste proxy">
<!ENTITY foxyproxy.blacklist.label "Lista Negra">
<!ENTITY foxyproxy.blacklist.accesskey "B">
<!ENTITY foxyproxy.blacklist.tooltip "Las URLs que coincidan con éste patrón NO serán cargadas con éste proxy">
<!ENTITY foxyproxy.blacklist.description.label "Las URLs que coincidan con éste patrón NO serán cargadas con éste proxy">
<!ENTITY foxyproxy.whiteblack.description.label "Los patrones de Listas Negras (exclusiones) tienen precedencia sobre los patrones de Listas Blancas (inclusiones): si una URL coincide con ambas listas para el mismo proxy, la URL será excluída de ser cargada por éste proxy.">
<!ENTITY foxyproxy.usingPFF.label1 "Estoy utilizando">
<!ENTITY foxyproxy.usingPFF.label2 "Firefox Portátil">
<!ENTITY foxyproxy.usingPFF.accesskey "P">
<!ENTITY foxyproxy.usingPFF.tooltip "Seleccione aquí si está utilizando Firefox Portátil (Portable Firefox)">
<!ENTITY foxyproxy.socks.version.label "Versión de SOCKS">
<!ENTITY foxyproxy.autopacurl.label "URL de Auto PAC">
<!ENTITY foxyproxy.issocks.label "Proxy SOCKS?">
<!ENTITY foxyproxy.issocks.accesskey "S">
<!ENTITY foxyproxy.issocks.tooltip "Es éste un proxy HTTP o un proxy SOCKS?">
<!ENTITY foxyproxy.chinese.simplified "Chino (Simplificado)">
<!ENTITY foxyproxy.chinese.traditional "Chino (Tradicional)">
<!ENTITY foxyproxy.croatian "Croata">
<!ENTITY foxyproxy.czech "Checo">
<!ENTITY foxyproxy.danish "Danés">
<!ENTITY foxyproxy.dutch "Holandés">
<!ENTITY foxyproxy.english "Inglés">
<!ENTITY foxyproxy.english.british "Inglés (Británico)">
<!ENTITY foxyproxy.french "Francés">
<!ENTITY foxyproxy.german "Alemán">
<!ENTITY foxyproxy.greek "Griego">
<!ENTITY foxyproxy.hungarian "Hungarian">
<!ENTITY foxyproxy.italian "Italiano">
<!ENTITY foxyproxy.persian "Persa">
<!ENTITY foxyproxy.polish "Polaco">
<!ENTITY foxyproxy.portugese.brazilian "Portugués (Brasileño)">
<!ENTITY foxyproxy.portugese.portugal "Portugués (Portugal)">
<!ENTITY foxyproxy.romanian "Rumano">
<!ENTITY foxyproxy.russian "Ruso">
<!ENTITY foxyproxy.slovak "Eslovaco">
<!ENTITY foxyproxy.spanish.spain "Español (España)">
<!ENTITY foxyproxy.spanish.argentina "Español (Argentina)">
<!ENTITY foxyproxy.swedish "Sueco">
<!ENTITY foxyproxy.thai.thailand "Tailandés (Tailandia)">
<!ENTITY foxyproxy.turkish "Turco">
<!ENTITY foxyproxy.ukrainian "Ucraniano">
<!ENTITY foxyproxy.your.language "Español (Argentina)">
<!ENTITY foxyproxy.your.name.here "Alberto Jorge Cushnir">
<!ENTITY foxyproxy.moveup.label "Mover hacia Arriba">
<!ENTITY foxyproxy.moveup.tooltip "Incrementar la prioridad de la selección">
<!ENTITY foxyproxy.moveup.accesskey "U">
<!ENTITY foxyproxy.movedown.label "Mover hacia Abajo">
<!ENTITY foxyproxy.movedown.tooltip "Disminuir la prioridad de la selección">
<!ENTITY foxyproxy.movedown.accesskey "D">
<!ENTITY foxyproxy.autoconfurl.view.label "Ver">
<!ENTITY foxyproxy.autoconfurl.view.accesskey "V">
<!ENTITY foxyproxy.autoconfurl.view.tooltip "Ver el archivo de auto-configuración">
<!ENTITY foxyproxy.autoconfurl.test.label "Probar">
<!ENTITY foxyproxy.autoconfurl.test.accesskey "T">
<!ENTITY foxyproxy.autoconfurl.test.tooltip "Probar el archivo de auto-configuración">
<!ENTITY foxyproxy.autoconfurl.reload.label "Recargar el PAC cada">
<!ENTITY foxyproxy.autoconfurl.reload.accesskey "R">
<!ENTITY foxyproxy.autoconfurl.reload.tooltip "Recargar automáticamente el PAC cada cierto período de tiempo especificado">
<!ENTITY foxyproxy.minutes.label "minutos">
<!ENTITY foxyproxy.minutes.tooltip "minutos">
<!ENTITY foxyproxy.logging.maxsize.label "Tamaño Máximo">
<!ENTITY foxyproxy.logging.maxsize.accesskey "M">
<!ENTITY foxyproxy.logging.maxsize.tooltip "Número máximo de entradas en el registro antes de que se lo reinicie.">
<!ENTITY foxyproxy.logging.maxsize.button.label "Establecer">
<!ENTITY foxyproxy.logging.maxsize.button.accesskey "S">
<!ENTITY foxyproxy.logging.maxsize.button.tooltip "Establece el número máximo de entradas del registro antes de que deba vaciarlo">
<!ENTITY foxyproxy.random.label "Carga URLs por medio de proxies elegidos al azar (ignora todos los patrones y prioridades)">
<!ENTITY foxyproxy.random.accesskey "R">
<!ENTITY foxyproxy.random.tooltip "Carga URLs por medio de proxies elegidos al azar (ignora todos los patrones y prioridades)">
<!ENTITY foxyproxy.random.includedirect.label "Incluyendo los proxies configurados como de conexión directa a Internet">
<!ENTITY foxyproxy.random.includedirect.accesskey "I">
<!ENTITY foxyproxy.random.includedirect.tooltip "Se incluyen los proxies configurados como de conexión directa a Internet en la selección aleatoria del proxy">
<!ENTITY foxyproxy.random.includedisabled.label "Incluir proxies deshabilitados">
<!ENTITY foxyproxy.random.includedisabled.accesskey "D">
<!ENTITY foxyproxy.random.includedisabled.tooltip "Se incluyen los proxies deshabilitados en la selección aleatoria del proxy">
<!ENTITY foxyproxy.random.settings.label "Selección Aleatoria del Proxy">
<!ENTITY foxyproxy.random.settings.accesskey "R">
<!ENTITY foxyproxy.random.settings.tooltip "Opciones que afectan a la selección aleatoria de los proxies">
<!ENTITY foxyproxy.tab.autoadd.label "Auto-Agregar">
<!ENTITY foxyproxy.tab.autoadd.accesskey "A">
<!ENTITY foxyproxy.tab.autoadd.tooltip "Administrar la Configuración de Auto-Agregar">
<!ENTITY foxyproxy.autoadd.description "Especifica un patrón que identifica las páginas bloqueadas. Cuando se encuentra un patrón en una página, se añade automáticamente al proxy un patrón correspondiente a la dirección de la página, y opcionalmente se recarga. Esto evita que todas las páginas se identifiquen activamente como bloqueadas.">
<!ENTITY foxyproxy.autoadd.pattern.label "Patrón para identificar los sitios web bloqueados">
<!ENTITY foxyproxy.autoadd.pattern.accesskey "P">
<!ENTITY foxyproxy.autoadd.pattern.tooltip "Patrón que identifica las páginas bloqueadas">
<!ENTITY foxyproxy.autoadd.wildcard.example.label "Ejemplo: *No está autorizado a ver esta página*">
<!ENTITY foxyproxy.autoadd.regex.example.label "Ejemplo: .*Sitio.*ha sido bloqueado.*">
<!ENTITY foxyproxy.autoadd.proxy.label "Proxy al cual se añadirán automáticamente los patrones">
<!ENTITY foxyproxy.autoadd.proxy.accesskey "P">
<!ENTITY foxyproxy.autoadd.proxy.tooltip "Especifica el proxy al cual se añadirán automáticamente las URLs">
<!ENTITY foxyproxy.pattern.template.label "Plantilla de Patrón URL">
<!ENTITY foxyproxy.pattern.template.accesskey "U">
<!ENTITY foxyproxy.pattern.template.tooltip "Plantilla de Patrón URL">
<!ENTITY foxyproxy.pattern.template.example.label1 "Ejemplo">
<!ENTITY foxyproxy.pattern.template.example.label2 "http://fred:secret@mail.foo.com:8080/inbox/msg102.htm#subject?style=elegant">
<!ENTITY foxyproxy.pattern.template.currenturl.label "URL actual">
<!ENTITY foxyproxy.pattern.template.currenturl.accesskey "C">
<!ENTITY foxyproxy.pattern.template.currenturl.tooltip "URL en la barra de direcciones">
<!ENTITY foxyproxy.pattern.template.generatedpattern.label "Patrón Generado">
<!ENTITY foxyproxy.pattern.template.generatedpattern.accesskey "G">
<!ENTITY foxyproxy.pattern.template.generatedpattern.tooltip "Patrón generado en forma dinámica">
<!ENTITY foxyproxy.autoadd.reload.label "Recargar la página una vez que se ha añadido al proxy">
<!ENTITY foxyproxy.autoadd.reload.accesskey "R">
<!ENTITY foxyproxy.autoadd.reload.tooltip "Recarga la página automáticamente una vez que ésta ha sido añadida al proxy">
<!ENTITY foxyproxy.autoadd.notify.label "Notificarme cuando Auto-Agregar haya sido invocado">
<!ENTITY foxyproxy.autoadd.notify.accesskey "N">
<!ENTITY foxyproxy.autoadd.notify.tooltip "Le informa cuando una página está bloqueada &amp; y el patrón de la URL es agregado al proxy.">
<!ENTITY foxyproxy.graphics "Diseños gráfico e imágenes por">
<!ENTITY foxyproxy.website "Sitio Web por">
<!ENTITY foxyproxy.contributions "Contribuyeron">
<!ENTITY foxyproxy.pacloadnotification.label "Informarme cuando se cargue un archivo de configuración automática">
<!ENTITY foxyproxy.pacloadnotification.accesskey "L">
<!ENTITY foxyproxy.pacloadnotification.tooltip "Mostrar un mensaje emergente cuando se cargue un archivo PAC">
<!ENTITY foxyproxy.pacerrornotification.label "Notificarme por errores en la carga de un archivo de configuración automática">
<!ENTITY foxyproxy.pacerrornotification.accesskey "E">
<!ENTITY foxyproxy.pacerrornotification.tooltip "Mostrar un mensaje emergente cuando se encuentren errores en un archivo PAC">
<!ENTITY foxyproxy.toolsmenu.label "Mostrar a FoxyProxy en el menú de herramientas de Firefox">
<!ENTITY foxyproxy.toolsmenu.accesskey "T">
<!ENTITY foxyproxy.toolsmenu.tooltip "Mostrar a FoxyProxy en el menú de herramientas de Firefox">
<!ENTITY foxyproxy.tip.label "Pista">
<!ENTITY foxyproxy.pactips.popup.height "165px">
<!ENTITY foxyproxy.pactips.popup.width "400px">
<!ENTITY foxyproxy.pactip1.label "Para archivos PAC almacenados en el disco local, utilizar el esquema file://. Por ejemplo, para Windows: file://c:/ubicación/proxy.pac , o para Unix/Linux/Mac: file:///home/users/proxy.pac">
<!ENTITY foxyproxy.pactip2.label "Para archivos PAC en un servidor ftp, utilizar el esquema ftp://. Por ejemplo, ftp://leahscape.com/path/proxy.pac">
<!ENTITY foxyproxy.pactip3.label "También puede utilizar http://, https://, y cualquier otro esquema soportado.">
<!ENTITY foxyproxy.contextmenu.label "Mostrar a FoxyProxy en el menú contextual">
<!ENTITY foxyproxy.contextmenu.accesskey "C">
<!ENTITY foxyproxy.contextmenu.tooltip "Mostrar a FoxyProxy en el menú contextual">
<!ENTITY foxyproxy.quickadd.desc1 "QuickAdd agrega una pauta dinámica de URL al proxy cuando usted aprieta Alt-F2. Es la alternativa práctica a AutoAdd. Personalice el atajo Alt-F2 con el">
<!ENTITY foxyproxy.keyconfig.label "KeyConfig">
<!ENTITY foxyproxy.quickadd.desc2 "extensión">
<!ENTITY foxyproxy.quickadd.label "QuickAdd">
<!ENTITY foxyproxy.quickadd.accesskey "Q">
<!ENTITY foxyproxy.quickadd.tooltip "QuickAdd">
<!ENTITY foxyproxy.quickadd.notify.label "Avisarme cuando QuickAdd está activado">
<!ENTITY foxyproxy.quickadd.notify.accesskey "N">
<!ENTITY foxyproxy.quickadd.notify.tooltip "Mostrar un mensaje emergente cuando QuickAdd está activado">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.label "Avisarme cuando QuickAdd sea cancelado">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.label2 "QuickAdd es cancelado automáticamente cuando QuickAdd es activado por Alt-F2, y la URL actual en la barra de direcciones ya coincide con una pauta existente de whitelist para el proxy. De ésta manera se evita que se dupliquen pautas existentes en su configuración. Este seteo no habilita/deshabilita las cancelaciones; sino, activa la notificación cuando ocurre la cancelación.">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.accesskey "C">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.tooltip "Mostrar un mensaje emergente cuando QuickAdd está activado pero de canceló">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.popup.width "400px">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.popup.height "130px">
<!ENTITY foxyproxy.whatsthis "Qué es Ésto?">
<!ENTITY foxyproxy.quickadd.prompt.label "Preguntar para editar y confirmar antes de agregar un patrón al proxy">
<!ENTITY foxyproxy.quickadd.prompt.accesskey "P">
<!ENTITY foxyproxy.quickadd.prompt.tooltip "Preguntar para editar y confirmar antes de agregar un patrón al proxy">
<!ENTITY foxyproxy.quickadd.proxy.label "Proxy al que se agregará el patrón">
<!ENTITY foxyproxy.quickadd.proxy.accesskey "P">
<!ENTITY foxyproxy.quickadd.proxy.tooltip "Elija un proxy al que se agregará el patrón">
<!ENTITY foxyproxy.bypasscache.label "No cargar los caches de Firefox durante la carga.">
<!ENTITY foxyproxy.bypasscache.accesskey "B">
<!ENTITY foxyproxy.bypasscache.tooltip "El caché de Firefox es ignorado">
<!ENTITY foxyproxy.advancedmenus.label "Utilizar Menúes Avanzados">
<!ENTITY foxyproxy.advancedmenus.accesskey "M">
<!ENTITY foxyproxy.advancedmenus.tooltip "Utilizar Menúes Avanzados (estilo FoxyProxy 2.2)">
<!ENTITY foxyproxy.importsettings.label "Importar configuración">
<!ENTITY foxyproxy.importsettings.accesskey "I">
<!ENTITY foxyproxy.importsettings.tooltip "Importar configuración desde un archivo">
<!ENTITY foxyproxy.exportsettings.label "Exportar la configuración actual">
<!ENTITY foxyproxy.exportsettings.accesskey "E">
<!ENTITY foxyproxy.exportsettings.tooltip "Exportar la configuración actual a un archivo">
<!ENTITY foxyproxy.importlist.label "Importar la lista de proxies">
<!ENTITY foxyproxy.importlist.accesskey "I">
<!ENTITY foxyproxy.importlist.tooltip "Importar la lista de proxies desde un archivo">
<!ENTITY foxyproxy.wildcard.reference.label "Referencia de Comodines">
<!ENTITY foxyproxy.wildcard.reference.accesskey "W">
<!ENTITY foxyproxy.wildcard.reference.tooltip "Referencia de Comodines">
<!ENTITY foxyproxy.wildcard.reference.subtitle.label "El arterisco (*) equivale a ninguno o más caracteres, el símbolo de interrogación (?) equivale a cualquier caracter simple">
<!ENTITY foxyproxy.wildcard.reference.mistakes "Errores Comunes Al Escribir Patrones de Comodines">
<!ENTITY foxyproxy.wildcard.reference.goal.label "Objetivo">
<!ENTITY foxyproxy.wildcard.reference.goal1.label "Encontrar todas las páginas en el subdominio de www de MySpace">
<!ENTITY foxyproxy.wildcard.reference.goal2.label "Encontrar el PC local">
<!ENTITY foxyproxy.wildcard.reference.goal3.label "Encontrar todos los subdominios y páginas en abc.com">
<!ENTITY foxyproxy.wildcard.reference.goal4.label "Encontrar todas las páginas en el dominio a.foo.com exceptuando b.foo.com">
<!ENTITY foxyproxy.wildcard.reference.correct.label "Correcto">
<!ENTITY foxyproxy.wildcard.reference.correct2.label "Deberán ser dos patrones">
<!ENTITY foxyproxy.wildcard.reference.incorrect.label "Incorrecto">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason.label "Rasones porque es incorrecto">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason1.label "Debido a que no se utilizaron comodines, coincidirá solo con la página principal">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason2.label "FoxyProxy no entiende éste tipo de sintaxis">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason3.label "No hay comodines">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason4.label "No hay comodines">
<!ENTITY foxyproxy.wildcard.reference.popup.height "350px">
<!ENTITY foxyproxy.logging.noURLs.label "No mostrar o almacenar las URLs">
<!ENTITY foxyproxy.logging.noURLs.accesskey "U">
<!ENTITY foxyproxy.logging.noURLs.tooltip "Las URLs no se guardarán en la memoria RAM ni en el disco">
<!ENTITY foxyproxy.ok.label "Ok">
<!ENTITY foxyproxy.ok.accesskey "O">
<!ENTITY foxyproxy.ok.tooltip "Cerrar la Ventana">
<!ENTITY foxyproxy.pattern.template.reference.label "Referencia para Plantillas de Patrones">
<!ENTITY foxyproxy.pattern.template.reference.accesskey "T">
<!ENTITY foxyproxy.pattern.template.reference.tooltip "Referencia para Plantillas de Patrones">
<!ENTITY foxyproxy.pattern.template.reference.subtitle.label "Las plantillas de patrones de URL definen el formato con que las URLs son QuickAgregadas o AutoAgregadas a los proxies. Las plantillas soportan las siguientes cadenas especiales que, cuando QuickAdded o AutoAdded están activados, son substituídas con el componente correspondiente de URL en la barra de la dirección.">
<!ENTITY foxyproxy.pattern.template.reference.specialstring.label "La Cadena Especial">
<!ENTITY foxyproxy.pattern.template.reference.subststring.label "Se Substituye Con">
<!ENTITY foxyproxy.pattern.template.reference.example.label "Ejemplo">
<!ENTITY foxyproxy.pattern.template.reference.scheme.label "protocol">
<!ENTITY foxyproxy.pattern.template.reference.username.label "username">
<!ENTITY foxyproxy.pattern.template.reference.password.label "password">
<!ENTITY foxyproxy.pattern.template.reference.userpass.label "username &amp; password with &quot;:&quot; &amp; &quot;@&quot;">
<!ENTITY foxyproxy.pattern.template.reference.host.label "host">
<!ENTITY foxyproxy.pattern.template.reference.port.label "port">
<!ENTITY foxyproxy.pattern.template.reference.hostport.label "host &amp; port with &quot;:&quot;">
<!ENTITY foxyproxy.pattern.template.reference.prepath.label "cadena antes del &quot;path&quot;">
<!ENTITY foxyproxy.pattern.template.reference.path.label "path (incluye el nombre del archivo)">
<!ENTITY foxyproxy.pattern.template.reference.directory.label "directorio">
<!ENTITY foxyproxy.pattern.template.reference.filebasename.label "nombre base del archivo">
<!ENTITY foxyproxy.pattern.template.reference.fileextension.label "extensión del archivo">
<!ENTITY foxyproxy.pattern.template.reference.filename.label "nombre completo del archivo">
<!ENTITY foxyproxy.pattern.template.reference.ref.label "porción posterior al &quot;#&quot;">
<!ENTITY foxyproxy.pattern.template.reference.query.label "porción posterior al &quot;?&quot;">
<!ENTITY foxyproxy.pattern.template.reference.spec.label "URL completa">
<!ENTITY foxyproxy.pattern.template.reference.popup.height "400px">
<!ENTITY foxyproxy.pattern.template.reference.popup.width "800px">
<!ENTITY foxyproxy.notifications.label "Notificaciones">
<!ENTITY foxyproxy.notifications.accesskey "N">
<!ENTITY foxyproxy.notifications.tooltip "Configuración de las Notificaciones">
<!ENTITY foxyproxy.indicators.label "Indicadores">
<!ENTITY foxyproxy.indicators.accesskey "I">
<!ENTITY foxyproxy.indicators.tooltip "Configuración de los Indicadores">
<!ENTITY foxyproxy.misc.label "Misceláneas">
<!ENTITY foxyproxy.misc.accesskey "M">
<!ENTITY foxyproxy.misc.tooltip "Configuración de las Misceláneas">
<!ENTITY foxyproxy.animatedicons.label "Animar el ícono de la barra de estado cuando se utilicen proxies">
<!ENTITY foxyproxy.animatedicons.accesskey "A">
<!ENTITY foxyproxy.animatedicons.tooltip "Anima el ícono de la barra de estado cuando se utilizan proxies">
<!ENTITY foxyproxy.statusbaractivation.label "Activación de la Barra de Estado">
<!ENTITY foxyproxy.statusbaractivation.accesskey "S">
<!ENTITY foxyproxy.statusbaractivation.tooltip "Configuración de la Activación de la Barra de Estado">
<!ENTITY foxyproxy.toolbaractivation.label "Activación de la Barra de Herramientas">
<!ENTITY foxyproxy.toolbaractivation.accesskey "T">
<!ENTITY foxyproxy.toolbaractivation.tooltip "Configuración de la Activación de la Barra de Herramientas">
<!ENTITY foxyproxy.leftclicksb.label "Click Izquierdo FoxyProxy en la barra de estado">
<!ENTITY foxyproxy.leftclicksb.accesskey "L">
<!ENTITY foxyproxy.leftclicksb.tooltip "Acción a tomar cuando se hace click con el botón izquierdo sobre FoxyProxy en la barra de estado">
<!ENTITY foxyproxy.middleclicksb.label "Click Central FoxyProxy en la barra de estado">
<!ENTITY foxyproxy.middleclicksb.accesskey "M">
<!ENTITY foxyproxy.middleclicksb.tooltip "Acción a tomar cuando se hace click con el botón central sobre FoxyProxy en la barra de estado">
<!ENTITY foxyproxy.rightclicksb.label "Click Derecho FoxyProxy en la barra de estado">
<!ENTITY foxyproxy.rightclicksb.accesskey "R">
<!ENTITY foxyproxy.rightclicksb.tooltip "Acción a tomar cuando se hace click con el botón derecho sobre FoxyProxy en la barra de estado">
<!ENTITY foxyproxy.leftclicktb.label "Click Izquierdo FoxyProxy en la barra de herramientas">
<!ENTITY foxyproxy.leftclicktb.accesskey "L">
<!ENTITY foxyproxy.leftclicktb.tooltip "Acción a tomar cuando se hace click con el botón izquierdo sobre FoxyProxy en la barra de herramientas">
<!ENTITY foxyproxy.middleclicktb.label "Click Central FoxyProxy en la barra de herramientas">
<!ENTITY foxyproxy.middleclicktb.accesskey "M">
<!ENTITY foxyproxy.middleclicktb.tooltip "Acción a tomar cuando se hace click con el botón central sobre FoxyProxy en la barra de herramientas">
<!ENTITY foxyproxy.rightclicktb.label "Click Derecho FoxyProxy en la barra de herramientas">
<!ENTITY foxyproxy.rightclicktb.accesskey "R">
<!ENTITY foxyproxy.rightclicktb.tooltip "Acción a tomar cuando se hace click con el botón derecho sobre FoxyProxy en la barra de herramientas">
<!ENTITY foxyproxy.click.options "Muestra el diálogo de opciones">
<!ENTITY foxyproxy.click.cycle "Cicla entre los modos">
<!ENTITY foxyproxy.click.contextmenu "Muestra el menú contextual">
<!ENTITY foxyproxy.click.reloadcurtab "Recarga la pestaña actual">
<!ENTITY foxyproxy.click.reloadtabsinbrowser "Recarga todas las pestañas actuales en el navegador">
<!ENTITY foxyproxy.click.reloadtabsinallbrowsers "Recarga todas las pestañas actuales en todos los navegadores">
<!ENTITY foxyproxy.click.removeallcookies "Elimina todas las cookies">
<!ENTITY foxyproxy.includeincycle.label "Incluir éste proxy cuando se ciclan los proxies al hacer click en la barra de estado o en la barra de herramientas (Debe estar seleccionado Configuración Global-&gt;Barra de Estado/Barra de Herramientas-&gt;Ciclar entre los modos)">
<!ENTITY foxyproxy.includeincycle.accesskey "I">
<!ENTITY foxyproxy.includeincycle.tooltip "Incluir éste proxy cuando se hace click sobre la barra de estado/barra de herramientas">
<!ENTITY foxyproxy.changes.msg1 "Ayuda!Donde están las configuraciones para HTTP, SSL, FTP, Gopher y SOCKS?">
<!ENTITY foxyproxy.newGUI.popup.height "270px">
<!ENTITY foxyproxy.newGUI.popup.width "400px">
<!ENTITY foxyproxy.newGUI1.label "La configuración de Proxy del antiguo FoxyProxy estaba basada en forma casi idéntica al diálogo de configuración de Conexiones de Firefox, el que a su vez estaba basado en el antiguo navegador Mosaic 2.1.1 de 1996. El problema con todas esas pantallas radica en la habilidad limitada para redirigir el tráfico por protocolo. Los navegadores del siglo 21 como Firefox manejan muchos más protocolos que HTTP, SSL, FTP y Gopher. Claramente éstas antiguas pantallas no alcanzan si se intenta incluir todos los protocolos posibles.">
<!ENTITY foxyproxy.newGUI2.label "Debido a que FoxyProxy también permite redirigir el tráfico por protocolo utilizando comodines y expresiones regulares, es innecesario tener un listado de protocolos en ésta pantalla. Desde la versión 2.5, FoxyProxy ha removido ésta lista de protocolos de la interface de configuración del Proxy. De todas formas, ésto no reduce la funcionalidad. Hace que la interface sea más simple. Si usted necesita redirigir el tráfico por protocolo, sólo debe definir los patrones para las whitelist y blacklist prestando especial atención a la porción del patrón que contiene el esquema/protocolo. (Ej.&gt; ftp://*yahoo.com/* , *://leahscape.com/* , etc.)">
<!ENTITY foxyproxy.newGUI4.label "Haga click aquí para obtener mayor información.">
<!ENTITY foxyproxy.error.msg.label "Mensaje de Error">
<!ENTITY foxyproxy.pac.result.label "Resultado del PAC">
<!ENTITY foxyproxy.options.width "666">
<!ENTITY foxyproxy.options.height "477">
<!ENTITY foxyproxy.torwiz.width "660">
<!ENTITY foxyproxy.torwiz.height "375">
<!ENTITY foxyproxy.addeditproxy.width "660">
<!ENTITY foxyproxy.addeditproxy.height "470">

View File

@ -0,0 +1,136 @@
extensions.foxyproxy@eric.h.jung.description=FoxyProxy - Recobre Su Privacidad!
foxyproxy=FoxyProxy
tor=Tor
privoxy=Privoxy
settings.error=Error al leer la configuración
error=Error
welcome=Bienvenido a FoxyProxy!
yes=Si
no=No
disabled=Deshabilitado
torwiz.configure=Desea configurar FoxyProxy para utilizar con Tor?
torwiz.with.without.privoxy=Está usted utilizando Tor con o sin Privoxy?
torwiz.with=con
torwiz.without=sin
torwiz.privoxy.not.required=Para tener en cuenta: como con Firefox 1.5, Privoxy ya no es necesario para utilizar Firefox con Tor. Privoxy le agrega valor como ser para filtrar contenidos, pero ya no es estrictamente necesario para utilizar Firefox 1.5+ con Tor. Desea seguir utilizando Privoxy para que Firefox utilice Tor?
torwiz.port=Por favor ingrese el puerto sobre el cual %S está escuchando. Si no lo sabe, utilice la opción por defecto.
torwiz.nan=Eso no es un número.
torwiz.proxy.notes=Proxy por medio de la Red Tor - http://tor.eff.org
torwiz.google.mail=Google Mail
torwiz.pattern=http://*mail.google.com/*
torwiz.congratulations=Felicitaciones! FoxyProxy ha sido configurado para ser utilizado con Tor. Por favor asegúrese de que Tor esté funcionando antes de visitar las URLs para las cuales especificó el uso de la Red Tor. Adicionalmente, si usted configuró a FoxyProxy para que utilice Privoxi, asegúrese que tambien este funcionando.
torwiz.cancelled=El Asistente de FoxyProxy Tor ha sido cancelado.
mode.patterns.label=Utilizar proxies basándose en los patrones y prioridades que definió previamente.
mode.patterns.accesskey=U
mode.patterns.tooltip=Utilizar proxies basándose en los patrones y prioridades que definió previamente.
mode.custom.label=Utilizar el proxy "%S" para todas las URLs
mode.custom.tooltip=Utilizar el proxy "%S" para todas las URLs
mode.disabled.label=Deshabilitar FoxyProxy completamente
mode.disabled.accesskey=D
mode.disabled.tooltip=Deshabilitar FoxyProxy completamente
more.label=Más
more.accesskey=M
more.tooltip=Más Opciones
invalid.url=La URL especificada para la configuración automática de proxy no es válida.
protocols.error=Por favor especifique uno o más protocolos para el proxy.
noport2=Se debe especificar un puerto para el equipo.
nohost2=Se debe especificar un nombre para el equipo junto con el puerto.
nohostport=Se deben especificar un nombre de equipo y un puerto.
torwiz.nopatterns=Usted no ingresó ninguna lista-blanca (inclusiva) de patrones URL
months.long.1=Enero
months.short.1=Ene
months.long.2=Febrero
months.short.2=Feb
months.long.3=Marzo
months.short.3=Mar
months.long.4=Abril
months.short.4=Abr
months.long.5=Mayo
months.short.5=May
months.long.6=Junio
months.short.6=Jun
months.long.7=Julio
months.short.7=Jul
months.long.8=Agosto
months.short.8=Ago
months.long.9=Septiembre
months.short.9=Sep
months.long.10=Octubre
months.short.10=Oct
months.long.11=Noviembre
months.short.11=Nov
months.long.12=Diciembre
months.short.12=Dic
days.long.1=Domingo
days.short.1=Dom
days.long.2=Lunes
days.short.2=Lun
days.long.3=Martes
days.short.3=Mar
days.long.4=Miércole
days.short.4=Mié
days.long.5=Jueves
days.short.5=Jue
days.long.6=Viernes
days.short.6=Vie
days.long.7=Sábado
days.short.7=Sáb
timeformat=HH:MM:SS:zzz mmm dd, aaaa
file.select=Elija el archivo sobre el cual almacenar la configuración
manual=Manual
auto=Automático
direct=Directo
delete.proxy.confirm=Borrar proxy: está usted seguro?
pattern.required=Se necesita un patrón.
pattern.invalid.regex=%S no es una expresión regular válida.
proxy.error.for.url=Error al determinar el proxy para %S
proxy.default.settings.used=No se está utilizando FoxyProxy para ésta URL - Se utilizará la conexión configurada por defecto de Firefox
proxy.all.urls=Se configuró utilizar éste proxy para todas las URLs
pac.status=Estado PAC de FoxyProxy
pac.status.loadfailure=Falló la carga del PAC para el Proxy "%S"
pac.status.success=Se cargó el PAC para el Proxy "%S"
pac.status.error=Error en el PAC para el Proxy "%S"
error.noload=Error. Por favor contacte al equipo de desarrollo de FoxyProxy. No se ha perdido ninguna información privada, pero los recursos no se cargarán.
proxy.name.required=Por favor ingrese un nombre para éste proxy en la Pestaña General.
proxy.default=Por Defecto
proxy.default.notes=Ésta configuración se utilizará cuando no haya coincidencias con los patrones URL.
proxy.default.match.name=Todos
delete.proxy.default=Usted no puede eliminar éste proxy.
copy.proxy.default=Usted no puede copiar éste proxy.
logg.maxsize.change=Ésto eliminará el contenido del registro. Continúa?
logg.maxsize.maximum=El tamaño máximo recomendado es 9999. Valores mayores podrían consumir mucha memoria y afectar el rendimiento. Continúa de todas formas?
proxy.random=Se eligió un proxy al azar.
mode.random.label=Utilizar proxies aleatorios para todas las URLs (ignorar todos los patrones y prioridades)
mode.random.accesskey=R
mode.random.tooltip=Cargar URLs utilizando proxies aleatorios (ignorar todos los patrones y prioridades)
random=Aleatorio
random.applicable=Ésta configuración sólo se aplica cuando está en el modo "Utilizar proxies aleatorios para todas las URLs (ignorar todos los patrones y prioridades)"
superadd.error=Error de configuración. %S ha sido deshabilitado.
superadd.notify=Proxy %S
superadd.url.added=%S agregado al Proxy "%S"
autoadd.pattern.label=Patrones Dinámicos
quickadd.pattern.label=Patrones de Agregado Rápido Dinámico
torwiz.proxydns=Desea realizar las consultas DNS por medio de la red Tor? Si no entiende la pregunta, haga click en "si"
superadd.verboten2=%S cannot be enabled because either no proxies are defined or all proxies are disabled.
autoadd.notice=Para tener en cuenta: Auto-Agregar afecta el tiempo de carga de la página web. Cuanto más complejos sean los patrones que haya definodo y más grande la página web, mayor tiempo le tomará a Auto-Agregar procesar la tarea. Si experimenta retardos significativos, por favor inhabilite Auto-Agregar.
autoadd.notice2=
autoconfurl.test.success=Se encontró, cargó y analizó satisfactoriamente el PAC.
autoconfurl.test.fail=Surgió un problema cargando, buscando o analizando el PAC:\nCódigo de Estado HTTP: %S\nExcepción: %S
none=Ninguno
delete.settings.ask=Desea eliminar la configuración de FoxyProxy almacenada en %S?
delete.settings.confirm=%S será eliminado cuando se cierre el navegador.
no.wildcard.characters=El patrón no tiene caracteres de comodín. Esto significa que "%S" será comparado exactamente. Es inusual para FoxyProxy ser utilizado en esta manera, y esto puede significar que hay un error en el patrón elegido o que usted no entiendió bien cómo definir las pautas de filtrado de FoxyProxy. ¿Continúa de todos modos?
message.stop=No mostrar éste mensaje nuevamente
log.save=Guardar el Archivo de Registro
log.saved2=El Archivo de Registro ha sido guardado en %S. Desea verlo ahora?
log.nourls.url=Sin registrar
log.scrub=Limpia las entradas existentes el registro de URLs?
no.white.patterns=No ha ingresado ningún patrón de URL de lista blanca (inclusiva). Ésto significa que no serán utilizadas por éste proxy. ¿Continúa de todos modos?
quickadd.quickadd.canceled=QuickAdd ha sido cancelado porque la URL actual ya coincide con la pauta existente denominada "%S" en el proxy "%S"
quickadd.nourl=Imposible de obtener la URL actual
cookies.allremoved=Se removieron todas las cookies
route.error=Error al determinar cual equipo utilizar como proxy
route.exception=Ocurrió una excepción al determinar cual equipo utilizar como proxy para %S
see.log=Por favor vea el registro para obtener más información.
pac.select=Select the PAC file to use
pac.files=PAC Files

View File

@ -0,0 +1,55 @@
<!-- switched from xhtml to html because of BabelZilla WTS adds extraneous html tags on locale download -->
<html>
<head>
<style type="text/css">
table {
border-width: 0px;
border-spacing: 2px;
border-style: none;
border-color: white;
border-collapse: separate;
background-color: rgb(250, 240, 230);
font-size: x-small;
font-family: verdana, sans-serif;
}
table td,table th {
border-width: 1px;
padding: 1px;
border-style: groove;
border-color: green;
background-color: rgb(250, 240, 230);
vertical-align: top;
font-size: x-small;
font-family: verdana, sans-serif;
}
p {background-color: white; font-size: x-small; font-family: verdana, sans-serif;}
body {font-family: verdana, sans-serif;}
h3 {font-size: small;}
h4 {font-size: x-small;}
</style>
</head>
<body>
<h3>Patrones URL</h3>
<p>Antes de que Firefox abra una URL, le pregunta a FoxyProxy si debe utilizar un proxy.
FoxyProxy contesta esta pregunta procurando emparejar la URL actual con todos los patrones de URL que usted haya definido.
La manera más sencilla de especificar patrones es utilizar comodines.</p>
<h4><a name="wildcards">Comodines</a></h4>
<p>Los comodines son profusamente utilizados en computación; usted muy
probablemente los haya visto antes. El (*) asterisco sustituye como caracter comodín a cero o más caracteres,
y el (?) signo de interrogación sustituye como carácter comodín a cualquier caracter.
</p>
<p>Es posible definir reglas de coincidencia más avanzadas utilizando expresiones regulares. Para más detalles, haga click en el botón "Contenido de la Ayuda".</p>
<h4>Ejemplos de Comodines</h4>
<table>
<thead><tr><th>Patrones URL</th><th>Algunos Coinciden</th><th>Algunos No Coinciden</th></tr></thead>
<tr><td>*://*.yahoo.com/*</td><td>Todo en el dominio de Yahoo</td><td>http://mail.google.com/</td></tr>
<tr><td>*://mail.yahoo.com/*</td><td>http://mail.yahoo.com/<br/>http://mail.yahoo.com/clownshoes/<br/>http://mail.yahoo.com/inbox/123.html<br/>ftp://mail.yahoo.com</td><td>http://maps.yahoo.com</td></tr>
<tr><td>http://??.wikipedia.org/wiki/Clown</td><td>http://en.wikipedia.org/wiki/Clown<br/>http://de.wikipedia.org/wiki/Clown<br/>http://cs.wikipedia.org/wiki/Clown</td><td>https://en.wikipedia.org/wiki/Clown<br/>http://de.wikipedia.org/wiki/Clown/<br/>ftp://en.wikipedia.org/wiki/Clown</td></tr>
<tr><td>http://digg.com/</td><td>http://digg.com/</td><td>http://digg.com<br/>http://www.digg.com/</td></tr>
<tr><td>*://*.asimov.???/*</td><td>ftp://ftp.asimov.net/<br/>ftp://ftp.asimov.com/theory.html<br/>http://bear.asimov.net/mom/<br/>https://isaac.asimov.org/hercules<br/>gopher://asimov.net/</td>
<td>ftp://ftp.asimov.co.uk<br/>http://isaac.home.com/tin.php</td></tr>
<tr><td>*</td><td><i>Todos Coinciden</i></td><td>&nbsp;</td></tr>
</table>
</body>
</html>

View File

@ -0,0 +1,427 @@
<!ENTITY foxyproxy.label "FoxyProxy">
<!ENTITY foxyproxy.accesskey "F">
<!ENTITY foxyproxy.tooltip "FoxyProxy">
<!ENTITY foxyproxy.optionsdialog.label "FoxyProxy - Opciones">
<!ENTITY foxyproxy.options.label "Opciones">
<!ENTITY foxyproxy.options.accesskey "O">
<!ENTITY foxyproxy.options.tooltip "Abrir el cuadro de opciones">
<!ENTITY foxyproxy.tree.pickertooltiptext.label "Pulse para seleccionar las columnas a mostrar">
<!ENTITY foxyproxy.proxy.name.label "Nombre del proxy">
<!ENTITY foxyproxy.proxy.name.accesskey "N">
<!ENTITY foxyproxy.proxy.name.tooltip "Nombre del proxy">
<!ENTITY foxyproxy.proxy.notes.label "Notas del proxy">
<!ENTITY foxyproxy.proxy.notes.accesskey "N">
<!ENTITY foxyproxy.proxy.notes.tooltip "Notas del proxy">
<!ENTITY foxyproxy.pattern.label "Correspondencia de patrones">
<!ENTITY foxyproxy.pattern.type.label "Tipo de patrón">
<!ENTITY foxyproxy.whitelist.blacklist.label "Lista blanca (inclusiva) o lista negra (exclusiva)">
<!ENTITY foxyproxy.pattern.name.label "Nombre del patrón">
<!ENTITY foxyproxy.pattern.name.accesskey "P">
<!ENTITY foxyproxy.pattern.name.tooltip "Nombre para el patrón">
<!ENTITY foxyproxy.url.pattern.label "Patrón de la dirección">
<!ENTITY foxyproxy.url.pattern.accesskey "D">
<!ENTITY foxyproxy.url.pattern.tooltip "Patrón de la dirección">
<!ENTITY foxyproxy.enabled.label "Habilitado">
<!ENTITY foxyproxy.enabled.accesskey "H">
<!ENTITY foxyproxy.enabled.tooltip "Habilitar/Deshabilitar">
<!ENTITY foxyproxy.delete.selection.label "Borrar selección">
<!ENTITY foxyproxy.delete.selection.accesskey "C">
<!ENTITY foxyproxy.delete.selection.tooltip "Borra el elemento seleccionado">
<!ENTITY foxyproxy.edit.selection.label "Editar selección">
<!ENTITY foxyproxy.edit.selection.accesskey "E">
<!ENTITY foxyproxy.edit.selection.tooltip "Edita el elemento seleccionado">
<!ENTITY foxyproxy.help.label "Contenidos de la ayuda">
<!ENTITY foxyproxy.help.accesskey "u">
<!ENTITY foxyproxy.help.tooltip "Mostrar ayuda">
<!ENTITY foxyproxy.close.label "Cerrar">
<!ENTITY foxyproxy.close.accesskey "C">
<!ENTITY foxyproxy.close.tooltip "Cerrar ventana">
<!ENTITY foxyproxy.about.label "Acerca de">
<!ENTITY foxyproxy.about.accesskey "A">
<!ENTITY foxyproxy.about.tooltip "Abre la ventana &apos;Acerca de&apos;">
<!ENTITY foxyproxy.online.label "Página web de FoxProxy">
<!ENTITY foxyproxy.online.accesskey "w">
<!ENTITY foxyproxy.online.tooltip "Visite la página web de FoxyProxy">
<!ENTITY foxyproxy.tor.label "Asistente Tor">
<!ENTITY foxyproxy.tor.accesskey "T">
<!ENTITY foxyproxy.tor.tooltip "Asistente Tor">
<!ENTITY foxyproxy.copy.selection.label "Copiar selección">
<!ENTITY foxyproxy.copy.selection.accesskey "C">
<!ENTITY foxyproxy.copy.selection.tooltip "Copia la selección">
<!ENTITY foxyproxy.mode.label "Seleccionar modo">
<!ENTITY foxyproxy.auto.url.label "Dirección de configuración automática del proxy">
<!ENTITY foxyproxy.auto.url.accesskey "A">
<!ENTITY foxyproxy.auto.url.tooltip "Introduzca la dirección del archivo PAC">
<!ENTITY foxyproxy.port.label "Puerto">
<!ENTITY foxyproxy.port.accesskey "P">
<!ENTITY foxyproxy.port.tooltip "Puerto">
<!ENTITY foxyproxy.socks.proxy.label "Proxy SOCKS">
<!ENTITY foxyproxy.socks.proxy.accesskey "C">
<!ENTITY foxyproxy.socks.proxy.tooltip "Dirección del Proxy SOCKS">
<!ENTITY foxyproxy.socks.v4 "SOCKS v4/4a">
<!ENTITY foxyproxy.socks.v5 "SOCKS v5">
<!ENTITY foxyproxy.addeditpattern.title "Añadir/Editar patrón">
<!ENTITY foxyproxy.wildcard.label "Comodines">
<!ENTITY foxyproxy.wildcard.accesskey "C">
<!ENTITY foxyproxy.wildcard.tooltip "Indica que el patrón de la dirección usa comodines y no es una expresión regular">
<!ENTITY foxyproxy.wildcard.example.label "Ejemplo: *mail.yahoo.es/*">
<!ENTITY foxyproxy.regex.label "Expresión regular">
<!ENTITY foxyproxy.regex.accesskey "R">
<!ENTITY foxyproxy.regex.tooltip "Indica que el patrón de la dirección es una expresión regular">
<!ENTITY foxyproxy.regex.example.label "Ejemplo: http?://.*\.mail\.yahoo\.es/.*">
<!ENTITY foxyproxy.version "Versión">
<!ENTITY foxyproxy.createdBy "Creada por">
<!ENTITY foxyproxy.copyright "Copyright">
<!ENTITY foxyproxy.rights "Todos los derechos reservados.">
<!ENTITY foxyproxy.released "Liberado bajo la licencia GPL.">
<!ENTITY foxyproxy.thanks "Agradecimientos especiales a">
<!ENTITY foxyproxy.translations "Traducciones">
<!ENTITY foxyproxy.tab.general.label "General">
<!ENTITY foxyproxy.tab.general.accesskey "G">
<!ENTITY foxyproxy.tab.general.tooltip "Administrar opciones generales de proxys">
<!ENTITY foxyproxy.tab.proxy.label "Detalles">
<!ENTITY foxyproxy.tab.proxy.accesskey "D">
<!ENTITY foxyproxy.tab.proxy.tooltip "Administrar detalles de los proxys">
<!ENTITY foxyproxy.tab.patterns.label "Patrones">
<!ENTITY foxyproxy.tab.patterns.accesskey "P">
<!ENTITY foxyproxy.tab.patterns.tooltip "Administrar patrones de direcciones">
<!ENTITY foxyproxy.add.title "Opciones del proxy">
<!ENTITY foxyproxy.pattern.description "Aquí puede añadir o eliminar las direcciones para las que se usará el proxy.">
<!ENTITY foxyproxy.pattern.matchtype.label "El patrón contiene">
<!ENTITY foxyproxy.pattern.matchtype2.label "Pattern To Identify Blocked Websites Contains">
<!ENTITY foxyproxy.pattern.template.matchtype.label "Pattern Template Contains">
<!ENTITY foxyproxy.pattern.whiteblack.label "Inclusión/Exclusión de direcciones">
<!ENTITY foxyproxy.add.option.direct.label "Conexión directa a internet (sin proxy)">
<!ENTITY foxyproxy.add.option.direct.accesskey "D">
<!ENTITY foxyproxy.add.option.direct.tooltip "No usar ningún proxy - usar la conexión directa a internet">
<!ENTITY foxyproxy.add.option.manual.label "Configuración manual del proxy">
<!ENTITY foxyproxy.add.option.manual.accesskey "M">
<!ENTITY foxyproxy.add.option.manual.tooltip "Define una configuración del proxy manualmente">
<!ENTITY foxyproxy.add.new.pattern.label "Añadir nuevo patrón">
<!ENTITY foxyproxy.add.new.pattern.accesskey "A">
<!ENTITY foxyproxy.add.new.pattern.tooltip "Añadir nuevo patrón">
<!ENTITY foxyproxy.menubar.file.label "Archivo">
<!ENTITY foxyproxy.menubar.file.accesskey "A">
<!ENTITY foxyproxy.menubar.file.tooltip "Abre el menú archivo">
<!ENTITY foxyproxy.menubar.help.label "Ayuda">
<!ENTITY foxyproxy.menubar.help.accesskey "u">
<!ENTITY foxyproxy.menubar.help.tooltip "Abre el menú ayuda">
<!ENTITY foxyproxy.mode.accesskey "S">
<!ENTITY foxyproxy.mode.tooltip "Seleccionar cómo habilitar FoxyProxy">
<!ENTITY foxyproxy.tab.proxies.label "Proxys">
<!ENTITY foxyproxy.tab.proxies.accesskey "P">
<!ENTITY foxyproxy.tab.proxies.tooltip "Administrar proxys">
<!ENTITY foxyproxy.tab.global.label "Opciones globales">
<!ENTITY foxyproxy.tab.global.accesskey "G">
<!ENTITY foxyproxy.tab.global.tooltip "Administrar opciones globales">
<!ENTITY foxyproxy.tab.logging.label "Registro">
<!ENTITY foxyproxy.tab.logging.accesskey "R">
<!ENTITY foxyproxy.tab.logging.tooltip "Cambiar opciones de registro">
<!ENTITY foxyproxy.proxydns.label "Usar un proxy SOCKS para la búsqueda DNS">
<!ENTITY foxyproxy.proxydns.accesskey "U">
<!ENTITY foxyproxy.proxydns.tooltip "Si se selecciona, la búsqueda DNS se realizará a través de un servidor proxy SOCKS">
<!ENTITY foxyproxy.proxydns.notice "Es necesario reiniciar Firefox para aplicar los cambios, ¿Reiniciar ahora?">
<!ENTITY foxyproxy.showstatusbaricon.label "Mostrar un icono en la barra de estado">
<!ENTITY foxyproxy.showstatusbaricon.accesskey "i">
<!ENTITY foxyproxy.showstatusbaricon.tooltip "Si marca esta opción, el icono de FoxyProxy se mostrará en la barra de estado">
<!ENTITY foxyproxy.showstatusbarmode.label "Mostrar modo (texto) en la barra de estao">
<!ENTITY foxyproxy.showstatusbarmode.accesskey "S">
<!ENTITY foxyproxy.showstatusbarmode.tooltip "Si marca esta opción, el modo de FoxyProxy se mostrará en la barra de estado">
<!ENTITY foxyproxy.storagelocation.label "Dirección para guardar la configuración">
<!ENTITY foxyproxy.storagelocation.accesskey "D">
<!ENTITY foxyproxy.storagelocation.tooltip "Dirección para guardar la configuración de FoxyProxy">
<!ENTITY foxyproxy.tab.logging.timestamp.label "Marcas de tiempo">
<!ENTITY foxyproxy.tab.logging.url.label "Dirección">
<!ENTITY foxyproxy.host.label "Nombre del host">
<!ENTITY foxyproxy.host.accesskey "H">
<!ENTITY foxyproxy.host.tooltip "Nombre del host">
<!ENTITY foxyproxy.clear.label "Borrar">
<!ENTITY foxyproxy.clear.accesskey "B">
<!ENTITY foxyproxy.clear.tooltip "Borrar">
<!ENTITY foxyproxy.refresh.label "Refrescar">
<!ENTITY foxyproxy.refresh.accesskey "R">
<!ENTITY foxyproxy.refresh.tooltip "Refrescar">
<!ENTITY foxyproxy.save.label "Guardar">
<!ENTITY foxyproxy.save.accesskey "G">
<!ENTITY foxyproxy.save.tooltip "Guardar">
<!ENTITY foxyproxy.addnewproxy.label "Añadir nuevo proxy">
<!ENTITY foxyproxy.addnewproxy.accesskey "A">
<!ENTITY foxyproxy.addnewproxy.tooltip "Añadir nuevo proxy">
<!ENTITY foxyproxy.whitelist.label "Lista blanca">
<!ENTITY foxyproxy.whitelist.accesskey "b">
<!ENTITY foxyproxy.whitelist.tooltip "Las direcciones que coincidan con este patrón se cargan usando este proxy">
<!ENTITY foxyproxy.whitelist.description.label "Las direcciones que coincidan con este patrón se cargan usando este proxy">
<!ENTITY foxyproxy.blacklist.label "Lista negra">
<!ENTITY foxyproxy.blacklist.accesskey "n">
<!ENTITY foxyproxy.blacklist.tooltip "Las direcciones que coinciden con este patrón no están cargadas a través de este proxy">
<!ENTITY foxyproxy.blacklist.description.label "Las direcciones que coinciden con este patrón no están cargadas a través de este proxy">
<!ENTITY foxyproxy.whiteblack.description.label "La lista negra (exclusión) de patrones tiene precedencia sobre la lista blanca (inclusión): si una dirección coincide tanto con un patrón de la lista blanca como con otro de la lista negra para el mismo proxy, la dirección no será cargada por el proxy.">
<!ENTITY foxyproxy.usingPFF.label1 "Estoy usando">
<!ENTITY foxyproxy.usingPFF.label2 "Portable Firefox">
<!ENTITY foxyproxy.usingPFF.accesskey "P">
<!ENTITY foxyproxy.usingPFF.tooltip "Compruebe si está usando Portable Firefox">
<!ENTITY foxyproxy.socks.version.label "Versión SOCKS">
<!ENTITY foxyproxy.autopacurl.label "Dirección automática">
<!ENTITY foxyproxy.issocks.label "¿proxy SOCKS?">
<!ENTITY foxyproxy.issocks.accesskey "S">
<!ENTITY foxyproxy.issocks.tooltip "¿Es un webproxy o un proxy SOCKS?">
<!ENTITY foxyproxy.chinese.simplified "Chino (Simplificado)">
<!ENTITY foxyproxy.chinese.traditional "Chino (Tradicional)">
<!ENTITY foxyproxy.croatian "Croata">
<!ENTITY foxyproxy.czech "Checo">
<!ENTITY foxyproxy.danish "Danés">
<!ENTITY foxyproxy.dutch "Holandés">
<!ENTITY foxyproxy.english "Inglés">
<!ENTITY foxyproxy.english.british "Inglés (Británico)">
<!ENTITY foxyproxy.french "Francés">
<!ENTITY foxyproxy.german "Alemán">
<!ENTITY foxyproxy.greek "Griego">
<!ENTITY foxyproxy.hungarian "Húngaro">
<!ENTITY foxyproxy.italian "Italiano">
<!ENTITY foxyproxy.persian "Persa">
<!ENTITY foxyproxy.polish "Polaco">
<!ENTITY foxyproxy.portugese.brazilian "Portugués (Brasileño)">
<!ENTITY foxyproxy.portugese.portugal "Portugués (Portugal)">
<!ENTITY foxyproxy.romanian "Rumano">
<!ENTITY foxyproxy.russian "Ruso">
<!ENTITY foxyproxy.slovak "Eslovaco">
<!ENTITY foxyproxy.spanish.spain "Español (España)">
<!ENTITY foxyproxy.spanish.argentina "Español (Argentina)">
<!ENTITY foxyproxy.swedish "Sueco">
<!ENTITY foxyproxy.thai.thailand "Thailandés (Thailandia)">
<!ENTITY foxyproxy.turkish "Turco">
<!ENTITY foxyproxy.ukrainian "Ucraniano">
<!ENTITY foxyproxy.your.language "Su idioma">
<!ENTITY foxyproxy.your.name.here "Su nombre aquí">
<!ENTITY foxyproxy.moveup.label "Mover arriba">
<!ENTITY foxyproxy.moveup.tooltip "Sube la prioridad de la selección actual">
<!ENTITY foxyproxy.moveup.accesskey "a">
<!ENTITY foxyproxy.movedown.label "Mover abajo">
<!ENTITY foxyproxy.movedown.tooltip "Baja la prioridad de la selección actual">
<!ENTITY foxyproxy.movedown.accesskey "b">
<!ENTITY foxyproxy.autoconfurl.view.label "Ver">
<!ENTITY foxyproxy.autoconfurl.view.accesskey "V">
<!ENTITY foxyproxy.autoconfurl.view.tooltip "Ver archivo de autoconfiguración">
<!ENTITY foxyproxy.autoconfurl.test.label "Probar">
<!ENTITY foxyproxy.autoconfurl.test.accesskey "P">
<!ENTITY foxyproxy.autoconfurl.test.tooltip "Probar el archivo de auto-configuración">
<!ENTITY foxyproxy.autoconfurl.reload.label "Recargar el PAC cada">
<!ENTITY foxyproxy.autoconfurl.reload.accesskey "R">
<!ENTITY foxyproxy.autoconfurl.reload.tooltip "Recargar automáticamente el archivo PAC en el intervalo especificado">
<!ENTITY foxyproxy.minutes.label "minutos">
<!ENTITY foxyproxy.minutes.tooltip "minutos">
<!ENTITY foxyproxy.logging.maxsize.label "Tamaño máximo antes de recortar el registro">
<!ENTITY foxyproxy.logging.maxsize.accesskey "M">
<!ENTITY foxyproxy.logging.maxsize.tooltip "Máximo número de las entradas de registro antes de que el log se borre">
<!ENTITY foxyproxy.logging.maxsize.button.label "Establecer">
<!ENTITY foxyproxy.logging.maxsize.button.accesskey "S">
<!ENTITY foxyproxy.logging.maxsize.button.tooltip "Establece el máximo número de las entradas de registro antes de que el log se borre">
<!ENTITY foxyproxy.random.label "Cargar direcciones usando proxys aleatorios (ignorar todos los patrones y prioridades)">
<!ENTITY foxyproxy.random.accesskey "R">
<!ENTITY foxyproxy.random.tooltip "Cargar direcciones usando proxys aleatorios (ignorar todos los patrones y prioridades)">
<!ENTITY foxyproxy.random.includedirect.label "Incluir proxys configurados como conexiones directas de internet">
<!ENTITY foxyproxy.random.includedirect.accesskey "I">
<!ENTITY foxyproxy.random.includedirect.tooltip "Los proxys configurados como conexión directa de internet se incluyen en la selección aleatoria de los proxys.">
<!ENTITY foxyproxy.random.includedisabled.label "Incluir proxys deshabilitados">
<!ENTITY foxyproxy.random.includedisabled.accesskey "D">
<!ENTITY foxyproxy.random.includedisabled.tooltip "Los proxys configurados como deshabilitados serán incluidos en la selección de proxys aleatorios">
<!ENTITY foxyproxy.random.settings.label "Selección aleatoria del proxy">
<!ENTITY foxyproxy.random.settings.accesskey "R">
<!ENTITY foxyproxy.random.settings.tooltip "Opciones que afectan a la selección aleatoria de los proxys">
<!ENTITY foxyproxy.tab.autoadd.label "AutoAdd">
<!ENTITY foxyproxy.tab.autoadd.accesskey "A">
<!ENTITY foxyproxy.tab.autoadd.tooltip "Opciones de AutoAdd">
<!ENTITY foxyproxy.autoadd.description "Especifica un patrón que identifica las páginas bloqueadas. Cuando se encuentra un patrón en una página, se añade automáticamente al proxy un patrón correspondiente a la dirección de la página, y opcionalmente se recarga. Esto evita que todas las páginas se identifiquen activamente como bloqueadas.">
<!ENTITY foxyproxy.autoadd.pattern.label "Patrón para identificar las páginas bloqueadas">
<!ENTITY foxyproxy.autoadd.pattern.accesskey "P">
<!ENTITY foxyproxy.autoadd.pattern.tooltip "Patrón que identifica las páginas bloqueadas">
<!ENTITY foxyproxy.autoadd.wildcard.example.label "Ejemplo: *No está autorizado a ver esta página*">
<!ENTITY foxyproxy.autoadd.regex.example.label "Ejemplo: .*Sitio.*ha sido bloqueado.*">
<!ENTITY foxyproxy.autoadd.proxy.label "Proxy cuyos patrones se añaden automáticamente">
<!ENTITY foxyproxy.autoadd.proxy.accesskey "P">
<!ENTITY foxyproxy.autoadd.proxy.tooltip "Especifique el proxy cuyas direcciones se añaden automáticamente">
<!ENTITY foxyproxy.pattern.template.label "Plantilla de patrón de dirección">
<!ENTITY foxyproxy.pattern.template.accesskey "P">
<!ENTITY foxyproxy.pattern.template.tooltip "Plantilla de patrón de dirección">
<!ENTITY foxyproxy.pattern.template.example.label1 "Ejemplo para">
<!ENTITY foxyproxy.pattern.template.example.label2 "http://fred:secret@mail.foo.com:8080/inbox/msg102.htm#subject?style=elegant">
<!ENTITY foxyproxy.pattern.template.currenturl.label "Dirección actual">
<!ENTITY foxyproxy.pattern.template.currenturl.accesskey "D">
<!ENTITY foxyproxy.pattern.template.currenturl.tooltip "Dirección en la barra de direcciones">
<!ENTITY foxyproxy.pattern.template.generatedpattern.label "Patrón generado">
<!ENTITY foxyproxy.pattern.template.generatedpattern.accesskey "g">
<!ENTITY foxyproxy.pattern.template.generatedpattern.tooltip "Patrón generado dinámicamente">
<!ENTITY foxyproxy.autoadd.reload.label "Recarga la página una vez que el patrón se haya añadido al proxy">
<!ENTITY foxyproxy.autoadd.reload.accesskey "R">
<!ENTITY foxyproxy.autoadd.reload.tooltip "Recarga la página automáticamente una vez que el patrón se haya añadido al proxy">
<!ENTITY foxyproxy.autoadd.notify.label "Notificarme cuando se active AutoAdd">
<!ENTITY foxyproxy.autoadd.notify.accesskey "N">
<!ENTITY foxyproxy.autoadd.notify.tooltip "Informa cuando una página es bloqueada &amp; y el patrón de la dirección se añade al proxy">
<!ENTITY foxyproxy.graphics "Diseño gráfico e imágenes de">
<!ENTITY foxyproxy.website "Página web por">
<!ENTITY foxyproxy.contributions "Colaboración de">
<!ENTITY foxyproxy.pacloadnotification.label "Notificarme de fallos en la carga del archivo de auto-configuración del proxy">
<!ENTITY foxyproxy.pacloadnotification.accesskey "N">
<!ENTITY foxyproxy.pacloadnotification.tooltip "Mostrar una ventana emergente cuando se cargue el archivo PAC">
<!ENTITY foxyproxy.pacerrornotification.label "Notificarme de errores en el archivo de auto-configuración del proxy">
<!ENTITY foxyproxy.pacerrornotification.accesskey "E">
<!ENTITY foxyproxy.pacerrornotification.tooltip "Display a popup when about PAC file errors">
<!ENTITY foxyproxy.toolsmenu.label "Mostrar el icono de FoxyProxy en el menú Herramientas">
<!ENTITY foxyproxy.toolsmenu.accesskey "H">
<!ENTITY foxyproxy.toolsmenu.tooltip "Mostrar el icono de FoxyProxy en el menú Herramientas">
<!ENTITY foxyproxy.tip.label "Consejo">
<!ENTITY foxyproxy.pactips.popup.height "165px">
<!ENTITY foxyproxy.pactips.popup.width "400px">
<!ENTITY foxyproxy.pactip1.label "Para archivos PAC guardados en el disco duro local, use el esquema file://. Por ejemplo, file://c:/path/proxy.pac en sistemas Windows, o file:///home/users/joe/proxy.pac en Unix/Linux/Mac.">
<!ENTITY foxyproxy.pactip2.label "Para archivos PAC en un servidor ftp, use el esquema ftp://. Por ejemplo, ftp://leahscape.com/path/proxy.pac">
<!ENTITY foxyproxy.pactip3.label "También puede usar http://, https://, y otros esquemas admitidos">
<!ENTITY foxyproxy.contextmenu.label "Mostrar el icono de FoxyProxy en el menú contextual">
<!ENTITY foxyproxy.contextmenu.accesskey "M">
<!ENTITY foxyproxy.contextmenu.tooltip "Mostrar icono en el menú contextual">
<!ENTITY foxyproxy.quickadd.desc1 "QuickAdd añade un patrón de direcciones dinámica para un proxy cuando pulsa Alt-F2. Es una alternativa práctica a AutoAdd. Personalice la combinación Alt-F2 con la extensión">
<!ENTITY foxyproxy.keyconfig.label "KeyConfig">
<!ENTITY foxyproxy.quickadd.desc2 ".">
<!ENTITY foxyproxy.quickadd.label "QuickAdd">
<!ENTITY foxyproxy.quickadd.accesskey "Q">
<!ENTITY foxyproxy.quickadd.tooltip "Administrar opciones de QuickAdd">
<!ENTITY foxyproxy.quickadd.notify.label "Notificarme cuando QuickAdd se active">
<!ENTITY foxyproxy.quickadd.notify.accesskey "N">
<!ENTITY foxyproxy.quickadd.notify.tooltip "Muestra una ventana emergente cuando se activa QuickAdd">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.label "Notificarme si QuickAdd se cancela">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.label2 "QuickAdd is automatically canceled when QuickAdd is activated through Alt-F2, and the current URL in the address bar already matches an existing proxy&apos;s whitelist pattern. In this way duplicate patterns, which can clutter your configuration, are prevented. This setting does not enable/disable cancelation; rather, it toggles notification when cancelation occurs.">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.accesskey "C">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.tooltip "Mostrar un aviso emergente cuando QuickAdd esté activo, pero cancelado">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.popup.width "400px">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.popup.height "130px">
<!ENTITY foxyproxy.whatsthis "¿Qué es esto?">
<!ENTITY foxyproxy.quickadd.prompt.label "Aviso para editar y confimar antes de añadir patrones al proxy">
<!ENTITY foxyproxy.quickadd.prompt.accesskey "P">
<!ENTITY foxyproxy.quickadd.prompt.tooltip "Aviso para editar y confimar antes de añadir patrones al proxy">
<!ENTITY foxyproxy.quickadd.proxy.label "Proxy al que será añadido el patrón">
<!ENTITY foxyproxy.quickadd.proxy.accesskey "P">
<!ENTITY foxyproxy.quickadd.proxy.tooltip "Elegir el proxy al que será añadido el patrón">
<!ENTITY foxyproxy.bypasscache.label "Ignorar la caché de Firefox al cargar">
<!ENTITY foxyproxy.bypasscache.accesskey "I">
<!ENTITY foxyproxy.bypasscache.tooltip "La caché de Firefox es ignorada">
<!ENTITY foxyproxy.advancedmenus.label "Usar menús avanzados">
<!ENTITY foxyproxy.advancedmenus.accesskey "a">
<!ENTITY foxyproxy.advancedmenus.tooltip "Usar menús avanzados (Estilo de FoxyProxy 2.2)">
<!ENTITY foxyproxy.importsettings.label "Importar opciones">
<!ENTITY foxyproxy.importsettings.accesskey "I">
<!ENTITY foxyproxy.importsettings.tooltip "Importar las opciones desde un archivo">
<!ENTITY foxyproxy.exportsettings.label "Exportar opciones actuales">
<!ENTITY foxyproxy.exportsettings.accesskey "E">
<!ENTITY foxyproxy.exportsettings.tooltip "Exportar las opciones actuales en un archivo">
<!ENTITY foxyproxy.importlist.label "Importar lista de proxis">
<!ENTITY foxyproxy.importlist.accesskey "I">
<!ENTITY foxyproxy.importlist.tooltip "Importar un archivo de texto con una lista de proxis">
<!ENTITY foxyproxy.wildcard.reference.label "Referencia de comodines">
<!ENTITY foxyproxy.wildcard.reference.accesskey "R">
<!ENTITY foxyproxy.wildcard.reference.tooltip "Referencia de comodines">
<!ENTITY foxyproxy.wildcard.reference.subtitle.label "El asterisco (*) corresponde a cero o más caracteres, y el signo de interrogación (?) a un caracter simple">
<!ENTITY foxyproxy.wildcard.reference.mistakes "Errores comunes al escribir patrones con comodines">
<!ENTITY foxyproxy.wildcard.reference.goal.label "Objetivo">
<!ENTITY foxyproxy.wildcard.reference.goal1.label "Todas las páginas en el subdominio de MySpace">
<!ENTITY foxyproxy.wildcard.reference.goal2.label "El equipo local">
<!ENTITY foxyproxy.wildcard.reference.goal3.label "Todos los subdominios y páginas de abc.com">
<!ENTITY foxyproxy.wildcard.reference.goal4.label "Todas las páginas del dominio a.foo.com, pero no las de b.foo.com">
<!ENTITY foxyproxy.wildcard.reference.correct.label "Correcto">
<!ENTITY foxyproxy.wildcard.reference.correct2.label "Debe haber dos patrones">
<!ENTITY foxyproxy.wildcard.reference.incorrect.label "Incorrecto">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason.label "Razón por la que es incorrecto">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason1.label "No hay comodines, por lo que sólo la pagina de inicio coincidirá">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason2.label "FoxyProxy no entiende este tipo de sintaxis">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason3.label "No hay comodines">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason4.label "No hay comodines">
<!ENTITY foxyproxy.wildcard.reference.popup.height "375px">
<!ENTITY foxyproxy.logging.noURLs.label "No guardar o mostrar las direcciones">
<!ENTITY foxyproxy.logging.noURLs.accesskey "N">
<!ENTITY foxyproxy.logging.noURLs.tooltip "Las direcciones no se guardarán en la RAM ni en el disco">
<!ENTITY foxyproxy.ok.label "OK">
<!ENTITY foxyproxy.ok.accesskey "O">
<!ENTITY foxyproxy.ok.tooltip "Cerrar ventana">
<!ENTITY foxyproxy.pattern.template.reference.label "Referencia de plantillas de patrones">
<!ENTITY foxyproxy.pattern.template.reference.accesskey "R">
<!ENTITY foxyproxy.pattern.template.reference.tooltip "Referencia de plantillas de patrones">
<!ENTITY foxyproxy.pattern.template.reference.subtitle.label "Las plantillas de patrones de direcciones definen el formato con el que las direcciones se añadirán usando QuickAdd o AutoAdd a los proxys. Las plantillas admiten las siguientes cadenas especiales que, cuando QuickAdd o AutoAdd están activos, serán sustituidas con el componente correspondiente de la dirección en la barra de direcciones.">
<!ENTITY foxyproxy.pattern.template.reference.specialstring.label "Cadena especial">
<!ENTITY foxyproxy.pattern.template.reference.subststring.label "Sustituir con">
<!ENTITY foxyproxy.pattern.template.reference.example.label "Ejemplo">
<!ENTITY foxyproxy.pattern.template.reference.scheme.label "protocolo">
<!ENTITY foxyproxy.pattern.template.reference.username.label "nombre de usuario">
<!ENTITY foxyproxy.pattern.template.reference.password.label "contraseña">
<!ENTITY foxyproxy.pattern.template.reference.userpass.label "nombre de usuario &amp; contraseña con &quot;:&quot; &amp; &quot;@&quot;">
<!ENTITY foxyproxy.pattern.template.reference.host.label "host">
<!ENTITY foxyproxy.pattern.template.reference.port.label "puerto">
<!ENTITY foxyproxy.pattern.template.reference.hostport.label "host &amp; puerto con &quot;:&quot;">
<!ENTITY foxyproxy.pattern.template.reference.prepath.label "cadena antes de la ruta">
<!ENTITY foxyproxy.pattern.template.reference.path.label "ruta (incluyendo nombre de archivo)">
<!ENTITY foxyproxy.pattern.template.reference.directory.label "carpeta">
<!ENTITY foxyproxy.pattern.template.reference.filebasename.label "nombre base del archivo">
<!ENTITY foxyproxy.pattern.template.reference.fileextension.label "extensión del archivo">
<!ENTITY foxyproxy.pattern.template.reference.filename.label "nombre de archivo completo">
<!ENTITY foxyproxy.pattern.template.reference.ref.label "parte tras el &quot;#&quot;">
<!ENTITY foxyproxy.pattern.template.reference.query.label "parte tras el &quot;?&quot;">
<!ENTITY foxyproxy.pattern.template.reference.spec.label "dirección completa">
<!ENTITY foxyproxy.pattern.template.reference.popup.height "400px">
<!ENTITY foxyproxy.pattern.template.reference.popup.width "850px">
<!ENTITY foxyproxy.notifications.label "Notificaciones">
<!ENTITY foxyproxy.notifications.accesskey "N">
<!ENTITY foxyproxy.notifications.tooltip "Opciones de las notificaciones">
<!ENTITY foxyproxy.indicators.label "Indicadores">
<!ENTITY foxyproxy.indicators.accesskey "I">
<!ENTITY foxyproxy.indicators.tooltip "Opciones de los indicadores">
<!ENTITY foxyproxy.misc.label "Varios">
<!ENTITY foxyproxy.misc.accesskey "V">
<!ENTITY foxyproxy.misc.tooltip "Opciones varias">
<!ENTITY foxyproxy.animatedicons.label "Icono animado en la barra de estado cuando se use este proxy">
<!ENTITY foxyproxy.animatedicons.accesskey "A">
<!ENTITY foxyproxy.animatedicons.tooltip "Mostrar un icono animado cuando se use este proxy (Opciones globales-&gt;Las animaciones deben estar también marcadas)">
<!ENTITY foxyproxy.statusbaractivation.label "Activación de la barra de estado">
<!ENTITY foxyproxy.statusbaractivation.accesskey "S">
<!ENTITY foxyproxy.statusbaractivation.tooltip "Activación de la barra de estado - Opciones">
<!ENTITY foxyproxy.toolbaractivation.label "Barra de herramientas de activación">
<!ENTITY foxyproxy.toolbaractivation.accesskey "B">
<!ENTITY foxyproxy.toolbaractivation.tooltip "Barra de herramientas de activación - Opciones">
<!ENTITY foxyproxy.leftclicksb.label "Botón izquierdo">
<!ENTITY foxyproxy.leftclicksb.accesskey "L">
<!ENTITY foxyproxy.leftclicksb.tooltip "Acción al pulsar con el botón derecho sobre el icono de FoxyProxy de la barra de estado">
<!ENTITY foxyproxy.middleclicksb.label "Botón central">
<!ENTITY foxyproxy.middleclicksb.accesskey "M">
<!ENTITY foxyproxy.middleclicksb.tooltip "Acción al pulsar con el botón central sobre el icono de FoxyProxy de la barra de estado">
<!ENTITY foxyproxy.rightclicksb.label "Botón derecho">
<!ENTITY foxyproxy.rightclicksb.accesskey "R">
<!ENTITY foxyproxy.rightclicksb.tooltip "Acción al pulsar con el botón derecho sobre el icono de FoxyProxy de la barra de estado">
<!ENTITY foxyproxy.leftclicktb.label "Botón izquierdo">
<!ENTITY foxyproxy.leftclicktb.accesskey "L">
<!ENTITY foxyproxy.leftclicktb.tooltip "Acción al pulsar con el botón derecho sobre el icono de FoxyProxy de la barra de herramientas">
<!ENTITY foxyproxy.middleclicktb.label "Botón central">
<!ENTITY foxyproxy.middleclicktb.accesskey "M">
<!ENTITY foxyproxy.middleclicktb.tooltip "Acción al pulsar con el botón central sobre el icono de FoxyProxy de la barra de herramientas">
<!ENTITY foxyproxy.rightclicktb.label "Botón derecho">
<!ENTITY foxyproxy.rightclicktb.accesskey "R">
<!ENTITY foxyproxy.rightclicktb.tooltip "Acción al pulsar con el botón derecho sobre el icono de FoxyProxy de la barra de herramientas">
<!ENTITY foxyproxy.click.options "Mostrar la ventana de opciones">
<!ENTITY foxyproxy.click.cycle "Iterar en los modos">
<!ENTITY foxyproxy.click.contextmenu "Mostrar el menú contextual">
<!ENTITY foxyproxy.click.reloadcurtab "Recargar la pestaña actual">
<!ENTITY foxyproxy.click.reloadtabsinbrowser "Recargar todas las pestañas de la ventana actual">
<!ENTITY foxyproxy.click.reloadtabsinallbrowsers "Recargar todas las pestañas de todas las ventanas">
<!ENTITY foxyproxy.click.removeallcookies "Borrar todas las cookies">
<!ENTITY foxyproxy.includeincycle.label "Include this proxy when cycling proxies by clicking on statusbar or toolbar (Global Settings-&gt;Statusbar/Toolbar Activation-&gt;Cycle through modes must be selected)">
<!ENTITY foxyproxy.includeincycle.accesskey "I">
<!ENTITY foxyproxy.includeincycle.tooltip "Incluir este proxy al pulsar la barra de estado/herramientas">
<!ENTITY foxyproxy.changes.msg1 "¡Ayuda! ¿Cuáles son las opciones para HTTP, SSL, FTP, Gopher y SOCKS?">
<!ENTITY foxyproxy.newGUI.popup.height "270px">
<!ENTITY foxyproxy.newGUI.popup.width "400px">
<!ENTITY foxyproxy.newGUI1.label "La antigua pantalla de opciones de FoxyProxy estaba basada prácticamente en el cuadro de opciones de conexión de Firefox, que era prácticamente idéntica a las opciones de proxy del navegador Mosaic 2.1.1. El problema de estas pantallas es su limitada funcionalidad para poder enrutar el tráfico en función del protocolo. Los navegadores del siglo 21 como Firefox, manejan más protocolos que HTTP, SSL, FTP y Ghoper. En resumen, las pantallas antiguas se volvían inmanejables si intentaban incluir cualquier posible protocolo.">
<!ENTITY foxyproxy.newGUI2.label "Debido a que Foxyproxy habilita el enrutado de tráfico por protocolos usando comodines y patrones de expresiones regulares, la lista de protocoloes en esta pantalla es innecesaria. A partir de la versión 2.5, FoxyProxy ha eliminado la lista de protocoloes en la opciones gráficas del proxy. Sin embargo, esto no afecta a la funcionalidad, al proporcionar una interfaz más simple. Si necesita enrutar el tráfico en función del protocolo, puede definir los patrones de listas blancas y negras con atención a la parte del esquema/protocolo en el patrón (p. ej: ftp://*.yahoo.com/*, *://leahscape.com/*, etc.)">
<!ENTITY foxyproxy.newGUI4.label "Pulse aquí para más información">
<!ENTITY foxyproxy.error.msg.label "Mensaje de error">
<!ENTITY foxyproxy.pac.result.label "PAC resultante">
<!ENTITY foxyproxy.options.width "800">
<!ENTITY foxyproxy.options.height "480">
<!ENTITY foxyproxy.torwiz.width "660">
<!ENTITY foxyproxy.torwiz.height "375">
<!ENTITY foxyproxy.addeditproxy.width "660">
<!ENTITY foxyproxy.addeditproxy.height "470">

View File

@ -0,0 +1,136 @@
extensions.foxyproxy@eric.h.jung.description=FoxyProxy - Controle su privacidad.
foxyproxy=FoxyProxy
tor=Tor
privoxy=Privoxy
settings.error=Error al leer la configuración
error=Error
welcome=Bienvenido a FoxyProxy.
yes=
no=No
disabled=Deshabilitado
torwiz.configure=¿Quiere configurar FoxyProxy para usarlo con Tor?
torwiz.with.without.privoxy=¿Está usando Tor con o sin Privoxy?
torwiz.with=con
torwiz.without=sin
torwiz.privoxy.not.required=Nota: desde Firefox 1.5, no es necesario usar Firefox con Tor. Privoxy añade valores como filtro de contenidos, pero no es estrictamente necesario usarlo con Firefox 1.5+ y Tor. ¿Confirma que quiere seguir usando Tor con Privoxy?
torwiz.port=Introduzca el puerto en el que %S está escuchando. Si no lo conoce, use la opción por defecto.
torwiz.nan=No es un número.
torwiz.proxy.notes=Proxy a través de la red Tor - http://tor.eff.org
torwiz.google.mail=Google Mail
torwiz.pattern=http://*mail.google.com/*
torwiz.congratulations=Enhorabuena. FoxyProxy se ha configurado para usarse con Tor. Compruebe que Tor está en ejecución antes de visitar las páginas que haya especificado. Además, si ha configurado FoxyProxy para usar Privoxy, compruebe también que está en ejecución.
torwiz.cancelled=El asistente para Tor de FoxyProxy se ha cancelado.
mode.patterns.label=Usar los proxys basados en sus patrones predefinidas y prioridades
mode.patterns.accesskey=U
mode.patterns.tooltip=Usar los proxys basados en sus patrones predefinidas y prioridades
mode.custom.label=Usar el proxy "%S" para todas las direcciones
mode.custom.tooltip=Usar el proxy "%S" para todas las direcciones
mode.disabled.label=Deshabilitar FoxyProxy completamente
mode.disabled.accesskey=D
mode.disabled.tooltip=Deshabilitar FoxyProxy completamente
more.label=Más
more.accesskey=M
more.tooltip=Más opciones
invalid.url=La dirección especificada para la configuración automática del proxy no es una dirección correcta.
protocols.error=Debe introducir uno o más protocolos para el proxy.
noport2=Debe especificar un puerto para el host.
nohost2=Debe especificar un nombre de host.
nohostport=Debe especificar el nombre y el puerto del host.
torwiz.nopatterns=No ha introducido ningún patrón de direcciones. Esto quiere decir que la red Tor no se usará. ¿Continuar en cualquier caso?
months.long.1=Enero
months.short.1=Ene
months.long.2=Febrero
months.short.2=Feb
months.long.3=Marzo
months.short.3=Mar
months.long.4=Abril
months.short.4=Abr
months.long.5=Mayo
months.short.5=May
months.long.6=Junio
months.short.6=Jun
months.long.7=Julio
months.short.7=Jul
months.long.8=Agosto
months.short.8=Ago
months.long.9=Septiembre
months.short.9=Sep
months.long.10=Octubre
months.short.10=Oct
months.long.11=Noviembre
months.short.11=Nov
months.long.12=Diciembre
months.short.12=Dic
days.long.1=Domingo
days.short.1=Dom
days.long.2=Lunes
days.short.2=Lun
days.long.3=Martes
days.short.3=Mar
days.long.4=Miércoles
days.short.4=Mie
days.long.5=Jueves
days.short.5=Jue
days.long.6=Viernes
days.short.6=Vie
days.long.7=Sábado
days.short.7=Sab
timeformat=HH:nn:ss:zzz mmm dd, yyyy
file.select=Seleccione el archivo donde guardar la configuración
manual=Manual
auto=Automático
direct=Directo
delete.proxy.confirm=Borrar proxy: ¿está seguro?
pattern.required=Es necesario un patrón.
pattern.invalid.regex=%S no es una expresión regular válida.
proxy.error.for.url=Error al determinar el proxy para %S
proxy.default.settings.used=FoxyProxy no se usa para esta dirección - se usarán las opciones generales de conexión de Firefox
proxy.all.urls=Todas las direcciones se han configurado para este proxy
pac.status=Estado PAC FoxyProxy
pac.status.loadfailure=Fallo al cargar PAC para el proxy "%S"
pac.status.success=Cargado PAC para el proxy "%S"
pac.status.error=Error en PAC para el proxy "%S"
error.noload=Error: Póngase en contacto con el equipo de desarrollo de FoxyProxy. No se ha perdido ninguna información privada, pero los recursos no se cargarán.
proxy.name.required=Introduzca un nombre para este proxy
proxy.default=Por defecto
proxy.default.notes=Estas opciones se usarán cuando la dirección no coincida con ningún patrón.
proxy.default.match.name=Todos
delete.proxy.default=No puede borrar este proxy.
copy.proxy.default=No puede copiar este proxy.
logg.maxsize.change=Se borrará el registro, ¿quiere continuar?
logg.maxsize.maximum=El tamaño máximo recomendado es 9999. Una cantidad mayor consumirá mucha memoria y puede afectar al rendimiento. ¿Quiere continuar igualmente?
proxy.random=El proxy se seleccionó aleatoriamente
mode.random.label=Usar proxys aleatorios para todas las direcciones (ignorar todos los patrones y prioridades)
mode.random.accesskey=R
mode.random.tooltip=Cargar direcciones usando proxys aleatorios (ignorar todos los patrones y prioridades)
random=Aleatorio
random.applicable=Esta opción se aplicará sólo si el modelo es "Usar proxys aleatorios para todas las direcciones (ignorar todos los patrones y prioridades)"
superadd.error=Error de configuración: %S se ha deshabilitado.
superadd.notify=Proxy %S
superadd.url.added=%S añadido al proxy "%S"
autoadd.pattern.label=Patrón dinámico
quickadd.pattern.label=Patrón dinámico QuickAdd
torwiz.proxydns=¿Quiere hacer una petición DNS para usar la red Tor? Si no entiende esta pregunta, pulse "si"
superadd.verboten2=%S no se ha podido habilitar ya que no hay ningún proxy definido, o todos están deshabilitados.
autoadd.notice=Nota a tener en cuenta: AutoAdd afecta al tiempo en que una página web se carga. Cuanto más complejo sea el patrón y más grande sea la página, más tiempo tardará AutoAdd en procesarla. Si nota retardos altos, deshabilite AutoAdd.\n\nEs preferible usar QuickAdd en lugar de AutoAdd.
autoadd.notice2=
autoconfurl.test.success=El PAC se ha encontrado, cargado y analizado correctamente.
autoconfurl.test.fail=Se ha producido un error al cargar, buscar o analizar el PAC:\nCódigo de estado HTTP: %S\nExcepción: %S
none=Ninguno
delete.settings.ask=¿Quiere eliminar las opciones de FoxyProxy guardadas en %S?
delete.settings.confirm=%S será borrado cuando todas las ventanas del navegador se cierren.
no.wildcard.characters=El patrón no tiene comodines. Esto significa que "%S" será comparado exactamente. No suele ser habitual que FoxyProxy funcione de este modo, y normalmente indica que hay un error en el patrón o que no ha entendido cómo definirlos. \n¿Quiere continuar en cualquier caso?
message.stop=No volver a mostrar este mensaje
log.save=Guardar registro
log.saved2=El registro se ha guardado en %S. ¿Quiere verlo ahora?
log.nourls.url=No está conectado
log.scrub=¿Borrar las direcciones del archivo de registro?
no.white.patterns=No ha introducido ninguna lista blanca (inclusiva) de patrones de direcciones. Esto significa que el proxy no se usará.\n¿Quiere continuar en cualquier caso?
quickadd.quickadd.canceled=Se ha cancelado QuickAdd, ya que la dirección actual también coincide con el patrón "%S" del proxy "%S"
quickadd.nourl=No se han podido obtener las direcciones actuales
cookies.allremoved=Todas las cookies se han borrado
route.error=Error al determinar el host a usar para el proxy
route.exception=Se ha producido una excepción al determinar el host a usar para el proxy %S
see.log=Consulte el registro para más información
pac.select=Seleccione el archivo PAC a usar
pac.files=Archivos PAC

View File

@ -0,0 +1,55 @@
<!-- switched from xhtml to html because of BabelZilla WTS adds extraneous html tags on locale download -->
<html>
<head>
<style type="text/css">
table {
border-width: 0px;
border-spacing: 2px;
border-style: none;
border-color: white;
border-collapse: separate;
background-color: rgb(250, 240, 230);
font-size: x-small;
font-family: verdana, sans-serif;
}
table td,table th {
border-width: 1px;
padding: 1px;
border-style: groove;
border-color: green;
background-color: rgb(250, 240, 230);
vertical-align: top;
font-size: x-small;
font-family: verdana, sans-serif;
}
p {background-color: white; font-size: x-small; font-family: verdana, sans-serif;}
body {font-family: verdana, sans-serif;}
h3 {font-size: small;}
h4 {font-size: x-small;}
</style>
</head>
<body>
<h3>Plantillas de direcciones</h3>
<p>Antes de cargar una dirección, Firefox pregunta a FoxyProxy si se debe usar un proxy.
FoxyProxy responde a esta pregunta viendo la correspondencia entre la dirección y todas las plantillas que se hayan definido.
La manera más simple de definir plantillas es usando comodines.</p>
<h4><a name="wildcards">Comodines</a></h4>
<p>Los comodines son muy comunes en muchos programas; es muy probable que ya haya trabajado
con ellos anteriormente. El asterisco (*) corresponde a un comodín para ningún caracter o para varios,
mientras que la interrogación (?) se sustituye por un único caracter.
</p>
<p>Es posible usar reglas más avanzadas de correspondencia mediante las expresiones regulares. Para más detalles pulse el botón "Contenidos de la ayuda".</p>
<h4>Ejemplos de comodines</h4>
<table>
<thead><tr><th>Plantilla de la dirección</th><th>Coincide con</th><th>No coincide con</th></tr></thead>
<tr><td>*//:*.yahoo.com/*</td><td>Cualquier dirección del dominio yahoo</td><td>http://mail.google.com/</td></tr>
<tr><td>*//:mail.yahoo.com/*</td><td>http://mail.yahoo.com/<br/>http://mail.yahoo.com/clownshoes/<br/>http://mail.yahoo.com/inbox/123.html<br/>ftp://mail.yahoo.com</td><td>http://maps.yahoo.com</td></tr>
<tr><td>http://??.wikipedia.org/wiki/Clown</td><td>http://en.wikipedia.org/wiki/Clown<br/>http://de.wikipedia.org/wiki/Clown<br/>http://cs.wikipedia.org/wiki/Clown</td><td>https://en.wikipedia.org/wiki/Clown<br/>http://de.wikipedia.org/wiki/Clown/<br/>ftp://en.wikipedia.org/wiki/Clown</td></tr>
<tr><td>http://digg.com/</td><td>http://digg.com/</td><td>http://digg.com<br/>http://www.digg.com/</td></tr>
<tr><td>*://*.asimov.???/*</td><td>ftp://ftp.asimov.net/<br/>ftp://ftp.asimov.com/theory.html<br/>http://bear.asimov.net/mom/<br/>https://isaac.asimov.org/hercules<br/>gopher://asimov.net/</td>
<td>ftp://ftp.asimov.co.uk<br/>http://isaac.home.com/tin.php</td></tr>
<tr><td>*</td><td><i>Cualquier dirección</i></td><td>&nbsp;</td></tr>
</table>
</body>
</html>

View File

@ -0,0 +1,427 @@
<!ENTITY foxyproxy.label "FoxyProxy">
<!ENTITY foxyproxy.accesskey "F">
<!ENTITY foxyproxy.tooltip "FoxyProxy">
<!ENTITY foxyproxy.optionsdialog.label "FoxyProxy تنظیمات">
<!ENTITY foxyproxy.options.label "تنظیمات">
<!ENTITY foxyproxy.options.accesskey "O">
<!ENTITY foxyproxy.options.tooltip "باز کردن پنجره تنظیمات">
<!ENTITY foxyproxy.tree.pickertooltiptext.label ".برای انتخاب ستون های مورد نظر برای نمایش کلیک کنید">
<!ENTITY foxyproxy.proxy.name.label "نام پروکسی">
<!ENTITY foxyproxy.proxy.name.accesskey "N">
<!ENTITY foxyproxy.proxy.name.tooltip "نام پروکسی">
<!ENTITY foxyproxy.proxy.notes.label "یادداشت های پروکسی">
<!ENTITY foxyproxy.proxy.notes.accesskey "N">
<!ENTITY foxyproxy.proxy.notes.tooltip "یادداشت های پروکسی">
<!ENTITY foxyproxy.pattern.label "الگوها">
<!ENTITY foxyproxy.pattern.type.label "نوع الگو">
<!ENTITY foxyproxy.whitelist.blacklist.label "لیست سیاه یا لیست سفید">
<!ENTITY foxyproxy.pattern.name.label "نام الگو">
<!ENTITY foxyproxy.pattern.name.accesskey "P">
<!ENTITY foxyproxy.pattern.name.tooltip "نام الگو">
<!ENTITY foxyproxy.url.pattern.label "آدرس یا الگوی آدرس">
<!ENTITY foxyproxy.url.pattern.accesskey "U">
<!ENTITY foxyproxy.url.pattern.tooltip "آدرس یا الگوی آدرس">
<!ENTITY foxyproxy.enabled.label "فعال">
<!ENTITY foxyproxy.enabled.accesskey "E">
<!ENTITY foxyproxy.enabled.tooltip "فعال/غیر فعال">
<!ENTITY foxyproxy.delete.selection.label "پاک کردن انتخاب شده ها">
<!ENTITY foxyproxy.delete.selection.accesskey "D">
<!ENTITY foxyproxy.delete.selection.tooltip "پاک کردن موارد انتخاب شده">
<!ENTITY foxyproxy.edit.selection.label "ویرایش انتخاب شده ها">
<!ENTITY foxyproxy.edit.selection.accesskey "E">
<!ENTITY foxyproxy.edit.selection.tooltip "ویرایش موارد انتخاب شده">
<!ENTITY foxyproxy.help.label "راهنما">
<!ENTITY foxyproxy.help.accesskey "H">
<!ENTITY foxyproxy.help.tooltip "نمایش راهنما">
<!ENTITY foxyproxy.close.label "بستن">
<!ENTITY foxyproxy.close.accesskey "C">
<!ENTITY foxyproxy.close.tooltip "بستن پنجره">
<!ENTITY foxyproxy.about.label "درباره برنامه">
<!ENTITY foxyproxy.about.accesskey "A">
<!ENTITY foxyproxy.about.tooltip "درباره برنامه">
<!ENTITY foxyproxy.online.label "FoxyProxy سایت">
<!ENTITY foxyproxy.online.accesskey "O">
<!ENTITY foxyproxy.online.tooltip ".از سایت برنامه بازدید کنید">
<!ENTITY foxyproxy.tor.label "Tor Wizard">
<!ENTITY foxyproxy.tor.accesskey "W">
<!ENTITY foxyproxy.tor.tooltip "Tor Wizard">
<!ENTITY foxyproxy.copy.selection.label "کپی کردن انتخاب شده ها">
<!ENTITY foxyproxy.copy.selection.accesskey "C">
<!ENTITY foxyproxy.copy.selection.tooltip "کپی کردن انتخاب شده ها">
<!ENTITY foxyproxy.mode.label "انتخاب مود">
<!ENTITY foxyproxy.auto.url.label "آدرس تنظیمات خودکار پروکسی">
<!ENTITY foxyproxy.auto.url.accesskey "A">
<!ENTITY foxyproxy.auto.url.tooltip "PAC آدرس فایل">
<!ENTITY foxyproxy.port.label "پورت">
<!ENTITY foxyproxy.port.accesskey "P">
<!ENTITY foxyproxy.port.tooltip "پورت">
<!ENTITY foxyproxy.socks.proxy.label "SOCKS پروکسی">
<!ENTITY foxyproxy.socks.proxy.accesskey "C">
<!ENTITY foxyproxy.socks.proxy.tooltip "SOCKS آدرس پروکسی">
<!ENTITY foxyproxy.socks.v4 "SOCKS v4/4a">
<!ENTITY foxyproxy.socks.v5 "SOCKS v5">
<!ENTITY foxyproxy.addeditpattern.title "افزودن/ویرایش یک الگو">
<!ENTITY foxyproxy.wildcard.label "ها Wildcard">
<!ENTITY foxyproxy.wildcard.accesskey "W">
<!ENTITY foxyproxy.wildcard.tooltip ".استفاده می کند wildcard مشخص کردن اینکه یک آدرس از">
<!ENTITY foxyproxy.wildcard.example.label "*mail.yahoo.com/*:مثال">
<!ENTITY foxyproxy.regex.label "عبارت منظم">
<!ENTITY foxyproxy.regex.accesskey "R">
<!ENTITY foxyproxy.regex.tooltip "عبارت منظم">
<!ENTITY foxyproxy.regex.example.label "http?://.*\.mail\.yahoo\.com/.*:مثال">
<!ENTITY foxyproxy.version "نسخه">
<!ENTITY foxyproxy.createdBy "نویسنده">
<!ENTITY foxyproxy.copyright "Copyright">
<!ENTITY foxyproxy.rights ".تمام حقوق محفوظ است">
<!ENTITY foxyproxy.released "GPL انشار تحت مجوز">
<!ENTITY foxyproxy.thanks "با تشکر از:">
<!ENTITY foxyproxy.translations "ترجمه ها">
<!ENTITY foxyproxy.tab.general.label "عمومی">
<!ENTITY foxyproxy.tab.general.accesskey "G">
<!ENTITY foxyproxy.tab.general.tooltip "تنظیمات عمومی پروکسی">
<!ENTITY foxyproxy.tab.proxy.label "جزئیات پروکسی">
<!ENTITY foxyproxy.tab.proxy.accesskey "R">
<!ENTITY foxyproxy.tab.proxy.tooltip "مدیریت جزئیات پروکسی">
<!ENTITY foxyproxy.tab.patterns.label "الگوها">
<!ENTITY foxyproxy.tab.patterns.accesskey "P">
<!ENTITY foxyproxy.tab.patterns.tooltip "مدیریت الگوهای آدرس">
<!ENTITY foxyproxy.add.title "تنظیمات پروکسی">
<!ENTITY foxyproxy.pattern.description "مشخص کردن زمان استفاده شدن یا نشدن پروکسی">
<!ENTITY foxyproxy.pattern.matchtype.label "محتویات الگو">
<!ENTITY foxyproxy.pattern.matchtype2.label "Pattern To Identify Blocked Websites Contains">
<!ENTITY foxyproxy.pattern.template.matchtype.label "Pattern Template Contains">
<!ENTITY foxyproxy.pattern.whiteblack.label "آدرس موجود در لیست سیاه/سفید">
<!ENTITY foxyproxy.add.option.direct.label "ارتباط مستقیم">
<!ENTITY foxyproxy.add.option.direct.accesskey "D">
<!ENTITY foxyproxy.add.option.direct.tooltip "استفاده نکردن از پروکسی-استفاده از ارتباط مستقیم">
<!ENTITY foxyproxy.add.option.manual.label "تنظیمات دستی پروکسی">
<!ENTITY foxyproxy.add.option.manual.accesskey "M">
<!ENTITY foxyproxy.add.option.manual.tooltip "تنظیم دستی تنظیمات یک پروکسی">
<!ENTITY foxyproxy.add.new.pattern.label "افزودن یک الگوی جدید">
<!ENTITY foxyproxy.add.new.pattern.accesskey "A">
<!ENTITY foxyproxy.add.new.pattern.tooltip "افزودن یک الگوی جدید">
<!ENTITY foxyproxy.menubar.file.label "فایل">
<!ENTITY foxyproxy.menubar.file.accesskey "F">
<!ENTITY foxyproxy.menubar.file.tooltip "منوی فایل">
<!ENTITY foxyproxy.menubar.help.label "راهنما">
<!ENTITY foxyproxy.menubar.help.accesskey "H">
<!ENTITY foxyproxy.menubar.help.tooltip "باز کردن منوی راهنما">
<!ENTITY foxyproxy.mode.accesskey "M">
<!ENTITY foxyproxy.mode.tooltip "FoxyProxy نحوه کار">
<!ENTITY foxyproxy.tab.proxies.label "پروکسی ها">
<!ENTITY foxyproxy.tab.proxies.accesskey "P">
<!ENTITY foxyproxy.tab.proxies.tooltip "مدیریت پروکسی ها">
<!ENTITY foxyproxy.tab.global.label "تنظیمات عمومی">
<!ENTITY foxyproxy.tab.global.accesskey "G">
<!ENTITY foxyproxy.tab.global.tooltip "تنظیمات عمومی">
<!ENTITY foxyproxy.tab.logging.label "گزارش گیری">
<!ENTITY foxyproxy.tab.logging.accesskey "L">
<!ENTITY foxyproxy.tab.logging.tooltip "مدیریت تنظیمات گزارش گیری">
<!ENTITY foxyproxy.proxydns.label "DNS برای جستجوی SOCKS استفاده از پروکسی">
<!ENTITY foxyproxy.proxydns.accesskey "U">
<!ENTITY foxyproxy.proxydns.tooltip ".صورت می گیرد SOCKS از طریق یک پروکسی DNS در صورت انتخاب جستجوی">
<!ENTITY foxyproxy.proxydns.notice "برای اعمال تنظیمات فایرفاکس باید دوباره راه اندازی شود.راه اندازی مجدد؟">
<!ENTITY foxyproxy.showstatusbaricon.label "نمایش آیکون در نوار وضعیت">
<!ENTITY foxyproxy.showstatusbaricon.accesskey "S">
<!ENTITY foxyproxy.showstatusbaricon.tooltip ".در صورت انتخاب آیکون برنامه در نوار وضعیت نمایش داده خواهد شد">
<!ENTITY foxyproxy.showstatusbarmode.label "نمایش مود متنی در نوار وضعیت">
<!ENTITY foxyproxy.showstatusbarmode.accesskey "S">
<!ENTITY foxyproxy.showstatusbarmode.tooltip ".در صورت انتخاب مود متنی برنامه در نوار وضعیت نمایش داده خواهد شد">
<!ENTITY foxyproxy.storagelocation.label "مکان ذخیره تنظیمات">
<!ENTITY foxyproxy.storagelocation.accesskey "S">
<!ENTITY foxyproxy.storagelocation.tooltip "FoxyProxy مکان ذخیره تنظیمات">
<!ENTITY foxyproxy.tab.logging.timestamp.label "زمان">
<!ENTITY foxyproxy.tab.logging.url.label "آدرس">
<!ENTITY foxyproxy.host.label "Host Name">
<!ENTITY foxyproxy.host.accesskey "H">
<!ENTITY foxyproxy.host.tooltip "Host Name">
<!ENTITY foxyproxy.clear.label "پاک کردن">
<!ENTITY foxyproxy.clear.accesskey "C">
<!ENTITY foxyproxy.clear.tooltip "پاک کردن">
<!ENTITY foxyproxy.refresh.label "بارگذاری مجدد">
<!ENTITY foxyproxy.refresh.accesskey "R">
<!ENTITY foxyproxy.refresh.tooltip "بارگذاری مجدد">
<!ENTITY foxyproxy.save.label "ذخیره کردن">
<!ENTITY foxyproxy.save.accesskey "S">
<!ENTITY foxyproxy.save.tooltip "ذخیره کردن">
<!ENTITY foxyproxy.addnewproxy.label "افزودن پروکسی جدید">
<!ENTITY foxyproxy.addnewproxy.accesskey "A">
<!ENTITY foxyproxy.addnewproxy.tooltip "افزودن پروکسی جدید">
<!ENTITY foxyproxy.whitelist.label "لیست سفید">
<!ENTITY foxyproxy.whitelist.accesskey "W">
<!ENTITY foxyproxy.whitelist.tooltip ".آدرس هایی که با این الگو همخوانی دارند از این پروکسی بارگذاری شده اند">
<!ENTITY foxyproxy.whitelist.description.label ".آدرس هایی که با این الگو همخوانی دارند از این پروکسی بارگذاری شده اند">
<!ENTITY foxyproxy.blacklist.label "لیست سیاه">
<!ENTITY foxyproxy.blacklist.accesskey "B">
<!ENTITY foxyproxy.blacklist.tooltip ".آدرس هایی که با این الگو همخوانی دارند از این پروکسی بارگذاری نشده اند">
<!ENTITY foxyproxy.blacklist.description.label ".آدرس هایی که با این الگو همخوانی دارند از این پروکسی بارگذاری نشده اند">
<!ENTITY foxyproxy.whiteblack.description.label "لیست سیاه بر لیست سفید برتری دارد.به عنوان مثال اگر سایتی در هر دو لیست موجود باشد قرار داشتن آن در لیست سیاه مد نظر قرار می گیرد">
<!ENTITY foxyproxy.usingPFF.label1 "فایرفاکس قابل حمل استفاده می کنم">
<!ENTITY foxyproxy.usingPFF.label2 "من از">
<!ENTITY foxyproxy.usingPFF.accesskey "P">
<!ENTITY foxyproxy.usingPFF.tooltip ".اگر از فایرفاکس قابل حمل استفاده می کنید اینجا را انتخاب کنید">
<!ENTITY foxyproxy.socks.version.label "SOCKS نسخه">
<!ENTITY foxyproxy.autopacurl.label "Auto PAC URL">
<!ENTITY foxyproxy.issocks.label "SOCKS proxy?">
<!ENTITY foxyproxy.issocks.accesskey "S">
<!ENTITY foxyproxy.issocks.tooltip "Is this a web proxy or SOCKS proxy?">
<!ENTITY foxyproxy.chinese.simplified "چینی ساده شده">
<!ENTITY foxyproxy.chinese.traditional "(چینی (سنتی">
<!ENTITY foxyproxy.croatian "کروات">
<!ENTITY foxyproxy.czech "چکی">
<!ENTITY foxyproxy.danish "دانمارکی">
<!ENTITY foxyproxy.dutch "هلندی">
<!ENTITY foxyproxy.english "انگلیسی">
<!ENTITY foxyproxy.english.british "انگلیسی بریتانیایی">
<!ENTITY foxyproxy.french "فرانسوی">
<!ENTITY foxyproxy.german "آلمانی">
<!ENTITY foxyproxy.greek "یونانی">
<!ENTITY foxyproxy.hungarian "Hungarian">
<!ENTITY foxyproxy.italian "ایتالیایی">
<!ENTITY foxyproxy.persian "پارسی">
<!ENTITY foxyproxy.polish "لهستانی">
<!ENTITY foxyproxy.portugese.brazilian "(پرتغالی (برزیل">
<!ENTITY foxyproxy.portugese.portugal "(پرتغالی (پرتغال">
<!ENTITY foxyproxy.romanian "رومانیایی">
<!ENTITY foxyproxy.russian "روسی">
<!ENTITY foxyproxy.slovak "اسلواکی">
<!ENTITY foxyproxy.spanish.spain "(اسپانیایی (اسپانیا">
<!ENTITY foxyproxy.spanish.argentina "(اسپانیایی (آرژانتین">
<!ENTITY foxyproxy.swedish "سوئدی">
<!ENTITY foxyproxy.thai.thailand "تایلندی">
<!ENTITY foxyproxy.turkish "ترکی">
<!ENTITY foxyproxy.ukrainian "اوکراینی">
<!ENTITY foxyproxy.your.language "زبان شما">
<!ENTITY foxyproxy.your.name.here "نام شما">
<!ENTITY foxyproxy.moveup.label "حرکت به بالا">
<!ENTITY foxyproxy.moveup.tooltip "افزایش برتری انتخاب فعلی">
<!ENTITY foxyproxy.moveup.accesskey "U">
<!ENTITY foxyproxy.movedown.label "حرکت به پایین">
<!ENTITY foxyproxy.movedown.tooltip "کاهش برتری انتخاب فعلی">
<!ENTITY foxyproxy.movedown.accesskey "D">
<!ENTITY foxyproxy.autoconfurl.view.label "نمایش">
<!ENTITY foxyproxy.autoconfurl.view.accesskey "V">
<!ENTITY foxyproxy.autoconfurl.view.tooltip "نمایش فایل تنظیمات خودکار">
<!ENTITY foxyproxy.autoconfurl.test.label "آزمایش">
<!ENTITY foxyproxy.autoconfurl.test.accesskey "T">
<!ENTITY foxyproxy.autoconfurl.test.tooltip "آزمایش فایل تنظیمات خودکار">
<!ENTITY foxyproxy.autoconfurl.reload.label "Reload the PAC every">
<!ENTITY foxyproxy.autoconfurl.reload.accesskey "R">
<!ENTITY foxyproxy.autoconfurl.reload.tooltip "Auto-reload the PAC file every specified period">
<!ENTITY foxyproxy.minutes.label "minutes">
<!ENTITY foxyproxy.minutes.tooltip "minutes">
<!ENTITY foxyproxy.logging.maxsize.label "بیشترین اندازه">
<!ENTITY foxyproxy.logging.maxsize.accesskey "M">
<!ENTITY foxyproxy.logging.maxsize.tooltip "بیشترین تعداد گزارش ها قبل از پاکسازی">
<!ENTITY foxyproxy.logging.maxsize.button.label "قرار دادن">
<!ENTITY foxyproxy.logging.maxsize.button.accesskey "S">
<!ENTITY foxyproxy.logging.maxsize.button.tooltip "(بارگذاری آدرس با پروکسی تصادفی (بدون توجه به الگوها و تنظیمات">
<!ENTITY foxyproxy.random.label "(بارگذاری آدرس با پروکسی تصادفی (بدون توجه به الگوها و تنظیمات">
<!ENTITY foxyproxy.random.accesskey "R">
<!ENTITY foxyproxy.random.tooltip "(بارگذاری آدرس با پروکسی تصادفی (بدون توجه به الگوها و تنظیمات">
<!ENTITY foxyproxy.random.includedirect.label ".شامل پروکسی هایی که ارتباط مستقیم دارند">
<!ENTITY foxyproxy.random.includedirect.accesskey "I">
<!ENTITY foxyproxy.random.includedirect.tooltip ".پروکسی هایی که ارتباط مستقیم دارند هم به عنوان پروکسی تصادفی انتخاب می شوند">
<!ENTITY foxyproxy.random.includedisabled.label "شامل پروکسی های غیرفعال">
<!ENTITY foxyproxy.random.includedisabled.accesskey "D">
<!ENTITY foxyproxy.random.includedisabled.tooltip ".پروکسی های غیرفعال هم به عنوان پروکسی تصادفی انتخاب می شوند">
<!ENTITY foxyproxy.random.settings.label "انتخاب تصادفی پروکسی">
<!ENTITY foxyproxy.random.settings.accesskey "R">
<!ENTITY foxyproxy.random.settings.tooltip ".تنظیماتی که روی انتخاب تصادفی پروکسی تاًثیر می گذارد">
<!ENTITY foxyproxy.tab.autoadd.label "افزودن خودکار">
<!ENTITY foxyproxy.tab.autoadd.accesskey "A">
<!ENTITY foxyproxy.tab.autoadd.tooltip "مدیریت تنظیمات افزودن خودکار">
<!ENTITY foxyproxy.autoadd.description "الگویی را برای متوقف کردن سایت به کار می برد.اگر الگو در سایتی پیدا شد آدرس سایت به صورت خودکار به یک پروکسی افزوده می شود و صفحه دوباره بارگذاری می شود">
<!ENTITY foxyproxy.autoadd.pattern.label "الگوی شناخت سایت های مسدود شده">
<!ENTITY foxyproxy.autoadd.pattern.accesskey "P">
<!ENTITY foxyproxy.autoadd.pattern.tooltip "الگوی مشخص کردن سایت های متوقف شده">
<!ENTITY foxyproxy.autoadd.wildcard.example.label "*You are not authorized to view this page*:مثال">
<!ENTITY foxyproxy.autoadd.regex.example.label ".*Site.*has been blocked.*:مثال">
<!ENTITY foxyproxy.autoadd.proxy.label "پروکسی سایت هایی که به صورت خودکار اضافه می شوند">
<!ENTITY foxyproxy.autoadd.proxy.accesskey "P">
<!ENTITY foxyproxy.autoadd.proxy.tooltip ".برای پروکسی مشخص می کند که کدام آدرس ها به صورت خودکار اضافه شوند">
<!ENTITY foxyproxy.pattern.template.label "قالب الگوی آدرس">
<!ENTITY foxyproxy.pattern.template.accesskey "U">
<!ENTITY foxyproxy.pattern.template.tooltip "قالب الگوی آدرس">
<!ENTITY foxyproxy.pattern.template.example.label1 "مثال">
<!ENTITY foxyproxy.pattern.template.example.label2 "http://fred:secret@mail.foo.com:8080/inbox/msg102.htm#subject?style=elegant">
<!ENTITY foxyproxy.pattern.template.currenturl.label "Current URL">
<!ENTITY foxyproxy.pattern.template.currenturl.accesskey "C">
<!ENTITY foxyproxy.pattern.template.currenturl.tooltip "URL in the address bar">
<!ENTITY foxyproxy.pattern.template.generatedpattern.label "Generated Pattern">
<!ENTITY foxyproxy.pattern.template.generatedpattern.accesskey "G">
<!ENTITY foxyproxy.pattern.template.generatedpattern.tooltip "Dynamically generated pattern">
<!ENTITY foxyproxy.autoadd.reload.label ".وقتی صفحه به یک پروکسی اضافه می شود،دوباره بارگذای می شود">
<!ENTITY foxyproxy.autoadd.reload.accesskey "R">
<!ENTITY foxyproxy.autoadd.reload.tooltip "بارگذاری مجدد صفحه وقتی به یک پروکسی اضافه می شود">
<!ENTITY foxyproxy.autoadd.notify.label "هنگام راه اندازی افزودن خودکار به من اطلاع بده">
<!ENTITY foxyproxy.autoadd.notify.accesskey "N">
<!ENTITY foxyproxy.autoadd.notify.tooltip ".وقتی صفحه ای متوقف می شود به شما اطلاع می دهد">
<!ENTITY foxyproxy.graphics "طراحی گرافیک و عکس ها:">
<!ENTITY foxyproxy.website "ساخت وب سایت:">
<!ENTITY foxyproxy.contributions "همکار:">
<!ENTITY foxyproxy.pacloadnotification.label "هنگام بارگذاری فایل های تنظیمات خودکار پروکسی به من خبر بده">
<!ENTITY foxyproxy.pacloadnotification.accesskey "L">
<!ENTITY foxyproxy.pacloadnotification.tooltip "PAC هنگام بارگذاری فایل popup نمایش پنجره">
<!ENTITY foxyproxy.pacerrornotification.label "هنگام خطای فایل تنظیمات خودکار به من اطلاع بده">
<!ENTITY foxyproxy.pacerrornotification.accesskey "E">
<!ENTITY foxyproxy.pacerrornotification.tooltip "PAC هنگام برخورد با خطای فایل های popup نمایش پنجره">
<!ENTITY foxyproxy.toolsmenu.label "در منوی ابزارها FoxyProxy نمایش">
<!ENTITY foxyproxy.toolsmenu.accesskey "T">
<!ENTITY foxyproxy.toolsmenu.tooltip "در منوی ابزارها FoxyProxy نمایش">
<!ENTITY foxyproxy.tip.label "Tip">
<!ENTITY foxyproxy.pactips.popup.height "165px">
<!ENTITY foxyproxy.pactips.popup.width "400px">
<!ENTITY foxyproxy.pactip1.label "For PAC files stored on a local hard drive, use the file:// scheme. For example, file://c:/path/proxy.pac on Windows or file:///home/users/joe/proxy.pac on Unix/Linux/Mac.">
<!ENTITY foxyproxy.pactip2.label "For PAC files on an ftp server, use the ftp:// scheme. For example, ftp://leahscape.com/path/proxy.pac">
<!ENTITY foxyproxy.pactip3.label "You can also use http://, https://, and any other supported scheme.">
<!ENTITY foxyproxy.contextmenu.label "در منوی کلیک راست FoxyProxy نمایش">
<!ENTITY foxyproxy.contextmenu.accesskey "C">
<!ENTITY foxyproxy.contextmenu.tooltip "در منوی کلیک راست FoxyProxy نمایش">
<!ENTITY foxyproxy.quickadd.desc1 "QuickAdd adds a dynamic URL pattern to a proxy when you press Alt-F2. It is practical alternative to AutoAdd. Customize the Alt-F2 shortcut with the">
<!ENTITY foxyproxy.keyconfig.label "KeyConfig">
<!ENTITY foxyproxy.quickadd.desc2 "اکستنشن">
<!ENTITY foxyproxy.quickadd.label "افزودن سریع">
<!ENTITY foxyproxy.quickadd.accesskey "Q">
<!ENTITY foxyproxy.quickadd.tooltip "افزودن سریع">
<!ENTITY foxyproxy.quickadd.notify.label "زمانی که افزودن سریع فعال شد به من اطلاع بده">
<!ENTITY foxyproxy.quickadd.notify.accesskey "N">
<!ENTITY foxyproxy.quickadd.notify.tooltip "اطلاع هنگام فعال شدن افزودن سریع">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.label "Notify me when QuickAdd is canceled">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.label2 "QuickAdd is automatically canceled when QuickAdd is activated through Alt-F2, and the current URL in the address bar already matches an existing proxy&apos;s whitelist pattern. In this way duplicate patterns, which can clutter your configuration, are prevented. This setting does not enable/disable cancelation; rather, it toggles notification when cancelation occurs.">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.accesskey "C">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.tooltip "Display a popup when QuickAdd is activated but canceled">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.popup.width "400px">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.popup.height "130px">
<!ENTITY foxyproxy.whatsthis "What&apos;s This?">
<!ENTITY foxyproxy.quickadd.prompt.label "اجازه اصلاح و پیکربندی قبل از افزودن الگو به پروکسی">
<!ENTITY foxyproxy.quickadd.prompt.accesskey "P">
<!ENTITY foxyproxy.quickadd.prompt.tooltip "اجازه اصلاح و پیکربندی قبل از افزودن الگو به پروکسی">
<!ENTITY foxyproxy.quickadd.proxy.label "پروکسی به کدام الگو افزوده شود">
<!ENTITY foxyproxy.quickadd.proxy.accesskey "P">
<!ENTITY foxyproxy.quickadd.proxy.tooltip "پروکسی به کدام الگو افزوده شود">
<!ENTITY foxyproxy.bypasscache.label "صرفنظر کردن از حافظه پنهان فایرفاکس هنگام بارگذاری">
<!ENTITY foxyproxy.bypasscache.accesskey "B">
<!ENTITY foxyproxy.bypasscache.tooltip "از حافظه پنهان صرفنظر شد">
<!ENTITY foxyproxy.advancedmenus.label "استفاده از منوهای پیشرفته">
<!ENTITY foxyproxy.advancedmenus.accesskey "M">
<!ENTITY foxyproxy.advancedmenus.tooltip "(FoxyProxy 2.2 استفاده از منوهای پیشرفته (استایل">
<!ENTITY foxyproxy.importsettings.label "ایمپورت تنظیمات">
<!ENTITY foxyproxy.importsettings.accesskey "I">
<!ENTITY foxyproxy.importsettings.tooltip "ایمپورت تنظیمات از یک فایل">
<!ENTITY foxyproxy.exportsettings.label "اکسپورت تنظیمات فعلی">
<!ENTITY foxyproxy.exportsettings.accesskey "E">
<!ENTITY foxyproxy.exportsettings.tooltip "ذخیره تنظیمات فعلی در یک فایل">
<!ENTITY foxyproxy.importlist.label "ایمپورت لیست پروکسی">
<!ENTITY foxyproxy.importlist.accesskey "I">
<!ENTITY foxyproxy.importlist.tooltip "ایمپورت لیست متنی پروکسی">
<!ENTITY foxyproxy.wildcard.reference.label "wildcard مرجع">
<!ENTITY foxyproxy.wildcard.reference.accesskey "W">
<!ENTITY foxyproxy.wildcard.reference.tooltip "Wildcard مرجع">
<!ENTITY foxyproxy.wildcard.reference.subtitle.label "صفر یا چند کاراکتر و (؟) فقط یک کاراکتر را مشخص می کنند (*)">
<!ENTITY foxyproxy.wildcard.reference.mistakes "Wildcard اشتباهات رایج هنگام استفاده از الگوهای">
<!ENTITY foxyproxy.wildcard.reference.goal.label "هدف">
<!ENTITY foxyproxy.wildcard.reference.goal1.label "MySpace مطابق سازی تمام صفحه های موجود در دامنه">
<!ENTITY foxyproxy.wildcard.reference.goal2.label "مطابق سازی پی سی محلی">
<!ENTITY foxyproxy.wildcard.reference.goal3.label "abc.com مطابق سازی تمام زیر دامنه ها و صفحه های">
<!ENTITY foxyproxy.wildcard.reference.goal4.label "b.foo.com بدون توجه به a.foo.com مطابق سازی تمام صفحه های موجود در دامنه">
<!ENTITY foxyproxy.wildcard.reference.correct.label "درست">
<!ENTITY foxyproxy.wildcard.reference.correct2.label "باید دو الگو باشد">
<!ENTITY foxyproxy.wildcard.reference.incorrect.label "نادرست">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason.label "دلیل نادرست بودن">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason1.label ".ها فقط صفحه خانگی سازگار خواهد شد wildcard در صورت تنظیم نکردن">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason2.label ".سازگار نیست FoxyProxy این دستور با">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason3.label "وجود ندارد wildcard">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason4.label "وجود ندارد wildcard">
<!ENTITY foxyproxy.wildcard.reference.popup.height "350px">
<!ENTITY foxyproxy.logging.noURLs.label "نمایش ندادن و ذخیره نکردن آدرس ها">
<!ENTITY foxyproxy.logging.noURLs.accesskey "U">
<!ENTITY foxyproxy.logging.noURLs.tooltip "آدرس ها ذخیره نمی شوند">
<!ENTITY foxyproxy.ok.label "تایید">
<!ENTITY foxyproxy.ok.accesskey "O">
<!ENTITY foxyproxy.ok.tooltip "بستن پنجره">
<!ENTITY foxyproxy.pattern.template.reference.label "مرجع قالب الگو">
<!ENTITY foxyproxy.pattern.template.reference.accesskey "T">
<!ENTITY foxyproxy.pattern.template.reference.tooltip "مرجع قالب الگو">
<!ENTITY foxyproxy.pattern.template.reference.subtitle.label "URL pattern templates define the format with which URLs are QuickAdded or AutoAdded to proxies. Templates support the following special strings which, when QuickAdded or AutoAdded are activated, are substitued with the corresponding URL component in the address bar.">
<!ENTITY foxyproxy.pattern.template.reference.specialstring.label "رشته ی ویژه">
<!ENTITY foxyproxy.pattern.template.reference.subststring.label "تعویض شده با">
<!ENTITY foxyproxy.pattern.template.reference.example.label "مثال">
<!ENTITY foxyproxy.pattern.template.reference.scheme.label "پروتکل">
<!ENTITY foxyproxy.pattern.template.reference.username.label "نام کاربری">
<!ENTITY foxyproxy.pattern.template.reference.password.label "کلمه عبور">
<!ENTITY foxyproxy.pattern.template.reference.userpass.label "username &amp; password with &quot;:&quot; &amp; &quot;@&quot;">
<!ENTITY foxyproxy.pattern.template.reference.host.label "میزبان">
<!ENTITY foxyproxy.pattern.template.reference.port.label "پورت">
<!ENTITY foxyproxy.pattern.template.reference.hostport.label "host &amp; port with &quot;:&quot;">
<!ENTITY foxyproxy.pattern.template.reference.prepath.label "رشته قبل از مسیر">
<!ENTITY foxyproxy.pattern.template.reference.path.label "(مسیر (شامل نام فایل">
<!ENTITY foxyproxy.pattern.template.reference.directory.label "دایرکتوری">
<!ENTITY foxyproxy.pattern.template.reference.filebasename.label "نام اصلی فایل">
<!ENTITY foxyproxy.pattern.template.reference.fileextension.label "پسوند فایل">
<!ENTITY foxyproxy.pattern.template.reference.filename.label "نام کامل فایل">
<!ENTITY foxyproxy.pattern.template.reference.ref.label "&quot;#&quot; بخش بعد از">
<!ENTITY foxyproxy.pattern.template.reference.query.label "&quot;بخش بعد از &quot;؟">
<!ENTITY foxyproxy.pattern.template.reference.spec.label "آدرس کامل">
<!ENTITY foxyproxy.pattern.template.reference.popup.height "400px">
<!ENTITY foxyproxy.pattern.template.reference.popup.width "800px">
<!ENTITY foxyproxy.notifications.label "تذکرها">
<!ENTITY foxyproxy.notifications.accesskey "N">
<!ENTITY foxyproxy.notifications.tooltip "تنظیمات تذکرها">
<!ENTITY foxyproxy.indicators.label "نمایش دهنده">
<!ENTITY foxyproxy.indicators.accesskey "I">
<!ENTITY foxyproxy.indicators.tooltip "تنظیمات نمایش دهنده">
<!ENTITY foxyproxy.misc.label "متفرقه">
<!ENTITY foxyproxy.misc.accesskey "M">
<!ENTITY foxyproxy.misc.tooltip "تنظیمات متفرقه">
<!ENTITY foxyproxy.animatedicons.label "استفاده از آیکون تصویری هنگام استفاده از پروکسی ها">
<!ENTITY foxyproxy.animatedicons.accesskey "A">
<!ENTITY foxyproxy.animatedicons.tooltip "استفاده از آیکون تصویری هنگام استفاده از پروکسی ها">
<!ENTITY foxyproxy.statusbaractivation.label "فعال کردن نوار وضعیت">
<!ENTITY foxyproxy.statusbaractivation.accesskey "S">
<!ENTITY foxyproxy.statusbaractivation.tooltip "تنظیمات فعال کردن نوار وضعیت">
<!ENTITY foxyproxy.toolbaractivation.label "فعال کردن نوار ابزار">
<!ENTITY foxyproxy.toolbaractivation.accesskey "T">
<!ENTITY foxyproxy.toolbaractivation.tooltip "تنظیمات فعال کردن نوار ابزار">
<!ENTITY foxyproxy.leftclicksb.label "در نوار وضعیت FoxyProxy کلیک چپ روی">
<!ENTITY foxyproxy.leftclicksb.accesskey "L">
<!ENTITY foxyproxy.leftclicksb.tooltip "در نوار وضعیت FoxyProxy کلیک چپ روی">
<!ENTITY foxyproxy.middleclicksb.label "در نوار وضعیت FoxyProxy کلیک وسط روی">
<!ENTITY foxyproxy.middleclicksb.accesskey "M">
<!ENTITY foxyproxy.middleclicksb.tooltip "در نوار وضعیت FoxyProxy کلیک وسط روی">
<!ENTITY foxyproxy.rightclicksb.label "در نوار وضعیت FoxyProxy کلیک راست روی">
<!ENTITY foxyproxy.rightclicksb.accesskey "R">
<!ENTITY foxyproxy.rightclicksb.tooltip "در نوار وضعیت FoxyProxy کلیک راست روی">
<!ENTITY foxyproxy.leftclicktb.label "در نوار ابزار FoxyProxy کلیک چپ روی">
<!ENTITY foxyproxy.leftclicktb.accesskey "L">
<!ENTITY foxyproxy.leftclicktb.tooltip "در نوار ابزار FoxyProxy کلیک چپ روی">
<!ENTITY foxyproxy.middleclicktb.label "در نوار ابزار FoxyProxy کلیک وسط روی">
<!ENTITY foxyproxy.middleclicktb.accesskey "M">
<!ENTITY foxyproxy.middleclicktb.tooltip "در نوار ابزار FoxyProxy کلیک وسط روی">
<!ENTITY foxyproxy.rightclicktb.label "در نوار ابزار FoxyProxy کلیک راست روی">
<!ENTITY foxyproxy.rightclicktb.accesskey "R">
<!ENTITY foxyproxy.rightclicktb.tooltip "در نوار ابزار FoxyProxy کلیک راست روی">
<!ENTITY foxyproxy.click.options "نمایش پنجره تنظیمات">
<!ENTITY foxyproxy.click.cycle "چرخش بین مودها">
<!ENTITY foxyproxy.click.contextmenu "نمایش منوی کلیک راست">
<!ENTITY foxyproxy.click.reloadcurtab "بارگذاری مجدد تب فعلی">
<!ENTITY foxyproxy.click.reloadtabsinbrowser "بارگذاری مجدد تمام تب های پنجره فعلی">
<!ENTITY foxyproxy.click.reloadtabsinallbrowsers "بارگذاری مجدد تمام تب ها در تمام پنجره ها">
<!ENTITY foxyproxy.click.removeallcookies "پاک کردن تمام کوکی ها">
<!ENTITY foxyproxy.includeincycle.label "Include this proxy when cycling proxies by clicking on statusbar or toolbar (Global Settings-&gt;Statusbar/Toolbar Activation-&gt;Cycle through modes must be selected)">
<!ENTITY foxyproxy.includeincycle.accesskey "I">
<!ENTITY foxyproxy.includeincycle.tooltip "در نظر گرفتن این پروکسی هنگام کلیک کردن روی نوار ابزار/وضعیت">
<!ENTITY foxyproxy.changes.msg1 "کجا هستند؟ SOCKS و HTTP, SSL, FTP, Gopher راهنما!تنظیمات">
<!ENTITY foxyproxy.newGUI.popup.height "270px">
<!ENTITY foxyproxy.newGUI.popup.width "400px">
<!ENTITY foxyproxy.newGUI1.label "The old FoxyProxy Proxy Settings screen was based on and nearly identical to Firefox&apos;s Connection Settings dialog, which in turn was nearly identical to the Proxy Settings in the ancient Mosaic 2.1.1 browser from 1996. The problem with all of these screens is their limited ability to route traffic by protocol. 21st century browsers like Firefox handle many more protocols than HTTP, SSL, FTP, and GOPHER. Clearly, these old screens would be unwieldy if they attempted to include every possible protocol.">
<!ENTITY foxyproxy.newGUI2.label "Since FoxyProxy already enables traffic routing by protocol with wildcard and regular expression patterns, the listing of protocols on this screen is unnecessary. As of version 2.5, FoxyProxy has removed this protocol list from the Proxy Settings GUI. However, this does not reduce functionality. It makes for a simpler interface. If you need to route traffic by protocol, you should define whitelist and blacklist patterns with careful attention to the scheme/protocol portion of the pattern (e.g., ftp://*.yahoo.com/*, *://leahscape.com/*, etc.)">
<!ENTITY foxyproxy.newGUI4.label "برای اطلاعات بیشتر کلیک کنید">
<!ENTITY foxyproxy.error.msg.label "پیغام خطا">
<!ENTITY foxyproxy.pac.result.label "PAC نتایج">
<!ENTITY foxyproxy.options.width "750">
<!ENTITY foxyproxy.options.height "500">
<!ENTITY foxyproxy.torwiz.width "660">
<!ENTITY foxyproxy.torwiz.height "375">
<!ENTITY foxyproxy.addeditproxy.width "660">
<!ENTITY foxyproxy.addeditproxy.height "470">

View File

@ -0,0 +1,136 @@
extensions.foxyproxy@eric.h.jung.description=تنظیمات پیشرفته پروکسی ها-FoxyProxy
foxyproxy=FoxyProxy
tor=Tor
privoxy=Privoxy
settings.error=خطا در خواندن تنظیمات
error=خطا
welcome=!خوش آمدید FoxyProxy به
yes=بله
no=نه
disabled=غیرفعال
torwiz.configure=دارید؟ Tor آیا تصمیم به پیکربندی برنامه برای استفاده با
torwiz.with.without.privoxy=یا بدون آن؟ Privoxy با Tor استفاده از
torwiz.with=Privoxy با
torwiz.without=Privoxy بدون
torwiz.privoxy.not.required=Please note: as of Firefox 1.5, Privoxy is no longer needed to use Firefox with Tor. Privoxy adds value such as content filtering, but it is not strictly necessary for use with Firefox 1.5+ and Tor. Would you still like Firefox to use Tor via Privoxy?
torwiz.port=را وارد کنید.در صورتی که نمی دانید %S پورت مورد نظر برای ارتباط
torwiz.nan=.این یک عدد نیست
torwiz.proxy.notes=http://tor.eff.org-Tor پروکسی با استفاده از شبکه
torwiz.google.mail=پست الکترونیکی گوگل
torwiz.pattern=http://*mail.google.com/*
torwiz.congratulations=Tor تنظیم شد.قبل از بازدید از سایت هایی که باید با Tor برای استفاده با FoxyProxy
torwiz.cancelled=.لغو شد Tor ویزارد
mode.patterns.label=.استفاده از پروکسی هایی که الگوها و تنظیمات آن ها از قبل مشخص شده است
mode.patterns.accesskey=U
mode.patterns.tooltip=.استفاده از پروکسی هایی که الگوها و تنظیمات آن ها از قبل مشخص شده است
mode.custom.label=برای تمام آدرس ها "%S" استفاده از پروکسی
mode.custom.tooltip=برای تمام آدرس "%S" استفاده از پروکسی
mode.disabled.label=FoxyProxy از کار انداختن کامل
mode.disabled.accesskey=D
mode.disabled.tooltip=FoxyProxy از کار انداختن کامل
more.label=بیشتر
more.accesskey=M
more.tooltip=تنظیمات بیشتر
invalid.url=.آدرسی که برای تنظیمات خودکار پروکسی تنظیم شده معتبر نیست
protocols.error=.یک یا چند پروتکل را برای پروکسی مشخص کنید
noport2=A port must be specified for the host.
nohost2=A host name must be specified with the port.
nohostport=Host name and port must be specified.
torwiz.nopatterns=استفاده نخواهد شد.برنامه به کار خود ادامه دهد؟ Tor شما لیست سفید ندارید.این یعنی
months.long.1=ژانویه
months.short.1=ژانویه
months.long.2=فوریه
months.short.2=فوریه
months.long.3=مارس
months.short.3=مارس
months.long.4=آوریل
months.short.4=آوریل
months.long.5=مه
months.short.5=مه
months.long.6=ژوئن
months.short.6=ژوئن
months.long.7=ژوئیه
months.short.7=ژوئیه
months.long.8=آگوست
months.short.8=آگوست
months.long.9=سپتامبر
months.short.9=سپتامبر
months.long.10=اکتبر
months.short.10=اکتبر
months.long.11=نوامبر
months.short.11=نوامبر
months.long.12=دسامبر
months.short.12=دسامبر
days.long.1=یکشنبه
days.short.1=یکشنبه
days.long.2=دوشنبه
days.short.2=دوشنبه
days.long.3=سه شنبه
days.short.3=سه شنبه
days.long.4=چهارشنبه
days.short.4=چهارشنبه
days.long.5=پنجشنبه
days.short.5=پنجشنبه
days.long.6=جمعه
days.short.6=جمعه
days.long.7=شنبه
days.short.7=شنبه
timeformat=HH:nn:ss:zzz mmm dd, yyyy
file.select=.فایلی که تنظیمات باید در آن ذخیره شود را مشخص کنید
manual=دستی
auto=خودکار
direct=مستقیم
delete.proxy.confirm=حذف پروکسی؟
pattern.required=.یک الگو مورد نیاز است
pattern.invalid.regex=.یک عبارت منظم نیست %S
proxy.error.for.url=%S خطا در تعیین یک پروکسی برای
proxy.default.settings.used=برای این آدرس استفاده نشد-تنظیمات فایرفاکس مورد استفاده قرار گرفت FoxyProxy تنظیمات
proxy.all.urls=.تمام آدرس ها باید از این پروکسی استفاده کنند
pac.status=برنامه PAC وضعیت
pac.status.loadfailure=\n\r"%S" برای پروکسی PAC خطا در بارگذاری
pac.status.success=.بارگذاری شد "%S" برای پروکسی PAC
pac.status.error=\n\r"%S" برای پروکسی PAC خطا در
error.noload=Error. Please contact the FoxyProxy development team. No private data is leaking, but the resource will not load. Exception is %S
proxy.name.required=.در تب عمومی یک نام برای پروکسی انتخاب کنید
proxy.default=پیشفرض
proxy.default.notes=.زمانی از این تنظیمات استفاده می شود که یک آدرس یا هیچ الگویی سازگار نباشد
proxy.default.match.name=همه
delete.proxy.default=.این پروکسی قابل پاک کردن نیست
copy.proxy.default=.این پروکسی قابل کپی کردن نیست
logg.maxsize.change=پاک کردن گزارش ها؟
logg.maxsize.maximum=بیشترین اندازه توصیه شده 9999 است.اندازه های بالاتر حافظه بیشتری اشغال کرده و روی کارکرد سیستم تاثیر می گذارد.تصمیم به ادامه کار دارید؟
proxy.random=.پروکسی به صورت تصادفی انتخاب شد
mode.random.label=(استفاده از پروکسی تصادفی برای تمام آدرس ها (بدون توجه به الگوها و تنظیمات
mode.random.accesskey=R
mode.random.tooltip=(بارگذاری آدرس ها از پروکسی تصادفی (بدون توجه به الگوها و تنظیمات
random=تصادفی
random.applicable=این ویژگی فقط وقتی استفاده می شود که مود "استفاده از پروکسی تصادفی برای تمام آدرس ها" انتخاب شده باشد
superadd.error=.غیرفعال شد %S : خطای پیکربندی
superadd.notify=%S پروکسی
superadd.url.added=.افزوده شد "%S" به پروکسی %S
autoadd.pattern.label=الگوی پویا
quickadd.pattern.label=الگوی افزودن سریع پویا
torwiz.proxydns=.انجام شود؟اگر این سوال را نمی فهمید "بله" را انتخاب کنید Tor از شبکه DNS درخواست
superadd.verboten2=%S cannot be enabled because either no proxies are defined or all proxies are disabled.
autoadd.notice=توجه کنید:افزودن خودکار باعث کند شدن سرعت بارگذاری سایت ها می شود.بسته به پیچیدگی الگو و اندازه سایت این اندازه افزایش می یابد.در صورتی که سرعت شما به صورت محسوسی کاهش یافته افزودن خودکار را غیرفعال کنید
autoadd.notice2=
autoconfurl.test.success=.پیدا،بارگذاری و با موفقیت تجزیه شد PAC
autoconfurl.test.fail=\nPAC مشکل در پیدا کردن،بارگذاری و تجزیه
none=هیچ
delete.settings.ask=دارید؟ %S آیا تصمیم به پاک کردن تنظیمات ذخیره شده در
delete.settings.confirm=.بعد از راه اندازی مجدد پاک خواهد شد %S
no.wildcard.characters=است.ادامه؟ %S ی ندارد.این به معنی مطابق سازی عینی wildcard این الگو هیج
message.stop=این پیغام را دوباره نمایش نده
log.save=ذخیره گزارش
log.saved2=ذخیره شد.نمایش گزارش؟ %S گزارش در
log.nourls.url=گزارش نشده
log.scrub=پاک کردن گزارش ها فعلی؟
no.white.patterns=شما لیست سفیدی ندارید.در این صورت از پروکسی استفاده نخواهد شد.ادامه؟
quickadd.quickadd.canceled=QuickAdd has been canceled because the current URL already matches the existing pattern named "%S" in proxy "%S"
quickadd.nourl=Unable to get current URL
cookies.allremoved=All cookies removed
route.error=Error while determining which host to use for proxying
route.exception=Exception while determinig which host to use for proxying %S
see.log=Please see log for more information.
pac.select=Select the PAC file to use
pac.files=PAC Files

View File

@ -0,0 +1,73 @@
<?xml version="1.0"?>
<!--
FoxyProxy
Copyright (C) 2006, 2007 Eric H. Jung and LeahScape, Inc.
http://foxyproxy.mozdev.org/
eric.jung@yahoo.com
This source code is released under the GPL license,
available in the LICENSE file at the root of this installation
and also online at http://www.gnu.org/licenses/gpl.txt
All Rights Reserved. PATENT PENDING.
-->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head><title>FoxyProxy Help</title>
<style type="text/css">
table {
border-width: 0px;
border-spacing: 2px;
border-style: none;
border-color: white;
border-collapse: separate;
background-color: rgb(250, 240, 230);
font-size: x-small;
font-family: verdana, sans-serif;
}
table td,table th {
border-width: 1px;
padding: 1px;
border-style: groove;
border-color: green;
background-color: rgb(250, 240, 230);
vertical-align: top;
font-size: x-small;
font-family: verdana, sans-serif;
}
p {background-color: white; font-size: x-small; font-family: verdana, sans-serif;}
body {font-family: verdana, sans-serif;}
.style1 {font-family: Tahoma}
.style1 {
font-family: Tahoma;
font-size: x-small;
}
.style2 {font-size: x-small}
</style>
</head>
<body>
<h3 align="right" class="style1">&#1575;&#1604;&#1711;&#1608;&#1607;&#1575;&#1740; &#1570;&#1583;&#1585;&#1587; </h3>
<p align="right" class="style1"> .&#1607;&#1575; &#1607;&#1587;&#1578;&#1606;&#1583; <a>Wildcard</a> &#1602;&#1576;&#1604; &#1575;&#1586; &#1575;&#1740;&#1606;&#1705;&#1607; &#1740;&#1705; &#1570;&#1583;&#1585;&#1587; &#1576;&#1575;&#1585;&#1711;&#1584;&#1575;&#1585;&#1740; &#1588;&#1608;&#1583; &#1576;&#1575; &#1575;&#1604;&#1711;&#1608;&#1607;&#1575; &#1605;&#1591;&#1575;&#1576;&#1602;&#1578; &#1583;&#1575;&#1583;&#1607; &#1605;&#1740; &#1588;&#1608;&#1583;.&#1740;&#1705; &#1585;&#1575;&#1607; &#1587;&#1575;&#1583;&#1607; &#1576;&#1585;&#1575;&#1740; &#1575;&#1740;&#1580;&#1575;&#1583; &#1575;&#1604;&#1711;&#1608;&#1607;&#1575; </p>
<p align="right" class="style1">&nbsp;</p>
<h4 align="right"><span class="style1"> &#1607;&#1575; <a>Wildcard</a></span></h4>
<p align="right"><span class="style1"> <a> .&#1607;&#1575; &#1593;&#1576;&#1575;&#1585;&#1575;&#1578;&#1740; &#1607;&#1587;&#1578;&#1606;&#1583; &#1705;&#1607; &#1576;&#1607; &#1580;&#1575;&#1740; &#1705;&#1575;&#1585;&#1575;&#1705;&#1578;&#1585;&#1607;&#1575; &#1576;&#1607; &#1705;&#1575;&#1585; &#1605;&#1740; &#1585;&#1608;&#1606;&#1583;.&#1593;&#1604;&#1575;&#1605;&#1578; (?) &#1576;&#1607; &#1580;&#1575;&#1740; &#1740;&#1705; &#1705;&#1575;&#1585;&#1575;&#1705;&#1578;&#1585; &#1608; &#1593;&#1604;&#1575;&#1605;&#1578; (*) &#1576;&#1607; &#1580;&#1575;&#1740; &#1589;&#1601;&#1585; &#1740;&#1575; &#1670;&#1606;&#1583; &#1705;&#1575;&#1585;&#1575;&#1705;&#1578;&#1585; &#1576;&#1607; &#1705;&#1575;&#1585; &#1605;&#1740; &#1585;&#1608;&#1583; Wildcard</a></span> </p>
<p align="right" class="style1">.&#1576;&#1585;&#1575;&#1740; &#1575;&#1591;&#1604;&#1575;&#1593;&#1575;&#1578; &#1608; &#1580;&#1585;&#1574;&#1740;&#1575;&#1578; &#1576;&#1740;&#1588;&#1578;&#1585; &#1711;&#1586;&#1740;&#1606;&#1607; &#1585;&#1575;&#1607;&#1606;&#1605;&#1575; &#1583;&#1585; &#1605;&#1606;&#1608;&#1740; &#1576;&#1585;&#1606;&#1575;&#1605;&#1607; &#1585;&#1575; &#1575;&#1606;&#1578;&#1582;&#1575;&#1576; &#1705;&#1606;&#1740;&#1583;</p>
<p align="right" class="style1">&nbsp;</p>
<h4 align="right" class="style1 style2">&#1607;&#1575; Wildcard &#1605;&#1579;&#1575;&#1604; &#1607;&#1575;&#1740; </h4>
<table align="center">
<thead>
<tr>
<th><span class="style1">&#1575;&#1604;&#1711;&#1608;&#1740; &#1570;&#1583;&#1585;&#1587; </span></th>
<th><span class="style1">&#1605;&#1579;&#1575;&#1604; &#1605;&#1606;&#1591;&#1576;&#1602; </span></th>
<th><span class="style1">&#1605;&#1579;&#1575;&#1604; &#1594;&#1740;&#1585;&#1605;&#1606;&#1591;&#1576;&#1602; </span></th>
</tr>
</thead>
<tr><td>*://*.yahoo.com/*</td><td>Everything in Yahoo's domain</td><td>http://mail.google.com/</td></tr>
<tr><td>*://mail.yahoo.com/*</td><td>http://mail.yahoo.com/<br/>http://mail.yahoo.com/clownshoes/<br/>http://mail.yahoo.com/inbox/123.html<br/>ftp://mail.yahoo.com</td><td>http://maps.yahoo.com</td></tr>
<tr><td>http://??.wikipedia.org/wiki/Clown</td><td>http://en.wikipedia.org/wiki/Clown<br/>http://de.wikipedia.org/wiki/Clown<br/>http://cs.wikipedia.org/wiki/Clown</td><td>https://en.wikipedia.org/wiki/Clown<br/>http://de.wikipedia.org/wiki/Clown/<br/>ftp://en.wikipedia.org/wiki/Clown</td></tr>
<tr><td>http://digg.com/</td><td>http://digg.com/</td><td>http://digg.com<br/>http://www.digg.com/</td></tr>
<tr><td>*://*.asimov.???/*</td><td>ftp://ftp.asimov.net/<br/>ftp://ftp.asimov.com/theory.html<br/>http://bear.asimov.net/mom/<br/>https://isaac.asimov.org/hercules<br/>gopher://asimov.net/</td>
<td>ftp://ftp.asimov.co.uk<br/>http://isaac.home.com/tin.php</td></tr>
<tr><td>*</td><td><i>Matches everything</i></td><td>&nbsp;</td></tr>
</table>
</body>
</html>

View File

@ -0,0 +1,427 @@
<!ENTITY foxyproxy.label "FoxyProxy">
<!ENTITY foxyproxy.accesskey "F">
<!ENTITY foxyproxy.tooltip "FoxyProxy">
<!ENTITY foxyproxy.optionsdialog.label "Options de FoxyProxy">
<!ENTITY foxyproxy.options.label "Options">
<!ENTITY foxyproxy.options.accesskey "O">
<!ENTITY foxyproxy.options.tooltip "Ouvre la fenêtre de dialogue des options">
<!ENTITY foxyproxy.tree.pickertooltiptext.label "Cliquer pour choisir les colonnes à afficher">
<!ENTITY foxyproxy.proxy.name.label "Nom du proxy">
<!ENTITY foxyproxy.proxy.name.accesskey "N">
<!ENTITY foxyproxy.proxy.name.tooltip "Nom du proxy">
<!ENTITY foxyproxy.proxy.notes.label "Notes sur le proxy">
<!ENTITY foxyproxy.proxy.notes.accesskey "t">
<!ENTITY foxyproxy.proxy.notes.tooltip "Notes concernant le proxy">
<!ENTITY foxyproxy.pattern.label "Motif de correspondance">
<!ENTITY foxyproxy.pattern.type.label "Type de motif">
<!ENTITY foxyproxy.whitelist.blacklist.label "Liste blanche (autorisés) ou liste noire (exclus)">
<!ENTITY foxyproxy.pattern.name.label "Nom du motif">
<!ENTITY foxyproxy.pattern.name.accesskey "m">
<!ENTITY foxyproxy.pattern.name.tooltip "Nom du motif">
<!ENTITY foxyproxy.url.pattern.label "Motif d&apos;URL">
<!ENTITY foxyproxy.url.pattern.accesskey "U">
<!ENTITY foxyproxy.url.pattern.tooltip "Motif d&apos;URL">
<!ENTITY foxyproxy.enabled.label "Activé(e)">
<!ENTITY foxyproxy.enabled.accesskey "c">
<!ENTITY foxyproxy.enabled.tooltip "Basculer entre l&apos;état actif et l&apos;état inactif">
<!ENTITY foxyproxy.delete.selection.label "Supprimer la sélection">
<!ENTITY foxyproxy.delete.selection.accesskey "S">
<!ENTITY foxyproxy.delete.selection.tooltip "Supprime l&apos;élément sélectionné">
<!ENTITY foxyproxy.edit.selection.label "Éditer la sélection">
<!ENTITY foxyproxy.edit.selection.accesskey "E">
<!ENTITY foxyproxy.edit.selection.tooltip "Édite l&apos;élément sélectionné">
<!ENTITY foxyproxy.help.label "Contenu de l&apos;aide">
<!ENTITY foxyproxy.help.accesskey "a">
<!ENTITY foxyproxy.help.tooltip "Affiche l&apos;aide">
<!ENTITY foxyproxy.close.label "Fermer">
<!ENTITY foxyproxy.close.accesskey "F">
<!ENTITY foxyproxy.close.tooltip "Ferme la fenêtre">
<!ENTITY foxyproxy.about.label "À propos">
<!ENTITY foxyproxy.about.accesskey "p">
<!ENTITY foxyproxy.about.tooltip "Ouvre la fenêtre des informations sur l&apos;extension">
<!ENTITY foxyproxy.online.label "FoxyProxy en ligne">
<!ENTITY foxyproxy.online.accesskey "l">
<!ENTITY foxyproxy.online.tooltip "Visiter le site Web de FoxyProxy">
<!ENTITY foxyproxy.tor.label "Assistant Tor">
<!ENTITY foxyproxy.tor.accesskey "s">
<!ENTITY foxyproxy.tor.tooltip "Assistant Tor">
<!ENTITY foxyproxy.copy.selection.label "Copier la sélection">
<!ENTITY foxyproxy.copy.selection.accesskey "C">
<!ENTITY foxyproxy.copy.selection.tooltip "Copie la sélection">
<!ENTITY foxyproxy.mode.label "Sélectionner le mode">
<!ENTITY foxyproxy.auto.url.label "Adresse de configuration automatique du proxy">
<!ENTITY foxyproxy.auto.url.accesskey "d">
<!ENTITY foxyproxy.auto.url.tooltip "Entrer l&apos;URL du fichier PAC">
<!ENTITY foxyproxy.port.label "Port">
<!ENTITY foxyproxy.port.accesskey "P">
<!ENTITY foxyproxy.port.tooltip "Port">
<!ENTITY foxyproxy.socks.proxy.label "Proxy SOCKS">
<!ENTITY foxyproxy.socks.proxy.accesskey "r">
<!ENTITY foxyproxy.socks.proxy.tooltip "URL du proxy SOCKS">
<!ENTITY foxyproxy.socks.v4 "SOCKS v4/4a">
<!ENTITY foxyproxy.socks.v5 "SOCKS v5">
<!ENTITY foxyproxy.addeditpattern.title "Ajouter/Éditer un motif de correspondance">
<!ENTITY foxyproxy.wildcard.label "Jokers">
<!ENTITY foxyproxy.wildcard.accesskey "J">
<!ENTITY foxyproxy.wildcard.tooltip "Spécifie que le motif de correspondance d&apos;URL utilise des jokers et n&apos;est pas une expression régulière">
<!ENTITY foxyproxy.wildcard.example.label "Exemple : *mail.yahoo.com/*">
<!ENTITY foxyproxy.regex.label "Expression régulière">
<!ENTITY foxyproxy.regex.accesskey "r">
<!ENTITY foxyproxy.regex.tooltip "Spécifie que le motif de correspondance d&apos;URL est une expression régulière">
<!ENTITY foxyproxy.regex.example.label "Exemple : http?://.*\.mail\.yahoo\.com/.*">
<!ENTITY foxyproxy.version "Version">
<!ENTITY foxyproxy.createdBy "Créée par :">
<!ENTITY foxyproxy.copyright "Copyright">
<!ENTITY foxyproxy.rights "Tous droits réservés">
<!ENTITY foxyproxy.released "Publiée sous licence GPL.">
<!ENTITY foxyproxy.thanks "Remerciements particuliers à">
<!ENTITY foxyproxy.translations "Traductions">
<!ENTITY foxyproxy.tab.general.label "Générales">
<!ENTITY foxyproxy.tab.general.accesskey "G">
<!ENTITY foxyproxy.tab.general.tooltip "Gère les paramètres généraux de proxy">
<!ENTITY foxyproxy.tab.proxy.label "Informations">
<!ENTITY foxyproxy.tab.proxy.accesskey "I">
<!ENTITY foxyproxy.tab.proxy.tooltip "Gestion des informations sur le proxy">
<!ENTITY foxyproxy.tab.patterns.label "Motifs">
<!ENTITY foxyproxy.tab.patterns.accesskey "M">
<!ENTITY foxyproxy.tab.patterns.tooltip "Gestion des motifs de correspondance">
<!ENTITY foxyproxy.add.title "Paramètres du proxy">
<!ENTITY foxyproxy.pattern.description "Vous pouvez ici ajouter ou retirer les URL pour lesquelles ce proxy est utilisé">
<!ENTITY foxyproxy.pattern.matchtype.label "Format du motif">
<!ENTITY foxyproxy.pattern.matchtype2.label "Contenu du motif servant à identifier les sites Web bloqués">
<!ENTITY foxyproxy.pattern.template.matchtype.label "Contenu du modèle de motif">
<!ENTITY foxyproxy.pattern.whiteblack.label "URL autorisées/exclues">
<!ENTITY foxyproxy.add.option.direct.label "Connexion Internet directe (sans proxy)">
<!ENTITY foxyproxy.add.option.direct.accesskey "D">
<!ENTITY foxyproxy.add.option.direct.tooltip "N&apos;utilise pas de proxy - utilise la connexion Internet directe">
<!ENTITY foxyproxy.add.option.manual.label "Configuration manuelle du proxy">
<!ENTITY foxyproxy.add.option.manual.accesskey "m">
<!ENTITY foxyproxy.add.option.manual.tooltip "Définit manuellement la configuration d&apos;un proxy">
<!ENTITY foxyproxy.add.new.pattern.label "Ajouter un nouveau motif">
<!ENTITY foxyproxy.add.new.pattern.accesskey "A">
<!ENTITY foxyproxy.add.new.pattern.tooltip "Ajoute un nouveau motif">
<!ENTITY foxyproxy.menubar.file.label "Fichier">
<!ENTITY foxyproxy.menubar.file.accesskey "F">
<!ENTITY foxyproxy.menubar.file.tooltip "Ouvre le menu &apos;Fichier&apos;">
<!ENTITY foxyproxy.menubar.help.label "Aide">
<!ENTITY foxyproxy.menubar.help.accesskey "A">
<!ENTITY foxyproxy.menubar.help.tooltip "Ouvre le menu d&apos;aide">
<!ENTITY foxyproxy.mode.accesskey "m">
<!ENTITY foxyproxy.mode.tooltip "Sélectionne la manière avec laquelle FoxyProxy est activée">
<!ENTITY foxyproxy.tab.proxies.label "Proxies">
<!ENTITY foxyproxy.tab.proxies.accesskey "P">
<!ENTITY foxyproxy.tab.proxies.tooltip "Gère les proxies">
<!ENTITY foxyproxy.tab.global.label "Paramètres généraux">
<!ENTITY foxyproxy.tab.global.accesskey "g">
<!ENTITY foxyproxy.tab.global.tooltip "Gère les paramètres généraux">
<!ENTITY foxyproxy.tab.logging.label "Identification">
<!ENTITY foxyproxy.tab.logging.accesskey "f">
<!ENTITY foxyproxy.tab.logging.tooltip "Gère les paramètres d&apos;identification">
<!ENTITY foxyproxy.proxydns.label "Utiliser un proxy SOCKS pour les résolutions DNS">
<!ENTITY foxyproxy.proxydns.accesskey "U">
<!ENTITY foxyproxy.proxydns.tooltip "Si cette case est cochée, les résolutions DNS seront routées via un proxy SOCKS">
<!ENTITY foxyproxy.proxydns.notice "Vous devez redémarrer Firefox pour que les modifications prennent effet.">
<!ENTITY foxyproxy.showstatusbaricon.label "Afficher l&apos;icône dans la barre d&apos;état">
<!ENTITY foxyproxy.showstatusbaricon.accesskey "f">
<!ENTITY foxyproxy.showstatusbaricon.tooltip "Si cette case est cochée, l&apos;icône de Foxyproxy sera affichée dans la barre d&apos;état">
<!ENTITY foxyproxy.showstatusbarmode.label "Afficher le mode (texte) dans la barre d&apos;état">
<!ENTITY foxyproxy.showstatusbarmode.accesskey "x">
<!ENTITY foxyproxy.showstatusbarmode.tooltip "Si cette case est cochée, le mode utilisé par Foxyproxy est affiché dans la barre d&apos;état">
<!ENTITY foxyproxy.storagelocation.label "Emplacement de stockage des paramètres">
<!ENTITY foxyproxy.storagelocation.accesskey "S">
<!ENTITY foxyproxy.storagelocation.tooltip "Emplacement dans lequel sont stockés les paramètres de FoxyProxy">
<!ENTITY foxyproxy.tab.logging.timestamp.label "Horloge">
<!ENTITY foxyproxy.tab.logging.url.label "URL">
<!ENTITY foxyproxy.host.label "Nom d&apos;hôte">
<!ENTITY foxyproxy.host.accesskey "h">
<!ENTITY foxyproxy.host.tooltip "Nom d&apos;hôte">
<!ENTITY foxyproxy.clear.label "Effacer">
<!ENTITY foxyproxy.clear.accesskey "c">
<!ENTITY foxyproxy.clear.tooltip "Effacer">
<!ENTITY foxyproxy.refresh.label "Actualiser">
<!ENTITY foxyproxy.refresh.accesskey "u">
<!ENTITY foxyproxy.refresh.tooltip "Actualiser">
<!ENTITY foxyproxy.save.label "Enregistrer">
<!ENTITY foxyproxy.save.accesskey "E">
<!ENTITY foxyproxy.save.tooltip "Enregistrer">
<!ENTITY foxyproxy.addnewproxy.label "Ajouter un nouveau proxy">
<!ENTITY foxyproxy.addnewproxy.accesskey "A">
<!ENTITY foxyproxy.addnewproxy.tooltip "Ajoute un nouveau proxy">
<!ENTITY foxyproxy.whitelist.label "Liste blanche">
<!ENTITY foxyproxy.whitelist.accesskey "b">
<!ENTITY foxyproxy.whitelist.tooltip "Les URL correspondant à ce motif sont chargées en utilisant ce proxy">
<!ENTITY foxyproxy.whitelist.description.label "Les URL correspondant à ce motif sont chargées en utilisant ce proxy">
<!ENTITY foxyproxy.blacklist.label "Liste noire">
<!ENTITY foxyproxy.blacklist.accesskey "n">
<!ENTITY foxyproxy.blacklist.tooltip "Les URL correspondant à ce motif NE sont PAS chargées en utilisant ce proxy">
<!ENTITY foxyproxy.blacklist.description.label "Les URL correspondant à ce motif NE sont PAS chargées en utilisant ce proxy">
<!ENTITY foxyproxy.whiteblack.description.label "les motifs dans la liste noire (refusés) sont prioritaires par rapport aux motifs dans la liste blanche (autorisés) : Si une URL correspond à un motif contenu à la fois dans la liste blanche et la liste noire, elle Ne sera PAS chargée en utilisant ce proxy.">
<!ENTITY foxyproxy.usingPFF.label1 "J&apos;utilise">
<!ENTITY foxyproxy.usingPFF.label2 "Portable Firefox">
<!ENTITY foxyproxy.usingPFF.accesskey "P">
<!ENTITY foxyproxy.usingPFF.tooltip "Cochez la case si vous utilisez Portable Firefox">
<!ENTITY foxyproxy.socks.version.label "Version SOCKS">
<!ENTITY foxyproxy.autopacurl.label "URL Auto PAC">
<!ENTITY foxyproxy.issocks.label "Proxy SOCKS ?">
<!ENTITY foxyproxy.issocks.accesskey "S">
<!ENTITY foxyproxy.issocks.tooltip "Est-ce un proxy Web ou un proxy SOCKS ?">
<!ENTITY foxyproxy.chinese.simplified "Chinois (Simplifié)">
<!ENTITY foxyproxy.chinese.traditional "Chinois (traditionnel)">
<!ENTITY foxyproxy.croatian "Croate">
<!ENTITY foxyproxy.czech "Tchèque">
<!ENTITY foxyproxy.danish "Danois">
<!ENTITY foxyproxy.dutch "Hollandais">
<!ENTITY foxyproxy.english "Anglais">
<!ENTITY foxyproxy.english.british "Anglais (britannique)">
<!ENTITY foxyproxy.french "Français">
<!ENTITY foxyproxy.german "Allemand">
<!ENTITY foxyproxy.greek "Grec">
<!ENTITY foxyproxy.hungarian "Hongrois">
<!ENTITY foxyproxy.italian "Italien">
<!ENTITY foxyproxy.persian "Persan">
<!ENTITY foxyproxy.polish "Polonais">
<!ENTITY foxyproxy.portugese.brazilian "Portugais(Brésilien)">
<!ENTITY foxyproxy.portugese.portugal "Portugais (Portugal)">
<!ENTITY foxyproxy.romanian "Roumain">
<!ENTITY foxyproxy.russian "Russe">
<!ENTITY foxyproxy.slovak "Slovaque">
<!ENTITY foxyproxy.spanish.spain "Espagnol (Espagne)">
<!ENTITY foxyproxy.spanish.argentina "Espagnol (Argentine)">
<!ENTITY foxyproxy.swedish "Suédois">
<!ENTITY foxyproxy.thai.thailand "Thaïlandais (Thaïlande)">
<!ENTITY foxyproxy.turkish "Turc">
<!ENTITY foxyproxy.ukrainian "Ukrénien">
<!ENTITY foxyproxy.your.language "Votre langue">
<!ENTITY foxyproxy.your.name.here "Votre nom ici !">
<!ENTITY foxyproxy.moveup.label "Monter">
<!ENTITY foxyproxy.moveup.tooltip "Remonter afin d&apos;accroître la priorité de la sélection courante">
<!ENTITY foxyproxy.moveup.accesskey "M">
<!ENTITY foxyproxy.movedown.label "Descendre">
<!ENTITY foxyproxy.movedown.tooltip "Descendre afin de réduire la priorité de la sélection courante">
<!ENTITY foxyproxy.movedown.accesskey "D">
<!ENTITY foxyproxy.autoconfurl.view.label "Affichage">
<!ENTITY foxyproxy.autoconfurl.view.accesskey "f">
<!ENTITY foxyproxy.autoconfurl.view.tooltip "Afficher le fichier d&apos;auto-configuration">
<!ENTITY foxyproxy.autoconfurl.test.label "Test">
<!ENTITY foxyproxy.autoconfurl.test.accesskey "T">
<!ENTITY foxyproxy.autoconfurl.test.tooltip "Tester le fichier d&apos;auto-configuration">
<!ENTITY foxyproxy.autoconfurl.reload.label "Recharger le PAC toutes les">
<!ENTITY foxyproxy.autoconfurl.reload.accesskey "R">
<!ENTITY foxyproxy.autoconfurl.reload.tooltip "Recharger automatiquement le fichier PAC à intervalle spécifié">
<!ENTITY foxyproxy.minutes.label "minutes">
<!ENTITY foxyproxy.minutes.tooltip "minutes">
<!ENTITY foxyproxy.logging.maxsize.label "Taille maximale">
<!ENTITY foxyproxy.logging.maxsize.accesskey "M">
<!ENTITY foxyproxy.logging.maxsize.tooltip "Nombre d&apos;entrées maximales dans le journal avant de reprendre à partir du début">
<!ENTITY foxyproxy.logging.maxsize.button.label "Valider">
<!ENTITY foxyproxy.logging.maxsize.button.accesskey "V">
<!ENTITY foxyproxy.logging.maxsize.button.tooltip "Définit le nombre d&apos;entrées maximales dans le journal avant de reprendre à partir du début">
<!ENTITY foxyproxy.random.label "Charger les URL en utilisant des proxies de manière aléatoire (ignore tout motif et toute priorité)">
<!ENTITY foxyproxy.random.accesskey "l">
<!ENTITY foxyproxy.random.tooltip "Charger les URL en utilisant des proxies de manière aléatoire (ignore tous les motifs et toutes les priorités)">
<!ENTITY foxyproxy.random.includedirect.label "Inclure les proxies configurés pour une connexion Internet directe">
<!ENTITY foxyproxy.random.includedirect.accesskey "I">
<!ENTITY foxyproxy.random.includedirect.tooltip "les proxies configurés pour une connexion Internet directe sont inclus dans la sélection aléatoire de proxy">
<!ENTITY foxyproxy.random.includedisabled.label "Inclure les proxies désactivés">
<!ENTITY foxyproxy.random.includedisabled.accesskey "D">
<!ENTITY foxyproxy.random.includedisabled.tooltip "Les proxies configurés comme étant désactivés sont inclus dans la sélection aléatoire de proxy">
<!ENTITY foxyproxy.random.settings.label "Sélection aléatoire de proxy">
<!ENTITY foxyproxy.random.settings.accesskey "R">
<!ENTITY foxyproxy.random.settings.tooltip "Paramètres qui ont une incidence sur la sélection aléatoire de proxy">
<!ENTITY foxyproxy.tab.autoadd.label "AjoutAuto">
<!ENTITY foxyproxy.tab.autoadd.accesskey "A">
<!ENTITY foxyproxy.tab.autoadd.tooltip "Gère les paramètres de l&apos;ajout automatique">
<!ENTITY foxyproxy.autoadd.description "Définit un motif qui identifie des sites Web bloqués. Lorsque le motif est trouvé sur une page, un motif correspondant à l&apos;URL de ce site Web est automatiquement ajouté à un proxy et optionnellement rechargé. Cela vous évite d&apos;identifier proactivement tous les sites bloqués.">
<!ENTITY foxyproxy.autoadd.pattern.label "Motif pour identifier les sites Web bloqués">
<!ENTITY foxyproxy.autoadd.pattern.accesskey "P">
<!ENTITY foxyproxy.autoadd.pattern.tooltip "Motif qui identifie les sites bloqués">
<!ENTITY foxyproxy.autoadd.wildcard.example.label "Exemple : *Vous n&apos;êtes pas autorisé à afficher cette page*">
<!ENTITY foxyproxy.autoadd.regex.example.label "Exemple: .*Site.*a été bloqué.*">
<!ENTITY foxyproxy.autoadd.proxy.label "Proxy auquel les motifs sont automatiquement ajoutés">
<!ENTITY foxyproxy.autoadd.proxy.accesskey "P">
<!ENTITY foxyproxy.autoadd.proxy.tooltip "Définir le proxy auquel les motifs sont automatiquement ajoutés">
<!ENTITY foxyproxy.pattern.template.label "Modèle de motif d&apos;URL">
<!ENTITY foxyproxy.pattern.template.accesskey "U">
<!ENTITY foxyproxy.pattern.template.tooltip "Modèle de motif d&apos;URL">
<!ENTITY foxyproxy.pattern.template.example.label1 "Exemple pour">
<!ENTITY foxyproxy.pattern.template.example.label2 "http://fred:secret@mail.foo.com:8080/inbox/msg102.htm#subject?style=elegant">
<!ENTITY foxyproxy.pattern.template.currenturl.label "URL courante">
<!ENTITY foxyproxy.pattern.template.currenturl.accesskey "C">
<!ENTITY foxyproxy.pattern.template.currenturl.tooltip "URL dans la barre d&apos;adresse">
<!ENTITY foxyproxy.pattern.template.generatedpattern.label "Motif généré">
<!ENTITY foxyproxy.pattern.template.generatedpattern.accesskey "g">
<!ENTITY foxyproxy.pattern.template.generatedpattern.tooltip "Motif généré dynamiquement">
<!ENTITY foxyproxy.autoadd.reload.label "Recharger la page après l&apos;ajout du motif au proxy">
<!ENTITY foxyproxy.autoadd.reload.accesskey "R">
<!ENTITY foxyproxy.autoadd.reload.tooltip "Recharger automatiquement la page après l&apos;ajout du motif au proxy">
<!ENTITY foxyproxy.autoadd.notify.label "M&apos;avertir lorsque l&apos;AutoAjout est activé">
<!ENTITY foxyproxy.autoadd.notify.accesskey "v">
<!ENTITY foxyproxy.autoadd.notify.tooltip "Vous informe lorsqu&apos;une page est bloquée et que le motif de correspondance est ajouté à un proxy">
<!ENTITY foxyproxy.graphics "Graphisme et images par">
<!ENTITY foxyproxy.website "Site Web par">
<!ENTITY foxyproxy.contributions "Contributions par">
<!ENTITY foxyproxy.pacloadnotification.label "M&apos;avertir lors du chargement du fichier d&apos;auto-configuration de proxy">
<!ENTITY foxyproxy.pacloadnotification.accesskey "L">
<!ENTITY foxyproxy.pacloadnotification.tooltip "Afficher une fenêtre popup lors du chargement d&apos;un fichier PAC">
<!ENTITY foxyproxy.pacerrornotification.label "M&apos;avertir lorsqu&apos;une erreur survient lors de l&apos;auto-configuration de proxy">
<!ENTITY foxyproxy.pacerrornotification.accesskey "E">
<!ENTITY foxyproxy.pacerrornotification.tooltip "Afficher une fenêtre popup si le fichier PAC contient des erreurs">
<!ENTITY foxyproxy.toolsmenu.label "Afficher l&apos;icône dans le menu &apos;Outils&apos; de Firefox">
<!ENTITY foxyproxy.toolsmenu.accesskey "t">
<!ENTITY foxyproxy.toolsmenu.tooltip "Affiche l&apos;icône dans le menu &apos;Outils&apos; de Firefox">
<!ENTITY foxyproxy.tip.label "Astuce">
<!ENTITY foxyproxy.pactips.popup.height "200px">
<!ENTITY foxyproxy.pactips.popup.width "450px">
<!ENTITY foxyproxy.pactip1.label "Pour des fichiers PAC stockés sur le disque dur, veuillez les faire débuter par file://. Par exemple, file://c:/chemin/proxy.pac sur Windows ou file:///home/users/joe/proxy.pac sur Unix/Linux/Mac">
<!ENTITY foxyproxy.pactip2.label "Pour des fichiers PAC sur un serveur FTP, veuillez les faire débuter par ftp://. Par exemple, ftp://leahscape.com/path/proxy.pac">
<!ENTITY foxyproxy.pactip3.label "Vous pouvez également utiliser http://, https:// et tout autre protocole pris en charge.">
<!ENTITY foxyproxy.contextmenu.label "Afficher l&apos;icône dans le menu contextuel">
<!ENTITY foxyproxy.contextmenu.accesskey "c">
<!ENTITY foxyproxy.contextmenu.tooltip "Affiche l&apos;icône dans le menu contextuel">
<!ENTITY foxyproxy.quickadd.desc1 "AjoutExpress ajoute un motif d&apos;URL dynamique à un proxy lorsque vous appuyez sur la combinaison de touche Alt-F2. C&apos;est une alternative intéressante à AjoutAuto. Personnaliser le raccourci clavier Alt-F2 en">
<!ENTITY foxyproxy.keyconfig.label "Configuration de touche">
<!ENTITY foxyproxy.quickadd.desc2 "extension">
<!ENTITY foxyproxy.quickadd.label "AjoutExpress">
<!ENTITY foxyproxy.quickadd.accesskey "x">
<!ENTITY foxyproxy.quickadd.tooltip "AjoutExpress">
<!ENTITY foxyproxy.quickadd.notify.label "M&apos;avertir lorsque l&apos;AjoutExpress est activé">
<!ENTITY foxyproxy.quickadd.notify.accesskey "v">
<!ENTITY foxyproxy.quickadd.notify.tooltip "Afficher une fenêtre popup lorsque l&apos;AjoutExpress est activé">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.label "M&apos;avertir lorsque AjoutExpress est annulé">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.label2 "L&apos;AjoutExpress est automatiquement annulé lorsque cette fonctionanlité a été activée par la combinaison Alt-F2 et lorsque l&apos;URL courante dans la barre d&apos;adresse correspond déjà à un motif de proxy de la liste blanche. de cette manière, on évite la duplication de motifs qui peut bouleverser votre configuration. Ce paramètre n&apos;active/ne désactive pas l&apos;annulation mais permet d&apos;activer/désactiver la notification en cas d&apos;annulation.">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.accesskey "A">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.tooltip "Afficher une fenêtre popup lorsque l&apos;AjoutExpress est activé mais annulé">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.popup.width "450px">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.popup.height "200px">
<!ENTITY foxyproxy.whatsthis "Qu&apos;est-ce que c&apos;est ?">
<!ENTITY foxyproxy.quickadd.prompt.label "Afficher une fenêtre d&apos;édition et de confirmation avant d&apos;ajouter le motif pour le proxy">
<!ENTITY foxyproxy.quickadd.prompt.accesskey "f">
<!ENTITY foxyproxy.quickadd.prompt.tooltip "Afficher une fenêtre d&apos;édition et de confirmation avant d&apos;ajouter le motif pour le proxy">
<!ENTITY foxyproxy.quickadd.proxy.label "Proxy auquel est ajouté le motif">
<!ENTITY foxyproxy.quickadd.proxy.accesskey "P">
<!ENTITY foxyproxy.quickadd.proxy.tooltip "choisissez le proxy auquel le motif sera ajouté">
<!ENTITY foxyproxy.bypasscache.label "Ne pas placer dans le cache Firefox lors du chargement">
<!ENTITY foxyproxy.bypasscache.accesskey "h">
<!ENTITY foxyproxy.bypasscache.tooltip "Le cache de Firefox est ignoré">
<!ENTITY foxyproxy.advancedmenus.label "Utiliser les menus avancés">
<!ENTITY foxyproxy.advancedmenus.accesskey "M">
<!ENTITY foxyproxy.advancedmenus.tooltip "Utiliser les menus avancés (style Foxyproxy 2.2)">
<!ENTITY foxyproxy.importsettings.label "Importer des paramètres">
<!ENTITY foxyproxy.importsettings.accesskey "I">
<!ENTITY foxyproxy.importsettings.tooltip "Importe les paramètres contenus dans un fichier">
<!ENTITY foxyproxy.exportsettings.label "Exporter les paramètres actuels">
<!ENTITY foxyproxy.exportsettings.accesskey "E">
<!ENTITY foxyproxy.exportsettings.tooltip "Exporte les paramètres actuels vers un fichier">
<!ENTITY foxyproxy.importlist.label "Importer une liste de proxies">
<!ENTITY foxyproxy.importlist.accesskey "I">
<!ENTITY foxyproxy.importlist.tooltip "Importe une liste de proxies à partir d&apos;un fichier texte">
<!ENTITY foxyproxy.wildcard.reference.label "Informations sur les jokers">
<!ENTITY foxyproxy.wildcard.reference.accesskey "k">
<!ENTITY foxyproxy.wildcard.reference.tooltip "Informations sur les jokers">
<!ENTITY foxyproxy.wildcard.reference.subtitle.label "L&apos;astérisque (*) correspond à zéro ou plusieurs caractères et le point d&apos;interrogation (?) correspond à un seul caractère">
<!ENTITY foxyproxy.wildcard.reference.mistakes "Erreurs fréquentes lors de l&apos;écriture de motifs avec des jokers">
<!ENTITY foxyproxy.wildcard.reference.goal.label "But">
<!ENTITY foxyproxy.wildcard.reference.goal1.label "Correspond à toutes les pages du sous-domaine www de MySpace&apos;s">
<!ENTITY foxyproxy.wildcard.reference.goal2.label "Correspond au PC local">
<!ENTITY foxyproxy.wildcard.reference.goal3.label "Correspond à tous les sous-domaines et pages de abc.com">
<!ENTITY foxyproxy.wildcard.reference.goal4.label "Correspond à toutes les pages dans le domaine a.foo.com mais pas dans le domaine b.foo.com">
<!ENTITY foxyproxy.wildcard.reference.correct.label "Correct">
<!ENTITY foxyproxy.wildcard.reference.correct2.label "Doit être 2 motifs">
<!ENTITY foxyproxy.wildcard.reference.incorrect.label "Incorrect">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason.label "Raison pour laquelle ceci est incorrect">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason1.label "Comme il n&apos;y a pas de joker, seule la page d&apos;accueil correspond">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason2.label "FoxyProxy ne prend pas en charge ce genre de syntaxe">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason3.label "Il n&apos;y a pas de jokers">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason4.label "Il n&apos;y a pas de jokers">
<!ENTITY foxyproxy.wildcard.reference.popup.height "400px">
<!ENTITY foxyproxy.logging.noURLs.label "Ne pas stocker ou afficher les URL">
<!ENTITY foxyproxy.logging.noURLs.accesskey "U">
<!ENTITY foxyproxy.logging.noURLs.tooltip "Les URL ne sont pas stockées dans la mémoire vive (RAM) ou sur le disque">
<!ENTITY foxyproxy.ok.label "OK">
<!ENTITY foxyproxy.ok.accesskey "O">
<!ENTITY foxyproxy.ok.tooltip "Fermer la fenêtre">
<!ENTITY foxyproxy.pattern.template.reference.label "Informations sur les modèles de motif">
<!ENTITY foxyproxy.pattern.template.reference.accesskey "m">
<!ENTITY foxyproxy.pattern.template.reference.tooltip "Informations sur les modèles de motif">
<!ENTITY foxyproxy.pattern.template.reference.subtitle.label "Les modèles de motif définissent le format d&apos;URL utilisé pour les ajouter rapidement (AjoutExpress) ou automatiquement (AjoutAuto) aux proxies. Les modèles prennent en charge les chaînes de caractères spéciales suivantes qui, lorsque AjoutExpress et AjoutAuto sont activés, sont substituées par l&apos;URL du composant correspondant dans la barre d&apos;adresse.">
<!ENTITY foxyproxy.pattern.template.reference.specialstring.label "Chaîne de caractères">
<!ENTITY foxyproxy.pattern.template.reference.subststring.label "Substituée par">
<!ENTITY foxyproxy.pattern.template.reference.example.label "Exemple">
<!ENTITY foxyproxy.pattern.template.reference.scheme.label "protocole">
<!ENTITY foxyproxy.pattern.template.reference.username.label "nom d&apos;utilisateur">
<!ENTITY foxyproxy.pattern.template.reference.password.label "mot de passe">
<!ENTITY foxyproxy.pattern.template.reference.userpass.label "nom d&apos;utilisateur &amp; mot de passe par &quot;:&quot; &amp; &quot;@&quot;">
<!ENTITY foxyproxy.pattern.template.reference.host.label "hôte">
<!ENTITY foxyproxy.pattern.template.reference.port.label "port">
<!ENTITY foxyproxy.pattern.template.reference.hostport.label "hôte &amp; port par &quot;:&quot;">
<!ENTITY foxyproxy.pattern.template.reference.prepath.label "chaîne avant le chemin">
<!ENTITY foxyproxy.pattern.template.reference.path.label "chemin (avec le nom de fichier)">
<!ENTITY foxyproxy.pattern.template.reference.directory.label "dossier">
<!ENTITY foxyproxy.pattern.template.reference.filebasename.label "nom de base du fichier">
<!ENTITY foxyproxy.pattern.template.reference.fileextension.label "extension du fichier">
<!ENTITY foxyproxy.pattern.template.reference.filename.label "nom complet du fichier">
<!ENTITY foxyproxy.pattern.template.reference.ref.label "partie après le &quot;#&quot;">
<!ENTITY foxyproxy.pattern.template.reference.query.label "partie après le&quot;?&quot;">
<!ENTITY foxyproxy.pattern.template.reference.spec.label "URL complète">
<!ENTITY foxyproxy.pattern.template.reference.popup.height "500px">
<!ENTITY foxyproxy.pattern.template.reference.popup.width "800px">
<!ENTITY foxyproxy.notifications.label "Notifications">
<!ENTITY foxyproxy.notifications.accesskey "N">
<!ENTITY foxyproxy.notifications.tooltip "Paramètres de notification">
<!ENTITY foxyproxy.indicators.label "Indicateurs">
<!ENTITY foxyproxy.indicators.accesskey "I">
<!ENTITY foxyproxy.indicators.tooltip "Paramètres d&apos;indicateur">
<!ENTITY foxyproxy.misc.label "Divers">
<!ENTITY foxyproxy.misc.accesskey "D">
<!ENTITY foxyproxy.misc.tooltip "Paramètres divers">
<!ENTITY foxyproxy.animatedicons.label "Animer les icônes lorsque ce proxies est utilisé">
<!ENTITY foxyproxy.animatedicons.accesskey "A">
<!ENTITY foxyproxy.animatedicons.tooltip "Animer les icônes lorsque ce proxy est actif (Paramètres généraux-&gt;Animations doit également être cochée)">
<!ENTITY foxyproxy.statusbaractivation.label "Activation de la barre d&apos;état">
<!ENTITY foxyproxy.statusbaractivation.accesskey "t">
<!ENTITY foxyproxy.statusbaractivation.tooltip "Paramètres d&apos;activation de la barre d&apos;état">
<!ENTITY foxyproxy.toolbaractivation.label "Activation de la barre d&apos;outils">
<!ENTITY foxyproxy.toolbaractivation.accesskey "b">
<!ENTITY foxyproxy.toolbaractivation.tooltip "Paramètres d&apos;activation de la barre d&apos;outils">
<!ENTITY foxyproxy.leftclicksb.label "Clic sur FoxyProxy dans la barre d&apos;état">
<!ENTITY foxyproxy.leftclicksb.accesskey "c">
<!ENTITY foxyproxy.leftclicksb.tooltip "Comportement lors du clic sur FoxyProxy dans la barre d&apos;état">
<!ENTITY foxyproxy.middleclicksb.label "Clic-milieu sur FoxyProxy dans la barre d&apos;état">
<!ENTITY foxyproxy.middleclicksb.accesskey "m">
<!ENTITY foxyproxy.middleclicksb.tooltip "Comportement lors du clic-milieu sur FoxyProxy dans la barre d&apos;état">
<!ENTITY foxyproxy.rightclicksb.label "Clic-droit sur FoxyProxy dans la barre d&apos;état">
<!ENTITY foxyproxy.rightclicksb.accesskey "d">
<!ENTITY foxyproxy.rightclicksb.tooltip "Comportement lors du clic-droit sur FoxyProxy dans la barre d&apos;état">
<!ENTITY foxyproxy.leftclicktb.label "Clic sur FoxyProxy dans la barre d&apos;outils">
<!ENTITY foxyproxy.leftclicktb.accesskey "c">
<!ENTITY foxyproxy.leftclicktb.tooltip "Comportement lors du clic sur FoxyProxy dans la barre d&apos;outils">
<!ENTITY foxyproxy.middleclicktb.label "Clic-milieu sur FoxyProxy dans la barre d&apos;outils">
<!ENTITY foxyproxy.middleclicktb.accesskey "m">
<!ENTITY foxyproxy.middleclicktb.tooltip "Comportement lors du clic-milieu sur FoxyProxy dans la barre d&apos;outils">
<!ENTITY foxyproxy.rightclicktb.label "Clic-droit sur FoxyProxy dans la barre d&apos;outils">
<!ENTITY foxyproxy.rightclicktb.accesskey "d">
<!ENTITY foxyproxy.rightclicktb.tooltip "Comportement lors du clic-droit sur FoxyProxy dans la barre d&apos;outils">
<!ENTITY foxyproxy.click.options "Affiche la boîte de dialogue des options">
<!ENTITY foxyproxy.click.cycle "Bascule de mode en mode">
<!ENTITY foxyproxy.click.contextmenu "Affiche le menu contextuel">
<!ENTITY foxyproxy.click.reloadcurtab "Recharge l&apos;onglet courant">
<!ENTITY foxyproxy.click.reloadtabsinbrowser "Recharge tous les onglets dans le navigateur courant">
<!ENTITY foxyproxy.click.reloadtabsinallbrowsers "Recharge tous les onglets dans tous les navigateurs">
<!ENTITY foxyproxy.click.removeallcookies "Supprime tous les cookies">
<!ENTITY foxyproxy.includeincycle.label "Inclure ce proxy lorsque l&apos;on passe de proxy en proxy en cliquant sur la barre d&apos;état ou la barre d&apos;outils (&quot;Paramètres généraux&quot; -&gt; &quot;Activation de la barre d&apos;état/d&apos;outils&quot; -&gt; &quot;Basculer de modes en modes&quot; doit être sélectionné)">
<!ENTITY foxyproxy.includeincycle.accesskey "I">
<!ENTITY foxyproxy.includeincycle.tooltip "Inclure ce proxy en cliquant sur la barre d&apos;état/d&apos;outils">
<!ENTITY foxyproxy.changes.msg1 "À l&apos;aide ! Où se trouvent les paramètres pour HTTP, SSL, FTP, Gopher et SOCKS ?">
<!ENTITY foxyproxy.newGUI.popup.height "300px">
<!ENTITY foxyproxy.newGUI.popup.width "450px">
<!ENTITY foxyproxy.newGUI1.label "L&apos;ancienne fenêtre des paramètres proxy de FoxyProxy était basée sur et ressemblait à la boîte de dialogue des paramètres de connexion de Firefox, qui en fait est très proche des paramètres de proxy de l&apos;ancien navigateur Mosaic 2.1.1 de 1996. Le problème de toutes ces fenêtres est leur limitation en matière de routage de trafic par protocole. Les navigateurs du 21e siècle comme Firefox traitent beaucoup plus de protocoles que HTTP, SSL, FTP et GOPHER. Clairement, ces vieilles fenêtres deviendraient difficiles à organiser si elles devaient inclure tout protocole.">
<!ENTITY foxyproxy.newGUI2.label "Comme Foxyproxy active déjà le routage du trafic par protocole avec des motifs définis à partir de jokers et d&apos;expressions régulières, le listing des protocoles n&apos;est pas nécessaire dans cette fenêtre. À partir de la version 2.5, FoxyProxy a supprimé cette liste de protocoles de l&apos;interface utilisateur des paramètres de proxy. Cependant, cela n&apos;altère en rien sa fonctionnalité. L&apos;interface est ainsi simplifiée. si vous devez router du trafic par protocole, vous devrez définir des motifs de liste blanche et noire avec beaucoup de précaution quant à la partie concernant le scheme/protocole du motif (ex. : tp://*.yahoo.com/*, *://leahscape.com/*, etc.)">
<!ENTITY foxyproxy.newGUI4.label "Cliquez ici pour davantage d&apos;informations">
<!ENTITY foxyproxy.error.msg.label "Message d&apos;errreur">
<!ENTITY foxyproxy.pac.result.label "Résultat PAC">
<!ENTITY foxyproxy.options.width "720">
<!ENTITY foxyproxy.options.height "520">
<!ENTITY foxyproxy.torwiz.width "720">
<!ENTITY foxyproxy.torwiz.height "420">
<!ENTITY foxyproxy.addeditproxy.width "720">
<!ENTITY foxyproxy.addeditproxy.height "520">

View File

@ -0,0 +1,136 @@
extensions.foxyproxy@eric.h.jung.description=FoxyProxy - Retrouvez votre vie privée !
foxyproxy=FoxyProxy
tor=Tor
privoxy=Privoxy
settings.error=Erreur au cours de la lecture de vos paramètres
error=Erreur
welcome=Bienvenue dans Foxyproxy !
yes=Oui
no=Non
disabled=Désactivé(e)
torwiz.configure=Souhaitez-vous configurer FoxyProxy pour qu'elle fonctionne avec Tor ?
torwiz.with.without.privoxy=Utilisez-vous Tor avec ou sans Privoxy ?
torwiz.with=avec
torwiz.without=sans
torwiz.privoxy.not.required=Remarque : depuis Firefox 1.5, Privoxy n'est plus indispensable pour utiliser Tor avec Firefox. Privoxy peut néanmoins être utile pour filtrer du contenu. Voulez-vous utiliser Tor via Privoxy ?
torwiz.port=Veuillez entrer le port utilisé par %S. Si vous ne le connaissez pas, utilisez le port par défaut.
torwiz.nan=Ceci n'est pas un nombre.
torwiz.proxy.notes=Proxy via le réseau Tor - http://tor.eff.org
torwiz.google.mail=Google Mail
torwiz.pattern=http://*mail.google.com/*
torwiz.congratulations=Félicitations ! FoxyProxy a été configurée correctement pour être utilisée avec Tor.
torwiz.cancelled=L'assistant Tor de FoxyProxy a été interrompu.
mode.patterns.label=Utiliser les proxies basés sur leurs motifs et propriétés prédéfinis
mode.patterns.accesskey=U
mode.patterns.tooltip=Utilise les proxies basés sur leurs motifs de correspondance et propriétés prédéfinies
mode.custom.label=Utiliser le proxy "%S" pour toutes les URL
mode.custom.tooltip=Utiliser le proxy "%S" pour toutes les URL
mode.disabled.label=Désactiver complètement FoxyProxy
mode.disabled.accesskey=D
mode.disabled.tooltip=Désactive complètement FoxyProxy
more.label=Plus
more.accesskey=l
more.tooltip=Davantage d'options
invalid.url=L'adresse (URL) précisée pour la configuration automatique du proxy n'est pas une adresse valide.
protocols.error=Veuillez préciser un ou plusieurs protocole(s) pour le proxy.
noport2=Il faut indiquer un port pour l'hôte.
nohost2=Il faut indiquer un nom d'hôte associé au port.
nohostport=Il faut indiquer un nom d'hôte et un port.
torwiz.nopatterns=Vous n'avez pas saisi d'URL de correspondance autorisées. En conséquence, le réseau Tor ne sera pas utilisé. Continuer tout de même ?
months.long.1=Janvier
months.short.1=Jan
months.long.2=Février
months.short.2=Fév
months.long.3=Mars
months.short.3=Mar
months.long.4=Avril
months.short.4=Avr
months.long.5=Mai
months.short.5=Mai
months.long.6=Juin
months.short.6=Jun
months.long.7=Juillet
months.short.7=Jul
months.long.8=Août
months.short.8=Aoû
months.long.9=Septembre
months.short.9=Sep
months.long.10=Octobre
months.short.10=Oct
months.long.11=Novembre
months.short.11=Nov
months.long.12=Décembre
months.short.12=Déc
days.long.1=Dimanche
days.short.1=Dim
days.long.2=Lundi
days.short.2=Lun
days.long.3=Mardi
days.short.3=Mar
days.long.4=Mercredi
days.short.4=Mer
days.long.5=Jeudi
days.short.5=Jeu
days.long.6=Vendredi
days.short.6=Ven
days.long.7=Samedi
days.short.7=Sam
timeformat=hh:nn:ss:zzz a/p dd, mmm yyyy
file.select=Choisissez un dossier pour y conserver vos paramètres
manual=Manuelle
auto=Automatique
direct=Direct
delete.proxy.confirm=Voulez-vous vraiment supprimer le proxy ?
pattern.required=Un motif de correspondance est nécessaire.
pattern.invalid.regex=%S n'est pas une expression régulière valide.
proxy.error.for.url=Erreur lors de la détermination du proxy pour %S
proxy.default.settings.used=FoxyProxy n'est pas utilisée pour cette URL - les paramètres de connexion par défaut de Firefox ont été utilisés
proxy.all.urls=Toutes les URL ont été configurées pour utiliser ce proxy
pac.status=État du PAC (fichier de configuration du proxy) de FoxyProxy
pac.status.loadfailure=Échec lors du chargement du PAC pour le proxy "%S"
pac.status.success=PAC pour le proxy "%S" chargé
pac.status.error=Erreur dans le PAC pour le proxy "%S"
error.noload=Erreur. Veuillez contacter l'équipe de développement de FoxyProxy. Il n'y a pas eu de fuites de données personnelles, mais la ressource ne sera pas chargée.L'exception est %S
proxy.name.required=Veuillez saisir un nom pour ce proxy dans l'onglet 'Général'.
proxy.default=Défaut
proxy.default.notes=Ceci sont les paramètres utilisés s'il n'y a aucune correspondance de l'URL avec un des motifs.
proxy.default.match.name=Tout
delete.proxy.default=Vous ne pouvez supprimer ce proxy.
copy.proxy.default=Vous ne pouvez copier ce proxy.
logg.maxsize.change=Cela effacera le journal. Continuer ?
logg.maxsize.maximum=La taille maximale recommandée est de 9999. Des valeurs supérieures entraîneraient une surconsommation de mémoire et dégraderaient les performances. Continuer tout de même ?
proxy.random=Le proxy a été sélectionné de manière aléatoire
mode.random.label=Utiliser les proxies de manière aléatoire pour toutes les URL (ignorer tous les motifs de correspondance et les priorités)
mode.random.accesskey=A
mode.random.tooltip=Charger les URL à partir de proxies pris au hasard (ignorer tous les motifs de correspondance et les priorités)
random=Aléatoire
random.applicable=Ce paramètre est uniquement utilisé lorsque le mode "Utiliser les proxies de manière aléatoire pour toutes les URL (ignorer tous les motifs de correspondance et les priorités)" est activé
superadd.error=Erreur de configuration : %S a été désactivé.
superadd.notify=Proxy %S
superadd.url.added=Le motif %S a été ajouté au proxy "%S"
autoadd.pattern.label=AjoutAuto dynamique du motif
quickadd.pattern.label=AjoutExpress dynamique du motif
torwiz.proxydns=Souhaitez-vous que les requêtes DNS passent par le réseau Tor ? Si vous ne comprenez pas cette question, cliquez sur "Oui".
superadd.verboten2=%S ne peut être activé car aucun proxy n'a été défini ou les proxies ont été désactivés.
autoadd.notice=Veuillez prendre note : AjoutAuto a une incidence sur le temps de chargement d'une page Web. Plus le motif de correspondance est complexe et plus la page est volumineuse, plus le processus d'ajout automatique sera long. Si vous constatez des lenteurs significatives, veuillez désactiver le mode AjoutAuto.\n\nVous êtes encouragé(e) à utiliser AjoutExpress à la place d'AjoutAuto.
autoadd.notice2=
autoconfurl.test.success=Le PAC a été trouvé, chargé et analysé avec succès.
autoconfurl.test.fail=Un problème est apparu lors du chargement, de la recherche ou de l'analyse du PAC :\nCode d'état HTTP : %S\nException :%S
none=Aucun
delete.settings.ask=Souhaitez-vous supprimer les paramètres de Foxyproxy stockés dans %S ?
delete.settings.confirm=%S sera supprimé lorsque tous les navigateurs seront fermés.
no.wildcard.characters=Le motif ne comporte aucun caractère joker. Cela signifie que "%S" devra correspondre exactement. Foxyproxy ne fonctionne habituellement pas de cette manière et cela veut probablement dire qu'il y a une erreur dans le motif ou que vous ne comprenez pas comment définir des motifs pour Foxyproxy. Souhaitez-vous continuer tout de même ?
message.stop=Ne plus m'avertir à l'avenir
log.save=Enregistrer le journal
log.saved2=Le journal a été enregistré dans %S. Afficher maintenant ?
log.nourls.url=Pas de fichier journal
log.scrub=Effacer les entrées existantes du journal des URL ?
no.white.patterns=Vous n'avez pas indiqué de motifs URL dans la liste blanche. Cela signifie que le proxy ne sera pas utilisé. Continuer tout de même ?
quickadd.quickadd.canceled=AjoutExpress a été désactivé car l'URL courante correspond déjà au motif nommé "%S" pour le proxy "%s"
quickadd.nourl=Impossible d'obtenir l'URL courante
cookies.allremoved=Tous les cookies ont été effacés
route.error=Erreur lors de la détermination de l'hôte à utiliser pour passer par le proxy
route.exception=Exception lors de la détermination de l'hôte à utiliser pour passer par le proxy %S
see.log=Veuillez consulter le fichier journal pour davantage d'informations
pac.select=Sélectionner le fichier PAC à utiliser
pac.files=Fichiers PAC

View File

@ -0,0 +1,54 @@
<!-- switched from xhtml to html because of BabelZilla WTS adds extraneous html tags on locale download -->
<html>
<head>
<style type="text/css">
table {
border-width: 0px;
border-spacing: 2px;
border-style: none;
border-color: white;
border-collapse: separate;
background-color: rgb(250, 240, 230);
font-size: x-small;
font-family: verdana, sans-serif;
}
table td,table th {
border-width: 1px;
padding: 1px;
border-style: groove;
border-color: green;
background-color: rgb(250, 240, 230);
vertical-align: top;
font-size: x-small;
font-family: verdana, sans-serif;
}
p {background-color: white; font-size: x-small; font-family: verdana, sans-serif;}
body {font-family: verdana, sans-serif;}
h3 {font-size: small;}
h4 {font-size: x-small;}
</style>
</head>
<body>
<h3>URL de références</h3>
<p>Avant que Firefox ne charge une URL, il demande à FoxyProxy s'il faut utiliser un proxy.
FoxyProxy répond à cette question en comparant l'URL courante avec tous les motifs de correspondance que vous avez définis ci-dessous.
Le moyen le plus simple de spécifier des motifs de correspondance est d'utiliser des jokers.</p>
<h4><a name="wildcards">Jokers</a></h4>
<p>Les jokers sont fréquemment utilisés en programmation ; vous les avez sûrement déjà rencontrés. L'astérisque (*) remplace zéro ou plusieurs caractères
et le point d'interrogation (?) remplace un seul caractère.
</p>
<p>L'élaboration d'autres régles de correspondance est possible en utilisant les expressions régulières. Pour davantage d'informations, cliquez sur le bouton "Aide sur le contenu".</p>
<h4>Exemples de jokers</h4>
<table>
<thead><tr><th>URL de référence</th><th>Quelques correspondances</th><th>Quelques adresses ne correspondant pas</th></tr></thead>
<tr><td>*//:*.yahoo.com/*</td><td>Tout ce qui se trouve dans le domaine de Yahoo</td><td>http://mail.google.com/</td></tr>
<tr><td>*//:mail.yahoo.com/*</td><td>http://mail.yahoo.com/<br/>http://mail.yahoo.com/clownshoes/<br/>http://mail.yahoo.com/inbox/123.html<br/>ftp://mail.yahoo.com</td><td>http://maps.yahoo.com</td></tr>
<tr><td>http://??.wikipedia.org/wiki/Clown</td><td>http://en.wikipedia.org/wiki/Clown<br/>http://de.wikipedia.org/wiki/Clown<br/>http://cs.wikipedia.org/wiki/Clown</td><td>https://en.wikipedia.org/wiki/Clown<br/>http://de.wikipedia.org/wiki/Clown/<br/>ftp://en.wikipedia.org/wiki/Clown</td></tr>
<tr><td>http://digg.com/</td><td>http://digg.com/</td><td>http://digg.com<br/>http://www.digg.com/</td></tr>
<tr><td>*://*.asimov.???/*</td><td>ftp://ftp.asimov.net/<br/>ftp://ftp.asimov.com/theory.html<br/>http://bear.asimov.net/mom/<br/>https://isaac.asimov.org/hercules<br/>gopher://asimov.net/</td>
<td>ftp://ftp.asimov.co.uk<br/>http://isaac.home.com/tin.php</td></tr>
<tr><td>*</td><td><i>Correspondance avec tout</i></td><td>sans commentaire</td></tr>
</table>
</body>
</html>

View File

@ -0,0 +1,427 @@
<!ENTITY foxyproxy.label "FoxyProxy">
<!ENTITY foxyproxy.accesskey "F">
<!ENTITY foxyproxy.tooltip "FoxyProxy">
<!ENTITY foxyproxy.optionsdialog.label "FoxyProxy Opcije">
<!ENTITY foxyproxy.options.label "Opcije">
<!ENTITY foxyproxy.options.accesskey "O">
<!ENTITY foxyproxy.options.tooltip "Otvara prozor opcija">
<!ENTITY foxyproxy.tree.pickertooltiptext.label "Kliknite da biste odabrali stupce koje želite prikazati">
<!ENTITY foxyproxy.proxy.name.label "Naziv Proxy-a">
<!ENTITY foxyproxy.proxy.name.accesskey "N">
<!ENTITY foxyproxy.proxy.name.tooltip "Naziv Proxy-a">
<!ENTITY foxyproxy.proxy.notes.label "Proxy zabilješke">
<!ENTITY foxyproxy.proxy.notes.accesskey "z">
<!ENTITY foxyproxy.proxy.notes.tooltip "Proxy zabilješke">
<!ENTITY foxyproxy.pattern.label "Primjeri">
<!ENTITY foxyproxy.pattern.type.label "Tip primjera">
<!ENTITY foxyproxy.whitelist.blacklist.label "Dopušteni (Uključujući) ili Nedopušteni (Isključujući)">
<!ENTITY foxyproxy.pattern.name.label "Naziv primjera">
<!ENTITY foxyproxy.pattern.name.accesskey "m">
<!ENTITY foxyproxy.pattern.name.tooltip "Naziv za primjer">
<!ENTITY foxyproxy.url.pattern.label "Primjer web adrese">
<!ENTITY foxyproxy.url.pattern.accesskey "W">
<!ENTITY foxyproxy.url.pattern.tooltip "Primjer web adrese">
<!ENTITY foxyproxy.enabled.label "Omogućeno">
<!ENTITY foxyproxy.enabled.accesskey "O">
<!ENTITY foxyproxy.enabled.tooltip "Mijenja Omogućeno/Onemogućeno">
<!ENTITY foxyproxy.delete.selection.label "Obriši odabrano">
<!ENTITY foxyproxy.delete.selection.accesskey "b">
<!ENTITY foxyproxy.delete.selection.tooltip "Obriši trenutno odabranu stavku">
<!ENTITY foxyproxy.edit.selection.label "Uredi odabrano">
<!ENTITY foxyproxy.edit.selection.accesskey "U">
<!ENTITY foxyproxy.edit.selection.tooltip "Uredni trenutno odabranu stavku">
<!ENTITY foxyproxy.help.label "Sadržaj pomoći">
<!ENTITY foxyproxy.help.accesskey "p">
<!ENTITY foxyproxy.help.tooltip "Pokaži pomoć">
<!ENTITY foxyproxy.close.label "Zatvori">
<!ENTITY foxyproxy.close.accesskey "Z">
<!ENTITY foxyproxy.close.tooltip "Zatvori prozor">
<!ENTITY foxyproxy.about.label "O">
<!ENTITY foxyproxy.about.accesskey "O">
<!ENTITY foxyproxy.about.tooltip "Otvara prozor O proširenju">
<!ENTITY foxyproxy.online.label "FoxyProxy na mreži">
<!ENTITY foxyproxy.online.accesskey "ž">
<!ENTITY foxyproxy.online.tooltip "Posjeti FoxyProxy web stranicu">
<!ENTITY foxyproxy.tor.label "Tor čarobnjak">
<!ENTITY foxyproxy.tor.accesskey "č">
<!ENTITY foxyproxy.tor.tooltip "Tor čarobnjak">
<!ENTITY foxyproxy.copy.selection.label "Kopiraj odabrano">
<!ENTITY foxyproxy.copy.selection.accesskey "K">
<!ENTITY foxyproxy.copy.selection.tooltip "Kopira odabrano">
<!ENTITY foxyproxy.mode.label "Izaberite način">
<!ENTITY foxyproxy.auto.url.label "Web adresa za automatsko namještanje proxy-a">
<!ENTITY foxyproxy.auto.url.accesskey "a">
<!ENTITY foxyproxy.auto.url.tooltip "Unesite web adresu PAC datoteke">
<!ENTITY foxyproxy.port.label "Priključak">
<!ENTITY foxyproxy.port.accesskey "P">
<!ENTITY foxyproxy.port.tooltip "Priključak">
<!ENTITY foxyproxy.socks.proxy.label "SOCKS proxy">
<!ENTITY foxyproxy.socks.proxy.accesskey "C">
<!ENTITY foxyproxy.socks.proxy.tooltip "Web adresa SOCKS proxy-a">
<!ENTITY foxyproxy.socks.v4 "SOCKS v4/4a">
<!ENTITY foxyproxy.socks.v5 "SOCKS v5">
<!ENTITY foxyproxy.addeditpattern.title "Dodaj/Uredi primjer">
<!ENTITY foxyproxy.wildcard.label "Jokeri">
<!ENTITY foxyproxy.wildcard.accesskey "J">
<!ENTITY foxyproxy.wildcard.tooltip "Određuje da primjer web adrese koristi jokere i nije regularni izraz">
<!ENTITY foxyproxy.wildcard.example.label "Primjer: *mail.yahoo.com/*">
<!ENTITY foxyproxy.regex.label "Regularni izraz">
<!ENTITY foxyproxy.regex.accesskey "U">
<!ENTITY foxyproxy.regex.tooltip "Određuje da je primjer web adrese regularni izraz">
<!ENTITY foxyproxy.regex.example.label "Primjer: http?://.*\.mail\.yahoo\.com/.*">
<!ENTITY foxyproxy.version "Inačica">
<!ENTITY foxyproxy.createdBy "Kreirao:">
<!ENTITY foxyproxy.copyright "Zaštita autorskih prava">
<!ENTITY foxyproxy.rights "Sva prava pridržana.">
<!ENTITY foxyproxy.released "Izdano pod GPL licencom.">
<!ENTITY foxyproxy.thanks "Posebna zahvala">
<!ENTITY foxyproxy.translations "Prijevodi">
<!ENTITY foxyproxy.tab.general.label "Općenito">
<!ENTITY foxyproxy.tab.general.accesskey "O">
<!ENTITY foxyproxy.tab.general.tooltip "Upravljajte Općenitim proxy postavkama">
<!ENTITY foxyproxy.tab.proxy.label "Proxy detalji">
<!ENTITY foxyproxy.tab.proxy.accesskey "d">
<!ENTITY foxyproxy.tab.proxy.tooltip "Upravljajte Proxy detaljima">
<!ENTITY foxyproxy.tab.patterns.label "Primjeri">
<!ENTITY foxyproxy.tab.patterns.accesskey "P">
<!ENTITY foxyproxy.tab.patterns.tooltip "Upravljajte primjerima web adresa">
<!ENTITY foxyproxy.add.title "Proxy postavke">
<!ENTITY foxyproxy.pattern.description "Ovdje možete odrediti kada se upotrebljava ovaj proxy, a kada ne.">
<!ENTITY foxyproxy.pattern.matchtype.label "Primjer sadržava">
<!ENTITY foxyproxy.pattern.matchtype2.label "Pattern To Identify Blocked Websites Contains">
<!ENTITY foxyproxy.pattern.template.matchtype.label "Pattern Template Contains">
<!ENTITY foxyproxy.pattern.whiteblack.label "Web adresa Uključenje/Isključenje">
<!ENTITY foxyproxy.add.option.direct.label "Direktna Internet veza (bez proxy)">
<!ENTITY foxyproxy.add.option.direct.accesskey "D">
<!ENTITY foxyproxy.add.option.direct.tooltip "Ne koristi proxy - koristi osnovnu direktnu Internet vezu">
<!ENTITY foxyproxy.add.option.manual.label "Ručna konfiguracija Proxy-a">
<!ENTITY foxyproxy.add.option.manual.accesskey "R">
<!ENTITY foxyproxy.add.option.manual.tooltip "Ručno odredite proxy konfiguraciju">
<!ENTITY foxyproxy.add.new.pattern.label "Dodaj novi primjer">
<!ENTITY foxyproxy.add.new.pattern.accesskey "D">
<!ENTITY foxyproxy.add.new.pattern.tooltip "Dodaj novi primjer">
<!ENTITY foxyproxy.menubar.file.label "Datoteka">
<!ENTITY foxyproxy.menubar.file.accesskey "D">
<!ENTITY foxyproxy.menubar.file.tooltip "Otvara izbornik Datoteka">
<!ENTITY foxyproxy.menubar.help.label "Pomoć">
<!ENTITY foxyproxy.menubar.help.accesskey "P">
<!ENTITY foxyproxy.menubar.help.tooltip "Otvara izbornik Pomoći">
<!ENTITY foxyproxy.mode.accesskey "i">
<!ENTITY foxyproxy.mode.tooltip "Odabire kako omogućiti FoxyProxy">
<!ENTITY foxyproxy.tab.proxies.label "Proxy-i">
<!ENTITY foxyproxy.tab.proxies.accesskey "P">
<!ENTITY foxyproxy.tab.proxies.tooltip "Uredi proxy-e">
<!ENTITY foxyproxy.tab.global.label "Opće postavke">
<!ENTITY foxyproxy.tab.global.accesskey "O">
<!ENTITY foxyproxy.tab.global.tooltip "Uredi opće postavke">
<!ENTITY foxyproxy.tab.logging.label "Zapisivanje">
<!ENTITY foxyproxy.tab.logging.accesskey "Z">
<!ENTITY foxyproxy.tab.logging.tooltip "Uredi postavke zapisivanja">
<!ENTITY foxyproxy.proxydns.label "Koristi SOCKS proxy za pretrage DNS-a">
<!ENTITY foxyproxy.proxydns.accesskey "K">
<!ENTITY foxyproxy.proxydns.tooltip "Ako je označeno, pretrage DNS-a su preusmjerene kroz SOCKS proxy">
<!ENTITY foxyproxy.proxydns.notice "Da bi se primijenila ova promjena, Firefox se mora ponovno pokrenuti. Ponovno pokrenuti sada?">
<!ENTITY foxyproxy.showstatusbaricon.label "Prikaži ikonu u statusnoj traci">
<!ENTITY foxyproxy.showstatusbaricon.accesskey "P">
<!ENTITY foxyproxy.showstatusbaricon.tooltip "Ako je označeno, FoxyProxy ikona će biti prikazana u statusnoj traci">
<!ENTITY foxyproxy.showstatusbarmode.label "Prikaži mod (tekst) u statusnoj traci">
<!ENTITY foxyproxy.showstatusbarmode.accesskey "r">
<!ENTITY foxyproxy.showstatusbarmode.tooltip "Ako je označeno, FoxyProxy mod će biti prikazan u statusnoj traci">
<!ENTITY foxyproxy.storagelocation.label "Postavke mjesta spremanja">
<!ENTITY foxyproxy.storagelocation.accesskey "s">
<!ENTITY foxyproxy.storagelocation.tooltip "Mjesto za spremanje postavki FoxyProxy-a">
<!ENTITY foxyproxy.tab.logging.timestamp.label "Vremenska oznaka">
<!ENTITY foxyproxy.tab.logging.url.label "Web adresa">
<!ENTITY foxyproxy.host.label "Naziv glavnog računala">
<!ENTITY foxyproxy.host.accesskey "g">
<!ENTITY foxyproxy.host.tooltip "Naziv glavnog računala">
<!ENTITY foxyproxy.clear.label "Očisti">
<!ENTITY foxyproxy.clear.accesskey "č">
<!ENTITY foxyproxy.clear.tooltip "Očisti">
<!ENTITY foxyproxy.refresh.label "Osvježi">
<!ENTITY foxyproxy.refresh.accesskey "v">
<!ENTITY foxyproxy.refresh.tooltip "Osvježi">
<!ENTITY foxyproxy.save.label "Spremi">
<!ENTITY foxyproxy.save.accesskey "S">
<!ENTITY foxyproxy.save.tooltip "Spremi">
<!ENTITY foxyproxy.addnewproxy.label "Dodaj novi Proxy">
<!ENTITY foxyproxy.addnewproxy.accesskey "D">
<!ENTITY foxyproxy.addnewproxy.tooltip "Dodaj novi Proxy">
<!ENTITY foxyproxy.whitelist.label "Dozvoljeni popis">
<!ENTITY foxyproxy.whitelist.accesskey "z">
<!ENTITY foxyproxy.whitelist.tooltip "Web adrese koje odgovaraju ovom primjeru se učitavaju putem ovog proxy-a">
<!ENTITY foxyproxy.whitelist.description.label "Web adrese koje odgovaraju ovom primjeru se učitavaju putem ovog proxy-a">
<!ENTITY foxyproxy.blacklist.label "Zabranjeni popis">
<!ENTITY foxyproxy.blacklist.accesskey "b">
<!ENTITY foxyproxy.blacklist.tooltip "Web adrese koje odgovaraju ovom primjeru se NE učitavaju putem ovog proxy-a">
<!ENTITY foxyproxy.blacklist.description.label "Web adrese koje odgovaraju ovom primjeru se NE učitavaju putem ovog proxy-a">
<!ENTITY foxyproxy.whiteblack.description.label "Primjeri zabranjenog popisa (isključivanja) imaju prioritet nad primjerima dopuštenog popisa (uključivanja): ako web adresa odgovara primjeru i s dopuštenog i s zabranjenog popisa za isti proxy, web adresa je isključena od učitavanja od strane tog proxy-a.">
<!ENTITY foxyproxy.usingPFF.label1 "Ja koristim">
<!ENTITY foxyproxy.usingPFF.label2 "Prijenosni Firefox">
<!ENTITY foxyproxy.usingPFF.accesskey "P">
<!ENTITY foxyproxy.usingPFF.tooltip "Označite ovdje ako koristite Prijenosni Firefox">
<!ENTITY foxyproxy.socks.version.label "SOCKS inačica">
<!ENTITY foxyproxy.autopacurl.label "Automatska PAC web adresa">
<!ENTITY foxyproxy.issocks.label "SOCKS proxy?">
<!ENTITY foxyproxy.issocks.accesskey "S">
<!ENTITY foxyproxy.issocks.tooltip "Je li web proxy ili SOCKS proxy?">
<!ENTITY foxyproxy.chinese.simplified "Kineski (pojednostavljen)">
<!ENTITY foxyproxy.chinese.traditional "Kineski (tradicionalni)">
<!ENTITY foxyproxy.croatian "Hrvatski">
<!ENTITY foxyproxy.czech "Češki">
<!ENTITY foxyproxy.danish "Danski">
<!ENTITY foxyproxy.dutch "Nizozemski">
<!ENTITY foxyproxy.english "Engleski">
<!ENTITY foxyproxy.english.british "Engleski (Britanski)">
<!ENTITY foxyproxy.french "Francuski">
<!ENTITY foxyproxy.german "Njemački">
<!ENTITY foxyproxy.greek "Grčki">
<!ENTITY foxyproxy.hungarian "Hungarian">
<!ENTITY foxyproxy.italian "Talijanski">
<!ENTITY foxyproxy.persian "Perzijski">
<!ENTITY foxyproxy.polish "Poljski">
<!ENTITY foxyproxy.portugese.brazilian "Portugalski (Brazilski)">
<!ENTITY foxyproxy.portugese.portugal "Portugalski (Portugal)">
<!ENTITY foxyproxy.romanian "Rumunjski">
<!ENTITY foxyproxy.russian "Ruski">
<!ENTITY foxyproxy.slovak "Slovački">
<!ENTITY foxyproxy.spanish.spain "Španjolski (Španjolska)">
<!ENTITY foxyproxy.spanish.argentina "Španjolski (Argentina)">
<!ENTITY foxyproxy.swedish "Švedski">
<!ENTITY foxyproxy.thai.thailand "Tajlandski (Tajland)">
<!ENTITY foxyproxy.turkish "Turski">
<!ENTITY foxyproxy.ukrainian "Ukrainski">
<!ENTITY foxyproxy.your.language "Vaš jezik">
<!ENTITY foxyproxy.your.name.here "Vaše ime ovdje!">
<!ENTITY foxyproxy.moveup.label "Pomakni gore">
<!ENTITY foxyproxy.moveup.tooltip "Povećaj prioritet trenutačno označenog">
<!ENTITY foxyproxy.moveup.accesskey "r">
<!ENTITY foxyproxy.movedown.label "Pomakni dolje">
<!ENTITY foxyproxy.movedown.tooltip "Smanji prioritet trenutačno označenog">
<!ENTITY foxyproxy.movedown.accesskey "d">
<!ENTITY foxyproxy.autoconfurl.view.label "Pogledaj">
<!ENTITY foxyproxy.autoconfurl.view.accesskey "g">
<!ENTITY foxyproxy.autoconfurl.view.tooltip "Pogledaj datoteku automatske konfiguracije">
<!ENTITY foxyproxy.autoconfurl.test.label "Testiraj">
<!ENTITY foxyproxy.autoconfurl.test.accesskey "T">
<!ENTITY foxyproxy.autoconfurl.test.tooltip "Testiraj datoteku automatske konfiguracije">
<!ENTITY foxyproxy.autoconfurl.reload.label "Ponovno učitaj PAC svakih">
<!ENTITY foxyproxy.autoconfurl.reload.accesskey "n">
<!ENTITY foxyproxy.autoconfurl.reload.tooltip "Automatsko ponovno učitavanje PAC datoteke nakon određenog vremena">
<!ENTITY foxyproxy.minutes.label "minuta">
<!ENTITY foxyproxy.minutes.tooltip "minuta">
<!ENTITY foxyproxy.logging.maxsize.label "Najveća veličina prije umatanja zapisa">
<!ENTITY foxyproxy.logging.maxsize.accesskey "ć">
<!ENTITY foxyproxy.logging.maxsize.tooltip "Najveći broj unosa u zapis prije nego li zapis ponovno počne od početka">
<!ENTITY foxyproxy.logging.maxsize.button.label "Postavi">
<!ENTITY foxyproxy.logging.maxsize.button.accesskey "s">
<!ENTITY foxyproxy.logging.maxsize.button.tooltip "Postavlja najveći broj unosa u zapis prije nego li zapis ponovno počne od početka">
<!ENTITY foxyproxy.random.label "Učitaj web adrese kroz nasumične proxy-e (ignoriraj sve primjere i prioritete)">
<!ENTITY foxyproxy.random.accesskey "č">
<!ENTITY foxyproxy.random.tooltip "Učitaj web adrese kroz nasumične proxy-e (ignoriraj sve primjere i prioritete)">
<!ENTITY foxyproxy.random.includedirect.label "Uključi proxy-e konfigurirane kao direktne Internet veze">
<!ENTITY foxyproxy.random.includedirect.accesskey "i">
<!ENTITY foxyproxy.random.includedirect.tooltip "Proxy-i konfigurirani kao direktne Internet veze su uključeni u nasumce izabrane proxy-e">
<!ENTITY foxyproxy.random.includedisabled.label "Uključi onemogučene proxy-e">
<!ENTITY foxyproxy.random.includedisabled.accesskey "m">
<!ENTITY foxyproxy.random.includedisabled.tooltip "Proxy-i konfigurirani kao onemogučeni su uključeni u nasumce odabrane proxy-e">
<!ENTITY foxyproxy.random.settings.label "Nasumično odabiranje proxy-a">
<!ENTITY foxyproxy.random.settings.accesskey "r">
<!ENTITY foxyproxy.random.settings.tooltip "Postavke koje obuhvaćaju nasumično odabiranje proxy-a">
<!ENTITY foxyproxy.tab.autoadd.label "Automatsko dodavanje">
<!ENTITY foxyproxy.tab.autoadd.accesskey "A">
<!ENTITY foxyproxy.tab.autoadd.tooltip "Upravljajte postavkama Automatskog dodavanja">
<!ENTITY foxyproxy.autoadd.description "Odredite primjer koji prepoznaje blokirane web stranice. Kada je nađen primjer na stranici, koji odgovara web adresi te stranice, automatski je dodan u proxy i opcionalno ponovno učitan. Ovo Vas spriječava da morate proaktivno određivati sve blokirane web stranice.">
<!ENTITY foxyproxy.autoadd.pattern.label "Primjer za prepoznavanje blokiranih web stranica">
<!ENTITY foxyproxy.autoadd.pattern.accesskey "P">
<!ENTITY foxyproxy.autoadd.pattern.tooltip "Primjer koji prepoznaje blokirane web stranice">
<!ENTITY foxyproxy.autoadd.wildcard.example.label "Primjer: *Nemate dopuštenje da biste pogledali ovu stranicu*">
<!ENTITY foxyproxy.autoadd.regex.example.label "Primjer: .*Stranica.*je blokirana.*">
<!ENTITY foxyproxy.autoadd.proxy.label "Proxy-i za koje su primjeri automatski dodani">
<!ENTITY foxyproxy.autoadd.proxy.accesskey "P">
<!ENTITY foxyproxy.autoadd.proxy.tooltip "Odredite proxy za koji su web adrese automatski dodane">
<!ENTITY foxyproxy.pattern.template.label "Predložak primjera web adresa">
<!ENTITY foxyproxy.pattern.template.accesskey "ž">
<!ENTITY foxyproxy.pattern.template.tooltip "Predložak primjera web adresa">
<!ENTITY foxyproxy.pattern.template.example.label1 "Primjer za">
<!ENTITY foxyproxy.pattern.template.example.label2 "http://fred:secret@mail.foo.com:8080/inbox/msg102.htm#subject?style=elegant">
<!ENTITY foxyproxy.pattern.template.currenturl.label "Trenutna web adresa">
<!ENTITY foxyproxy.pattern.template.currenturl.accesskey "T">
<!ENTITY foxyproxy.pattern.template.currenturl.tooltip "Web adresa u adresnoj traci">
<!ENTITY foxyproxy.pattern.template.generatedpattern.label "Generirani primjer">
<!ENTITY foxyproxy.pattern.template.generatedpattern.accesskey "G">
<!ENTITY foxyproxy.pattern.template.generatedpattern.tooltip "Dinamički generirani primjer">
<!ENTITY foxyproxy.autoadd.reload.label "Ponovno učitaj stranicu nakon što je stranica dodana u proxy">
<!ENTITY foxyproxy.autoadd.reload.accesskey "č">
<!ENTITY foxyproxy.autoadd.reload.tooltip "Ponovno učitava stranicu nakon što je dodana u proxy">
<!ENTITY foxyproxy.autoadd.notify.label "Obavijesti me ako je pokrenuto Automatsko dodavanje">
<!ENTITY foxyproxy.autoadd.notify.accesskey "m">
<!ENTITY foxyproxy.autoadd.notify.tooltip "Obaviještava Vas kada je stranica blokirana i primjer web stranice dodan u proxy">
<!ENTITY foxyproxy.graphics "Grafički dizajn i slike">
<!ENTITY foxyproxy.website "Web stranica">
<!ENTITY foxyproxy.contributions "Doprinosi">
<!ENTITY foxyproxy.pacloadnotification.label "Obavijesti me o učitavanju datoteke automatske konfiguracije proxy-a">
<!ENTITY foxyproxy.pacloadnotification.accesskey "j">
<!ENTITY foxyproxy.pacloadnotification.tooltip "Prikaži skočni prozor kada se učita PAC datoteka">
<!ENTITY foxyproxy.pacerrornotification.label "Obavijesti me o greškama datoteke automatske konfiguracije proxy-a">
<!ENTITY foxyproxy.pacerrornotification.accesskey "e">
<!ENTITY foxyproxy.pacerrornotification.tooltip "Prikazuje skočni prozor prilikom nailaženja na greške PAC datoteke">
<!ENTITY foxyproxy.toolsmenu.label "Prikaži ikonu u Firefoxovom alatnom izborniku.">
<!ENTITY foxyproxy.toolsmenu.accesskey "a">
<!ENTITY foxyproxy.toolsmenu.tooltip "Prikaži ikonu u Firefoxovom alatnom izborniku.">
<!ENTITY foxyproxy.tip.label "Savjet">
<!ENTITY foxyproxy.pactips.popup.height "165px">
<!ENTITY foxyproxy.pactips.popup.width "400px">
<!ENTITY foxyproxy.pactip1.label "Za PAC datoteke spremljene na lokalnom čvrstom disku koristite file:// shemu. Naprimjer, file://c:/putanja/proxy.pac na Windowsima ili file:///home/users/joe/proxy.pac na Unixu/Linuxu/Macu.">
<!ENTITY foxyproxy.pactip2.label "Za PAC datoteke na fto poslužitelju koristite ftp:// shemu. Naprimjer ftp://leahscape.com/path/proxy.pac">
<!ENTITY foxyproxy.pactip3.label "Također možete koristiti http://, https:// ili bilo koju drugu podržanu shemu.">
<!ENTITY foxyproxy.contextmenu.label "Prikaži ikonu u kontekstnom izborniku.">
<!ENTITY foxyproxy.contextmenu.accesskey "k">
<!ENTITY foxyproxy.contextmenu.tooltip "Prikaži ikonu u kontekstnom izborniku.">
<!ENTITY foxyproxy.quickadd.desc1 "Brzo dodavanje dodaje dinamički primjer web adrese u proxy kada pritisnete Alt-F2. To je praktična alternativa Automatskom dodavanju. Prilagodite Alt-F2 tipkovničku kraticu sa">
<!ENTITY foxyproxy.keyconfig.label "Konfiguracija tipki">
<!ENTITY foxyproxy.quickadd.desc2 "datotečni nastavak">
<!ENTITY foxyproxy.quickadd.label "Brzo dodavanje">
<!ENTITY foxyproxy.quickadd.accesskey "B">
<!ENTITY foxyproxy.quickadd.tooltip "Upravljajte postavkama Brzo dodavanje">
<!ENTITY foxyproxy.quickadd.notify.label "Obavijesti me kada je pokrenuto Brzo dodavanje">
<!ENTITY foxyproxy.quickadd.notify.accesskey "b">
<!ENTITY foxyproxy.quickadd.notify.tooltip "Prikazuje skočni prozor kada je pokrenuto Brzo dodavanje">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.label "Notify me when QuickAdd is canceled">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.label2 "QuickAdd is automatically canceled when QuickAdd is activated through Alt-F2, and the current URL in the address bar already matches an existing proxy&apos;s whitelist pattern. In this way duplicate patterns, which can clutter your configuration, are prevented. This setting does not enable/disable cancelation; rather, it toggles notification when cancelation occurs.">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.accesskey "C">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.tooltip "Display a popup when QuickAdd is activated but canceled">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.popup.width "400px">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.popup.height "130px">
<!ENTITY foxyproxy.whatsthis "What&apos;s This?">
<!ENTITY foxyproxy.quickadd.prompt.label "Prije dodavanja primjera u proxy obavijesti za uređivanje i konfiguraciju">
<!ENTITY foxyproxy.quickadd.prompt.accesskey "P">
<!ENTITY foxyproxy.quickadd.prompt.tooltip "Prije dodavanja primjera u proxy obaviještava za uređivanje i konfiguraciju">
<!ENTITY foxyproxy.quickadd.proxy.label "Proxy u koji je dodan primjer">
<!ENTITY foxyproxy.quickadd.proxy.accesskey "P">
<!ENTITY foxyproxy.quickadd.proxy.tooltip "Odaberite proxy u koji će primjer biti dodan">
<!ENTITY foxyproxy.bypasscache.label "Zabiđi Firefox privremeni spremnik kod učitavanja">
<!ENTITY foxyproxy.bypasscache.accesskey "b">
<!ENTITY foxyproxy.bypasscache.tooltip "Firefox privremeni spremnik je zanemaren">
<!ENTITY foxyproxy.advancedmenus.label "Koristi napredne izbornike">
<!ENTITY foxyproxy.advancedmenus.accesskey "z">
<!ENTITY foxyproxy.advancedmenus.tooltip "Koristi napredne izbornike (FoxyProxy 2.2-stil)">
<!ENTITY foxyproxy.importsettings.label "Uvezi postavke">
<!ENTITY foxyproxy.importsettings.accesskey "U">
<!ENTITY foxyproxy.importsettings.tooltip "Uvezite postavke iz datoteke">
<!ENTITY foxyproxy.exportsettings.label "Izvezi trenutne postavke">
<!ENTITY foxyproxy.exportsettings.accesskey "I">
<!ENTITY foxyproxy.exportsettings.tooltip "Izvezite trenutne postavke u datoteku">
<!ENTITY foxyproxy.importlist.label "Uvezi popis proxy-a">
<!ENTITY foxyproxy.importlist.accesskey "U">
<!ENTITY foxyproxy.importlist.tooltip "Uvezite tekstualnu datoteku popisa proxy-a">
<!ENTITY foxyproxy.wildcard.reference.label "Preporuka jokera">
<!ENTITY foxyproxy.wildcard.reference.accesskey "j">
<!ENTITY foxyproxy.wildcard.reference.tooltip "Preporuka jokera">
<!ENTITY foxyproxy.wildcard.reference.subtitle.label "Zvjezdica (*) odgovara niti jednom ili više znakova, a upitnik (?) odgovara bilo kojem jednom znaku">
<!ENTITY foxyproxy.wildcard.reference.mistakes "Uobičajene pogreške kod pisanja primjera jokera">
<!ENTITY foxyproxy.wildcard.reference.goal.label "Cilj">
<!ENTITY foxyproxy.wildcard.reference.goal1.label "Podudarnost svih stranica u MySpace www poddomeni">
<!ENTITY foxyproxy.wildcard.reference.goal2.label "Podudarnost lokalnog računala">
<!ENTITY foxyproxy.wildcard.reference.goal3.label "Podudarnost svih poddomena i stranica na abc.com">
<!ENTITY foxyproxy.wildcard.reference.goal4.label "Podudarnost svih stranica na a.foo.com domeni, ali ne na b.foo.com">
<!ENTITY foxyproxy.wildcard.reference.correct.label "Ispravno">
<!ENTITY foxyproxy.wildcard.reference.correct2.label "Moraju biti dva primjera">
<!ENTITY foxyproxy.wildcard.reference.incorrect.label "Neispravno">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason.label "Razlog zašto je neispravno">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason1.label "Pošto ne postoji niti jedan joker, podudara se samo početna stranica">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason2.label "FoxyProxy ne razumije taj način sintakse">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason3.label "Nema jokera">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason4.label "Nema jokera">
<!ENTITY foxyproxy.wildcard.reference.popup.height "350px">
<!ENTITY foxyproxy.logging.noURLs.label "Ne spremaj ili prikazuj web adrese">
<!ENTITY foxyproxy.logging.noURLs.accesskey "w">
<!ENTITY foxyproxy.logging.noURLs.tooltip "Web adrese nisu spremljene u memoriji ili na disku">
<!ENTITY foxyproxy.ok.label "Uredu">
<!ENTITY foxyproxy.ok.accesskey "U">
<!ENTITY foxyproxy.ok.tooltip "Zatvori prozor">
<!ENTITY foxyproxy.pattern.template.reference.label "Predlošci preporuka primjera">
<!ENTITY foxyproxy.pattern.template.reference.accesskey "m">
<!ENTITY foxyproxy.pattern.template.reference.tooltip "Predlošci preporuka primjera">
<!ENTITY foxyproxy.pattern.template.reference.subtitle.label "Predlošci preporuka primjera određuju oblik u kojem su web adrese Brzo ili Automatski dodane u proxy-e. Predlošci podržavaju slijedeće posebne nizove znakova koji, ako je uključeno Brzo ili Automatsko dodavanje, su zamijenjeni s odgovarajućim komponentama web adresa u adresnoj traci.">
<!ENTITY foxyproxy.pattern.template.reference.specialstring.label "Posebni niz znakova">
<!ENTITY foxyproxy.pattern.template.reference.subststring.label "Zamjenjuje se s">
<!ENTITY foxyproxy.pattern.template.reference.example.label "Primjer">
<!ENTITY foxyproxy.pattern.template.reference.scheme.label "protokol">
<!ENTITY foxyproxy.pattern.template.reference.username.label "korisničko ime">
<!ENTITY foxyproxy.pattern.template.reference.password.label "lozinka">
<!ENTITY foxyproxy.pattern.template.reference.userpass.label "korisničko ime i lozinka s &quot;:&quot; &amp; &quot;@&quot;">
<!ENTITY foxyproxy.pattern.template.reference.host.label "glavno računalo">
<!ENTITY foxyproxy.pattern.template.reference.port.label "priključak">
<!ENTITY foxyproxy.pattern.template.reference.hostport.label "priključak glasnog računala s &quot;:&quot;">
<!ENTITY foxyproxy.pattern.template.reference.prepath.label "niz znakova prije putanje">
<!ENTITY foxyproxy.pattern.template.reference.path.label "putanja (uključuje ime datoteke)">
<!ENTITY foxyproxy.pattern.template.reference.directory.label "direktorij">
<!ENTITY foxyproxy.pattern.template.reference.filebasename.label "osnovno ime datoteke">
<!ENTITY foxyproxy.pattern.template.reference.fileextension.label "datotečni nastavci datoteke">
<!ENTITY foxyproxy.pattern.template.reference.filename.label "cijelo ime datoteke">
<!ENTITY foxyproxy.pattern.template.reference.ref.label "dio nakon &quot;#&quot;">
<!ENTITY foxyproxy.pattern.template.reference.query.label "dio nakon &quot;?&quot;">
<!ENTITY foxyproxy.pattern.template.reference.spec.label "cijela web adresa">
<!ENTITY foxyproxy.pattern.template.reference.popup.height "400px">
<!ENTITY foxyproxy.pattern.template.reference.popup.width "800px">
<!ENTITY foxyproxy.notifications.label "Obavijesti">
<!ENTITY foxyproxy.notifications.accesskey "b">
<!ENTITY foxyproxy.notifications.tooltip "Postavke obavijesti">
<!ENTITY foxyproxy.indicators.label "Pokazatelji">
<!ENTITY foxyproxy.indicators.accesskey "k">
<!ENTITY foxyproxy.indicators.tooltip "Postavke pokazatelja">
<!ENTITY foxyproxy.misc.label "Razno">
<!ENTITY foxyproxy.misc.accesskey "R">
<!ENTITY foxyproxy.misc.tooltip "Postavke raznog">
<!ENTITY foxyproxy.animatedicons.label "Animiraj ikone kada se koristi ovaj proxy-i">
<!ENTITY foxyproxy.animatedicons.accesskey "A">
<!ENTITY foxyproxy.animatedicons.tooltip "Animira ikonu kada je uključen ovaj proxy (također mora biti označeno Opće postavke-&gt;Animacije)">
<!ENTITY foxyproxy.statusbaractivation.label "Statusbar Activation">
<!ENTITY foxyproxy.statusbaractivation.accesskey "S">
<!ENTITY foxyproxy.statusbaractivation.tooltip "Statusbar Activation Settings">
<!ENTITY foxyproxy.toolbaractivation.label "Toolbar Activation">
<!ENTITY foxyproxy.toolbaractivation.accesskey "T">
<!ENTITY foxyproxy.toolbaractivation.tooltip "Toolbar Activation Settings">
<!ENTITY foxyproxy.leftclicksb.label "Left-clicking FoxyProxy on statusbar">
<!ENTITY foxyproxy.leftclicksb.accesskey "L">
<!ENTITY foxyproxy.leftclicksb.tooltip "Action to take when left-clicking on FoxyProxy in statusbar">
<!ENTITY foxyproxy.middleclicksb.label "Middle-clicking FoxyProxy on statusbar">
<!ENTITY foxyproxy.middleclicksb.accesskey "M">
<!ENTITY foxyproxy.middleclicksb.tooltip "Action to take when middle-clicking on FoxyProxy in statusbar">
<!ENTITY foxyproxy.rightclicksb.label "Right-clicking FoxyProxy on statusbar">
<!ENTITY foxyproxy.rightclicksb.accesskey "R">
<!ENTITY foxyproxy.rightclicksb.tooltip "Action to take when right-clicking on FoxyProxy in statusbar">
<!ENTITY foxyproxy.leftclicktb.label "Left-clicking FoxyProxy on toolbar">
<!ENTITY foxyproxy.leftclicktb.accesskey "L">
<!ENTITY foxyproxy.leftclicktb.tooltip "Action to take when left-clicking on FoxyProxy in toolbar">
<!ENTITY foxyproxy.middleclicktb.label "Middle-clicking FoxyProxy on toolbar">
<!ENTITY foxyproxy.middleclicktb.accesskey "M">
<!ENTITY foxyproxy.middleclicktb.tooltip "Action to take when middle-clicking on FoxyProxy in toolbar">
<!ENTITY foxyproxy.rightclicktb.label "Right-clicking FoxyProxy on toolbar">
<!ENTITY foxyproxy.rightclicktb.accesskey "R">
<!ENTITY foxyproxy.rightclicktb.tooltip "Action to take when right-clicking on FoxyProxy in toolbar">
<!ENTITY foxyproxy.click.options "Shows the options dialog">
<!ENTITY foxyproxy.click.cycle "Cycles through modes">
<!ENTITY foxyproxy.click.contextmenu "Shows the context menu">
<!ENTITY foxyproxy.click.reloadcurtab "Reload current tab">
<!ENTITY foxyproxy.click.reloadtabsinbrowser "Reload all tabs in current browser">
<!ENTITY foxyproxy.click.reloadtabsinallbrowsers "Reload all tabs in all browsers">
<!ENTITY foxyproxy.click.removeallcookies "Remove all cookies">
<!ENTITY foxyproxy.includeincycle.label "Include this proxy when cycling proxies by clicking on statusbar or toolbar (Global Settings-&gt;Statusbar/Toolbar Activation-&gt;Cycle through modes must be selected)">
<!ENTITY foxyproxy.includeincycle.accesskey "I">
<!ENTITY foxyproxy.includeincycle.tooltip "Include this proxy when clicking on the statusbar/toolbar">
<!ENTITY foxyproxy.changes.msg1 "Help! Where are settings for HTTP, SSL, FTP, Gopher, and SOCKS?">
<!ENTITY foxyproxy.newGUI.popup.height "270px">
<!ENTITY foxyproxy.newGUI.popup.width "400px">
<!ENTITY foxyproxy.newGUI1.label "The old FoxyProxy Proxy Settings screen was based on and nearly identical to Firefox&apos;s Connection Settings dialog, which in turn was nearly identical to the Proxy Settings in the ancient Mosaic 2.1.1 browser from 1996. The problem with all of these screens is their limited ability to route traffic by protocol. 21st century browsers like Firefox handle many more protocols than HTTP, SSL, FTP, and GOPHER. Clearly, these old screens would be unwieldy if they attempted to include every possible protocol.">
<!ENTITY foxyproxy.newGUI2.label "Since FoxyProxy already enables traffic routing by protocol with wildcard and regular expression patterns, the listing of protocols on this screen is unnecessary. As of version 2.5, FoxyProxy has removed this protocol list from the Proxy Settings GUI. However, this does not reduce functionality. It makes for a simpler interface. If you need to route traffic by protocol, you should define whitelist and blacklist patterns with careful attention to the scheme/protocol portion of the pattern (e.g., ftp://*.yahoo.com/*, *://leahscape.com/*, etc.)">
<!ENTITY foxyproxy.newGUI4.label "Click here for more information.">
<!ENTITY foxyproxy.error.msg.label "Error Message">
<!ENTITY foxyproxy.pac.result.label "PAC Result">
<!ENTITY foxyproxy.options.width "666">
<!ENTITY foxyproxy.options.height "477">
<!ENTITY foxyproxy.torwiz.width "660">
<!ENTITY foxyproxy.torwiz.height "375">
<!ENTITY foxyproxy.addeditproxy.width "660">
<!ENTITY foxyproxy.addeditproxy.height "470">

View File

@ -0,0 +1,136 @@
extensions.foxyproxy@eric.h.jung.description=FoxyProxy - Povratite Vašu privatnost!
foxyproxy=FoxyProxy
tor=Tor
privoxy=Privoxy
settings.error=Greška prilikom čitanja postavki
error=Greška
welcome=Dobrodošli u FoxyProxy!
yes=Da
no=Ne
disabled=Onemogućeno
torwiz.configure=Želite li namjestiti FoxyProxy za upotrebu sa Tor-om?
torwiz.with.without.privoxy=Koristite li Tor s ili bez Privoxy?
torwiz.with=Sa
torwiz.without=Bez
torwiz.privoxy.not.required=Mala napomena: od Firefoxa 1.5, Privoxy više nije potreban da bi se Firefox koristio sa Torom. Privoxy dodaje vrijednost kao što je filtriranje sadržaja, ali nije nužno potreban za korištenje sa Firefoxom 1.5+ i Torom. Želite li još uvijek da Firefox koristi Tor putem Privoxy-a?
torwiz.port=Molim Vas unesite port na kojem %S sluša. Ako ne znate, koristite zadani.
torwiz.nan=To nije broj.
torwiz.proxy.notes=Proxy putem Tor mreže - http://tor.eff.org
torwiz.google.mail=Google Mail
torwiz.pattern=http://*mail.google.com/*
torwiz.congratulations=Čestitamo! FoxyProxy je namješten za upotrebu sa Tor-om. Molimo Vas budite sigurni da je Tor pokrenut prije posjete web adresama za koje ste odredili da se upotrebljava Tor mreža. Dodatno, ako ste namjestili da FoxyProxy koristi Privoxy, osigurajte i da je on pokrenut.
torwiz.cancelled=FoxyProxy Tor čarobnjak je prekinut.
mode.patterns.label=Koristi proxy-e zasnovane na njihovim predefiniranim primjerima
mode.patterns.accesskey=K
mode.patterns.tooltip=Koristi proxy-e zasnovane na njihovim predefiniranim primjerima i prioritetima
mode.custom.label=Koristi proxy \"%S\" za sve web adrese
mode.custom.tooltip=Koristi proxy \"%S\" za sve web adrese
mode.disabled.label=Potpuno onemogući FoxyProxy
mode.disabled.accesskey=n
mode.disabled.tooltip=Potpuno onemogući FoxyProxy
more.label=Više
more.accesskey=V
more.tooltip=Još opcija
invalid.url=Navedena web adresa za automatsko namještanje proxy-a nije valjana.
protocols.error=Molim Vas, odredite jedan ili više protokola za proxy.
noport2=A port must be specified for the host.
nohost2=A host name must be specified with the port.
nohostport=Host name and port must be specified.
torwiz.nopatterns=Niste unijeli primjere dopuštenih (uključujučih) web adresa. To znači da se Tor mreža neće koristiti. Svejedno nastaviti?
months.long.1=Siječanj
months.short.1=Sij
months.long.2=Veljača
months.short.2=Vel
months.long.3=Ožujak
months.short.3=Ožu
months.long.4=Travanj
months.short.4=Tra
months.long.5=Svibanj
months.short.5=Svi
months.long.6=Lipanj
months.short.6=Lip
months.long.7=Srpanj
months.short.7=Srp
months.long.8=Kolovoz
months.short.8=Kol
months.long.9=Rujan
months.short.9=Ruj
months.long.10=Listopad
months.short.10=Lis
months.long.11=Studeni
months.short.11=Stu
months.long.12=Prosinac
months.short.12=Pro
days.long.1=Nedjelja
days.short.1=Ned
days.long.2=Ponedjeljak
days.short.2=Pon
days.long.3=Utorak
days.short.3=Uto
days.long.4=Srijeda
days.short.4=Sri
days.long.5=Četvrtak
days.short.5=Čet
days.long.6=Petak
days.short.6=Pet
days.long.7=Subota
days.short.7=Sub
timeformat=hh:nn:ss:zzz a/p mmm dd, yyyy
file.select=Odaberite datoteku u koje ćete spremiti postavke
manual=Ručno
auto=Automatski
direct=Direktno
delete.proxy.confirm=Obriši proxy: sigurni ste?
pattern.required=Primjer je neophodan.
pattern.invalid.regex=%S nije valjan regularni izraz.
proxy.error.for.url=Greška prilikom utvrđivanja proxy-a za %S
proxy.default.settings.used=FoxyProxy nije korišten za ovu web adresu - korištene su Firefoxove zadane postavke spajanja
proxy.all.urls=Sve web adrese su namještene za upotrebu ovog proxy-a
pac.status=FoxyProxy PAC status
pac.status.loadfailure=Neuspjelo učitavanje PAC za proxy \"%S\"
pac.status.success=Učitan PAC za proxy \"%S\"
pac.status.error=Greška u PAC za proxy \"%S\"
error.noload=Greška. MolimoVas da kontaktirate FoxyProxy razvojni tim. Ne postoji nikakvo curenje privatnih podataka, već se neće učitati izvor. Izuzetak je %S
proxy.name.required=Molimo Vas da unesete naziv za ovaj proxy u kartici Općenito.
proxy.default=Zadano
proxy.default.notes=Ovo su postavke koje se koriste kada niti jedan uzorak ne odgovara web adresi.
proxy.default.match.name=Svi
delete.proxy.default=Ne možete obrisati ovaj proxy.
copy.proxy.default=Ne možete kopirati ovaj proxy.
logg.maxsize.change=Ovo će obrisati zapis. Nastaviti?
logg.maxsize.maximum=Najveća preporučena veličina je 9999. Veće vrijednosti će potrošiti više memorije mogu utjecati na performanse. Svejedno nastaviti?
proxy.random=Proxy je nasumce odabran
mode.random.label=Koristi nasumične proxy-e za sve web adrese (ignoriraj sve primjere i prioritete)
mode.random.accesskey=n
mode.random.tooltip=Učitavaj web adrese kroz nasumične proxy-e (ignoriraj sve primjere i prioritete)
random=Nasumce
random.applicable=Ove se postavke primjenjuju samo kod \"Koristi nasumične proxy-e za sve web adrese (ignoriraj sve primjere i prioritete)\"
superadd.error=Greška u konfiguraciji: %S je onemogućen.
superadd.notify=Proxy %S
superadd.url.added=Primjer %S dodan u Proxy "%S"
autoadd.pattern.label=Dinamički primjer Automatski dodaj
quickadd.pattern.label=Dinamički primjer Brzo dodaj
torwiz.proxydns=Želite li za DNS zahtjevi idu kroz Tor mrežu? Ako ne razumijete ovo pitanje, kliknite na \"Da\"
superadd.verboten2=%S cannot be enabled because either no proxies are defined or all proxies are disabled.
autoadd.notice=Mala napomena: Automatsko dodvanje utječe na vrijeme učitavnja stranica. Što je složeniji Vaš primjer i veća web stranica, treba više vremena Automatskom dodavanju dok to obradi. Ako primjetite značajne odgode, molimo Vas da onemogućite Automatsko dodavanje.\n\nPredlažemo Vam da koristite Brzo dodavanje umjesto Automatskog dodavanja.
autoadd.notice2=
autoconfurl.test.success=PAC je pronađen, učitan i uspješno analiziran.
autoconfurl.test.fail=Postojao je problem prilikom učitavanja, pronalaženja ili analiziranja PAC:\nHTTP statusni kod: %S\nIzuzetak: %S
none=Niti jedan
delete.settings.ask=Želite li obrisati FoxyProxy postavke spremljene u %S?
delete.settings.confirm=%S će biti obrisane nakon što budu zatvoreni svi preglednici.
no.wildcard.characters=Primjer ne sadrži niti jedan znak jokera. To znaći da će "%S" biti točno uparen. Neobično je da se FoxyProxy koristi na ovakav način i vjerojatno znači da postoji greška u primjeru ili da Vi niste razumjeli kako odrediti FoxyProxy primjere. Svejedno nastaviti?
message.stop=Ovu poruku više nemoj prikazati
log.save=Spremi zapis
log.saved2=Zapis je spremljen u %S. Pogledati sada?
log.nourls.url=Nije zapisno
log.scrub=Očistiti postojeće unose zapisa web adresa?
no.white.patterns=Niste unijeli niti jedan primjer dopuštenih (uključujućih) web adresa. To znači da se proxy neće koristiti. Svejedno nastaviti?
quickadd.quickadd.canceled=QuickAdd has been canceled because the current URL already matches the existing pattern named "%S" in proxy "%S"
quickadd.nourl=Unable to get current URL
cookies.allremoved=All cookies removed
route.error=Error while determining which host to use for proxying
route.exception=Exception while determinig which host to use for proxying %S
see.log=Molimo Vas, za više informacija pogledajte zapis.
pac.select=Select the PAC file to use
pac.files=PAC Files

View File

@ -0,0 +1,55 @@
<!-- switched from xhtml to html because of BabelZilla WTS adds extraneous html tags on locale download -->
<html>
<head>
<style type="text/css">
table {
border-width: 0px;
border-spacing: 2px;
border-style: none;
border-color: white;
border-collapse: separate;
background-color: rgb(250, 240, 230);
font-size: x-small;
font-family: verdana, sans-serif;
}
table td,table th {
border-width: 1px;
padding: 1px;
border-style: groove;
border-color: green;
background-color: rgb(250, 240, 230);
vertical-align: top;
font-size: x-small;
font-family: verdana, sans-serif;
}
p {background-color: white; font-size: x-small; font-family: verdana, sans-serif;}
body {font-family: verdana, sans-serif;}
h3 {font-size: small;}
h4 {font-size: x-small;}
</style>
</head>
<body>
<h3>Primjeri web adresa</h3>
<p>Prije nego li Firefox učita web adresu, Firefox pita FoxyProxy treba li biti upotrijebljen proxy.
FoxyProxy odgovara na to pitanje pokušavajući usporediti trenutnu web adresu sa svim donjim primjerima web adresa koje ste definirali.
Najednostavniji način određivanja primjera jest koristeći jokere.</p>
<h4><a name="wildcards">Jokeri</a></h4>
<p>Jokeri prožimaju cijelo računarstvo; vrlo vjerovatno ste ih vidjeli
i prije. Zvijezdica (*) se koristi kao joker oznaka koja zamjenjuje niti jedan ili više znakova,
a upitnik (?) kao joker oznaka koja zamjenjuje jedan bilo koji znak.
</p>
<p>Naprednija pravila uspoređivanja moguća su upotrebom uobičajenih izraza. Za više detalja, kliknite na gumb "Sadržaj pomoći".</p>
<h4>Primjeri jokera</h4>
<table>
<thead><tr><th>Primjer web adrese</th><th>Neke koje odgovaraju</th><th>Neke koje ne ogovaraju</th></tr></thead>
<tr><td>*//:*.yahoo.com/*</td><td>Sve u Yahoo domeni</td><td>http://mail.google.com/</td></tr>
<tr><td>*//:mail.yahoo.com/*</td><td>http://mail.yahoo.com/<br/>http://mail.yahoo.com/clownshoes/<br/>http://mail.yahoo.com/inbox/123.html<br/>ftp://mail.yahoo.com</td><td>http://maps.yahoo.com</td></tr>
<tr><td>http://??.wikipedia.org/wiki/Clown</td><td>http://en.wikipedia.org/wiki/Clown<br/>http://de.wikipedia.org/wiki/Clown<br/>http://cs.wikipedia.org/wiki/Clown</td><td>https://en.wikipedia.org/wiki/Clown<br/>http://de.wikipedia.org/wiki/Clown/<br/>ftp://en.wikipedia.org/wiki/Clown</td></tr>
<tr><td>http://digg.com/</td><td>http://digg.com/</td><td>http://digg.com<br/>http://www.digg.com/</td></tr>
<tr><td>*://*.asimov.???/*</td><td>ftp://ftp.asimov.net/<br/>ftp://ftp.asimov.com/theory.html<br/>http://bear.asimov.net/mom/<br/>https://isaac.asimov.org/hercules<br/>gopher://asimov.net/</td>
<td>ftp://ftp.asimov.co.uk<br/>http://isaac.home.com/tin.php</td></tr>
<tr><td>*</td><td><i>Stavlja sve kao odgovarajuće</i></td><td>&nbsp;</td></tr>
</table>
</body>
</html>

View File

@ -0,0 +1,420 @@
<!ENTITY foxyproxy.label "FoxyProxy">
<!ENTITY foxyproxy.accesskey "F">
<!ENTITY foxyproxy.tooltip "FoxyProxy">
<!ENTITY foxyproxy.optionsdialog.label "FoxyProxy Beállítások">
<!ENTITY foxyproxy.options.label "Beállítások">
<!ENTITY foxyproxy.options.accesskey "B">
<!ENTITY foxyproxy.options.tooltip "Megynyitja a beállítások párbeszédablakot">
<!ENTITY foxyproxy.tree.pickertooltiptext.label "Click to select which columns to display">
<!ENTITY foxyproxy.proxy.name.label "Proxynév">
<!ENTITY foxyproxy.proxy.name.accesskey "n">
<!ENTITY foxyproxy.proxy.name.tooltip "Proxynév">
<!ENTITY foxyproxy.proxy.notes.label "Proxyleírás">
<!ENTITY foxyproxy.proxy.notes.accesskey "l">
<!ENTITY foxyproxy.proxy.notes.tooltip "Proxyleírás">
<!ENTITY foxyproxy.pattern.label "Minta">
<!ENTITY foxyproxy.pattern.type.label "Minta típus">
<!ENTITY foxyproxy.whitelist.blacklist.label "Whitelist (Inclusive) or Blacklist (Exclusive)">
<!ENTITY foxyproxy.pattern.name.label "Mintanév">
<!ENTITY foxyproxy.pattern.name.accesskey "M">
<!ENTITY foxyproxy.pattern.name.tooltip "A minta neve">
<!ENTITY foxyproxy.url.pattern.label "URL minta">
<!ENTITY foxyproxy.url.pattern.accesskey "U">
<!ENTITY foxyproxy.url.pattern.tooltip "URL minta">
<!ENTITY foxyproxy.enabled.label "Bekapcsolva">
<!ENTITY foxyproxy.enabled.accesskey "B">
<!ENTITY foxyproxy.enabled.tooltip "Kikapcsolás/bekapcsolás">
<!ENTITY foxyproxy.delete.selection.label "Delete Selection">
<!ENTITY foxyproxy.delete.selection.accesskey "D">
<!ENTITY foxyproxy.delete.selection.tooltip "Delete the currently selected item">
<!ENTITY foxyproxy.edit.selection.label "Edit Selection">
<!ENTITY foxyproxy.edit.selection.accesskey "E">
<!ENTITY foxyproxy.edit.selection.tooltip "Edit the currently selected item">
<!ENTITY foxyproxy.help.label "Help Contents">
<!ENTITY foxyproxy.help.accesskey "H">
<!ENTITY foxyproxy.help.tooltip "Show Help">
<!ENTITY foxyproxy.close.label "Bezárás">
<!ENTITY foxyproxy.close.accesskey "B">
<!ENTITY foxyproxy.close.tooltip "Ablak bezárása">
<!ENTITY foxyproxy.about.label "Névjegy">
<!ENTITY foxyproxy.about.accesskey "N">
<!ENTITY foxyproxy.about.tooltip "Megnyitja a névjegy párbeszédablakot">
<!ENTITY foxyproxy.online.label "FoxyProxy Online">
<!ENTITY foxyproxy.online.accesskey "O">
<!ENTITY foxyproxy.online.tooltip "Visit the FoxyProxy Website">
<!ENTITY foxyproxy.tor.label "Tor Wizard">
<!ENTITY foxyproxy.tor.accesskey "W">
<!ENTITY foxyproxy.tor.tooltip "Tor Wizard">
<!ENTITY foxyproxy.copy.selection.label "Copy Selection">
<!ENTITY foxyproxy.copy.selection.accesskey "C">
<!ENTITY foxyproxy.copy.selection.tooltip "Copies selection">
<!ENTITY foxyproxy.mode.label "Select Mode">
<!ENTITY foxyproxy.auto.url.label "Automatic proxy configuration URL">
<!ENTITY foxyproxy.auto.url.accesskey "A">
<!ENTITY foxyproxy.auto.url.tooltip "Enter URL of the PAC file">
<!ENTITY foxyproxy.port.label "Port">
<!ENTITY foxyproxy.port.accesskey "P">
<!ENTITY foxyproxy.port.tooltip "Port">
<!ENTITY foxyproxy.socks.proxy.label "SOCKS proxy">
<!ENTITY foxyproxy.socks.proxy.accesskey "C">
<!ENTITY foxyproxy.socks.proxy.tooltip "URL of SOCKS Proxy">
<!ENTITY foxyproxy.socks.v4 "SOCKS v4/4a">
<!ENTITY foxyproxy.socks.v5 "SOCKS v5">
<!ENTITY foxyproxy.addeditpattern.title "Add/Edit Pattern">
<!ENTITY foxyproxy.wildcard.label "Wildcards">
<!ENTITY foxyproxy.wildcard.accesskey "W">
<!ENTITY foxyproxy.wildcard.tooltip "Specifies that the URL pattern uses wildcards and is not a regular expression">
<!ENTITY foxyproxy.wildcard.example.label "Example: *mail.yahoo.com/*">
<!ENTITY foxyproxy.regex.label "Reguláris kifejezés">
<!ENTITY foxyproxy.regex.accesskey "R">
<!ENTITY foxyproxy.regex.tooltip "Specifies that the URL pattern is a regular expression">
<!ENTITY foxyproxy.regex.example.label "Példa: http?://.*\.mail\.yahoo\.com/.*">
<!ENTITY foxyproxy.version "Verzió">
<!ENTITY foxyproxy.createdBy "Készítette">
<!ENTITY foxyproxy.copyright "Copyright">
<!ENTITY foxyproxy.rights "Minden jog fenntartva.">
<!ENTITY foxyproxy.released "Kiadva a GPL licenc szabályai szerint.">
<!ENTITY foxyproxy.thanks "Külön köszönet">
<!ENTITY foxyproxy.translations "Fordítások">
<!ENTITY foxyproxy.tab.general.label "Általános">
<!ENTITY foxyproxy.tab.general.accesskey "l">
<!ENTITY foxyproxy.tab.general.tooltip "Általános proxy beállítások elvégzése">
<!ENTITY foxyproxy.tab.proxy.label "Proxy részletek">
<!ENTITY foxyproxy.tab.proxy.accesskey "r">
<!ENTITY foxyproxy.tab.proxy.tooltip "Részletes proxy beállítások elvégzése">
<!ENTITY foxyproxy.tab.patterns.label "Minták">
<!ENTITY foxyproxy.tab.patterns.accesskey "M">
<!ENTITY foxyproxy.tab.patterns.tooltip "URL minták kezelése">
<!ENTITY foxyproxy.add.title "Proxy beállítások">
<!ENTITY foxyproxy.pattern.description "Here you can specify when this proxy is and is not used.">
<!ENTITY foxyproxy.pattern.matchtype.label "Pattern Contains">
<!ENTITY foxyproxy.pattern.whiteblack.label "URL Inclusion/Exclusion">
<!ENTITY foxyproxy.add.option.direct.label "Közvetlen internetkapcsolat (nincs proxy)">
<!ENTITY foxyproxy.add.option.direct.accesskey "K">
<!ENTITY foxyproxy.add.option.direct.tooltip "Do not use a proxy - use the underlying direct internet connection">
<!ENTITY foxyproxy.add.option.manual.label "Kézi proxy beállítás">
<!ENTITY foxyproxy.add.option.manual.accesskey "z">
<!ENTITY foxyproxy.add.option.manual.tooltip "Manually define a proxy configuration">
<!ENTITY foxyproxy.add.new.pattern.label "Új minta megadása">
<!ENTITY foxyproxy.add.new.pattern.accesskey "j">
<!ENTITY foxyproxy.add.new.pattern.tooltip "Új minta megadása">
<!ENTITY foxyproxy.menubar.file.label "Fájl">
<!ENTITY foxyproxy.menubar.file.accesskey "F">
<!ENTITY foxyproxy.menubar.file.tooltip "Megnyitja a fájl menüt">
<!ENTITY foxyproxy.menubar.help.label "Súgó">
<!ENTITY foxyproxy.menubar.help.accesskey "S">
<!ENTITY foxyproxy.menubar.help.tooltip "Megnyitja a súgó menüt">
<!ENTITY foxyproxy.mode.accesskey "M">
<!ENTITY foxyproxy.mode.tooltip "Select how to enable FoxyProxy">
<!ENTITY foxyproxy.tab.proxies.label "Proxy-k">
<!ENTITY foxyproxy.tab.proxies.accesskey "P">
<!ENTITY foxyproxy.tab.proxies.tooltip "Proxy-k kezelése">
<!ENTITY foxyproxy.tab.global.label "Általános beállítások">
<!ENTITY foxyproxy.tab.global.accesskey "l">
<!ENTITY foxyproxy.tab.global.tooltip "Manage Global Settings">
<!ENTITY foxyproxy.tab.logging.label "Naplózás">
<!ENTITY foxyproxy.tab.logging.accesskey "N">
<!ENTITY foxyproxy.tab.logging.tooltip "Naplózási beállítások kezelése">
<!ENTITY foxyproxy.proxydns.label "Use SOCKS proxy for DNS lookups">
<!ENTITY foxyproxy.proxydns.accesskey "U">
<!ENTITY foxyproxy.proxydns.tooltip "If checked, DNS lookups are routed through a SOCKS proxy">
<!ENTITY foxyproxy.proxydns.notice "Firefox must restart for settings to take effect. Restart now?">
<!ENTITY foxyproxy.showstatusbaricon.label "Ikon megjelenítése az állapotsorban">
<!ENTITY foxyproxy.showstatusbaricon.accesskey "I">
<!ENTITY foxyproxy.showstatusbaricon.tooltip "If checked, FoxyProxy icon is shown on the statusbar">
<!ENTITY foxyproxy.showstatusbarmode.label "Show mode (text) on statusbar">
<!ENTITY foxyproxy.showstatusbarmode.accesskey "S">
<!ENTITY foxyproxy.showstatusbarmode.tooltip "If checked, FoxyProxy mode is shown on the statusbar">
<!ENTITY foxyproxy.storagelocation.label "Settings Storage Location">
<!ENTITY foxyproxy.storagelocation.accesskey "S">
<!ENTITY foxyproxy.storagelocation.tooltip "Location to store FoxyProxy&apos;s settings">
<!ENTITY foxyproxy.tab.logging.timestamp.label "Időbélyeg">
<!ENTITY foxyproxy.tab.logging.url.label "URL">
<!ENTITY foxyproxy.host.label "Host Name">
<!ENTITY foxyproxy.host.accesskey "H">
<!ENTITY foxyproxy.host.tooltip "Host Name">
<!ENTITY foxyproxy.clear.label "Törlés">
<!ENTITY foxyproxy.clear.accesskey "T">
<!ENTITY foxyproxy.clear.tooltip "Törlés">
<!ENTITY foxyproxy.refresh.label "Frissítés">
<!ENTITY foxyproxy.refresh.accesskey "F">
<!ENTITY foxyproxy.refresh.tooltip "Frissítés">
<!ENTITY foxyproxy.save.label "Mentés">
<!ENTITY foxyproxy.save.accesskey "M">
<!ENTITY foxyproxy.save.tooltip "Mentés">
<!ENTITY foxyproxy.addnewproxy.label "Add New Proxy">
<!ENTITY foxyproxy.addnewproxy.accesskey "A">
<!ENTITY foxyproxy.addnewproxy.tooltip "Add New Proxy">
<!ENTITY foxyproxy.whitelist.label "Fehérlista">
<!ENTITY foxyproxy.whitelist.accesskey "F">
<!ENTITY foxyproxy.whitelist.tooltip "URLs matching this pattern are loaded through this proxy">
<!ENTITY foxyproxy.whitelist.description.label "URLs matching this pattern are loaded through this proxy">
<!ENTITY foxyproxy.blacklist.label "Feketelista">
<!ENTITY foxyproxy.blacklist.accesskey "e">
<!ENTITY foxyproxy.blacklist.tooltip "URLs matching this pattern are NOT loaded through this proxy">
<!ENTITY foxyproxy.blacklist.description.label "URLs matching this pattern are NOT loaded through this proxy">
<!ENTITY foxyproxy.whiteblack.description.label "Blacklist (exclusion) patterns have precedence over whitelist (inclusion) patterns: if a URL matches both a whitelisted pattern and a blacklisted pattern for the same proxy, the URL is excluded from being loaded by that proxy.">
<!ENTITY foxyproxy.usingPFF.label1 "I am using">
<!ENTITY foxyproxy.usingPFF.label2 "Portable Firefox">
<!ENTITY foxyproxy.usingPFF.accesskey "P">
<!ENTITY foxyproxy.usingPFF.tooltip "Check here if you are using Portable Firefox">
<!ENTITY foxyproxy.socks.version.label "SOCKS Version">
<!ENTITY foxyproxy.autopacurl.label "Auto PAC URL">
<!ENTITY foxyproxy.issocks.label "SOCKS proxy?">
<!ENTITY foxyproxy.issocks.accesskey "S">
<!ENTITY foxyproxy.issocks.tooltip "Is this a web proxy or SOCKS proxy?">
<!ENTITY foxyproxy.chinese.simplified "Egyszerűsített kínai">
<!ENTITY foxyproxy.chinese.traditional "Hagyományos kínai">
<!ENTITY foxyproxy.croatian "Horvát">
<!ENTITY foxyproxy.czech "Cseh">
<!ENTITY foxyproxy.danish "Dán">
<!ENTITY foxyproxy.dutch "Holland">
<!ENTITY foxyproxy.english "Angol">
<!ENTITY foxyproxy.english.british "Brit angol">
<!ENTITY foxyproxy.french "Francia">
<!ENTITY foxyproxy.german "Német">
<!ENTITY foxyproxy.greek "Görög">
<!ENTITY foxyproxy.italian "Olasz">
<!ENTITY foxyproxy.persian "Perzsa">
<!ENTITY foxyproxy.polish "Lengyel">
<!ENTITY foxyproxy.portugese.brazilian "Brazil portugál">
<!ENTITY foxyproxy.portugese.portugal "Portugál">
<!ENTITY foxyproxy.romanian "Román">
<!ENTITY foxyproxy.russian "Orosz">
<!ENTITY foxyproxy.slovak "Szlovák">
<!ENTITY foxyproxy.spanish.spain "Spanyol">
<!ENTITY foxyproxy.spanish.argentina "Argentin spanyol">
<!ENTITY foxyproxy.swedish "Svéd">
<!ENTITY foxyproxy.thai.thailand "Thai">
<!ENTITY foxyproxy.turkish "Török">
<!ENTITY foxyproxy.ukrainian "Ukrán">
<!ENTITY foxyproxy.your.language "Magyar">
<!ENTITY foxyproxy.your.name.here "KAMI">
<!ENTITY foxyproxy.moveup.label "Felfelé">
<!ENTITY foxyproxy.moveup.tooltip "Increase priority of current selection">
<!ENTITY foxyproxy.moveup.accesskey "F">
<!ENTITY foxyproxy.movedown.label "Lefelé">
<!ENTITY foxyproxy.movedown.tooltip "Decrease priority of current selection">
<!ENTITY foxyproxy.movedown.accesskey "L">
<!ENTITY foxyproxy.autoconfurl.view.label "Nézet">
<!ENTITY foxyproxy.autoconfurl.view.accesskey "N">
<!ENTITY foxyproxy.autoconfurl.view.tooltip "View the auto-configuration file">
<!ENTITY foxyproxy.autoconfurl.test.label "Teszt">
<!ENTITY foxyproxy.autoconfurl.test.accesskey "T">
<!ENTITY foxyproxy.autoconfurl.test.tooltip "Test the auto-configuration file">
<!ENTITY foxyproxy.autoconfurl.reload.label "Reload the PAC every">
<!ENTITY foxyproxy.autoconfurl.reload.accesskey "R">
<!ENTITY foxyproxy.autoconfurl.reload.tooltip "Auto-reload the PAC file every specified period">
<!ENTITY foxyproxy.minutes.label "perc">
<!ENTITY foxyproxy.minutes.tooltip "perc">
<!ENTITY foxyproxy.logging.maxsize.label "Maximum size before log wraps">
<!ENTITY foxyproxy.logging.maxsize.accesskey "M">
<!ENTITY foxyproxy.logging.maxsize.tooltip "Maximum number of log entries before the log wraps to the beginning">
<!ENTITY foxyproxy.logging.maxsize.button.label "Beállít">
<!ENTITY foxyproxy.logging.maxsize.button.accesskey "B">
<!ENTITY foxyproxy.logging.maxsize.button.tooltip "Sets the maximum number of log entries before the log wraps to the beginning">
<!ENTITY foxyproxy.random.label "Load URLs through random proxies (ignore all patterns and priorities)">
<!ENTITY foxyproxy.random.accesskey "R">
<!ENTITY foxyproxy.random.tooltip "Load URLs through random proxies (ignore all patterns and priorities)">
<!ENTITY foxyproxy.random.includedirect.label "Include proxies configured as direct internet connections">
<!ENTITY foxyproxy.random.includedirect.accesskey "I">
<!ENTITY foxyproxy.random.includedirect.tooltip "Proxies configured as direct internet connections are included in random proxy selection">
<!ENTITY foxyproxy.random.includedisabled.label "Include disabled proxies">
<!ENTITY foxyproxy.random.includedisabled.accesskey "D">
<!ENTITY foxyproxy.random.includedisabled.tooltip "Proxies configured as disabled are included in random proxy selection">
<!ENTITY foxyproxy.random.settings.label "Random Proxy Selection">
<!ENTITY foxyproxy.random.settings.accesskey "R">
<!ENTITY foxyproxy.random.settings.tooltip "Settings which affect random proxy selection">
<!ENTITY foxyproxy.tab.autoadd.label "AutoAdd">
<!ENTITY foxyproxy.tab.autoadd.accesskey "A">
<!ENTITY foxyproxy.tab.autoadd.tooltip "Manage AutoAdd Settings">
<!ENTITY foxyproxy.autoadd.description "Specify a pattern that identifies blocked websites. When the pattern is found on a page, a pattern matching that website&apos;s URL is automatically added to a proxy and optionally reloaded. This prevents you from having to proactively identify all blocked websites.">
<!ENTITY foxyproxy.autoadd.pattern.label "Pattern to identify blocked websites">
<!ENTITY foxyproxy.autoadd.pattern.accesskey "P">
<!ENTITY foxyproxy.autoadd.pattern.tooltip "Pattern that identifies blocked websites">
<!ENTITY foxyproxy.autoadd.wildcard.example.label "Example: *You are not authorized to view this page*">
<!ENTITY foxyproxy.autoadd.regex.example.label "Example: .*Site.*has been blocked.*">
<!ENTITY foxyproxy.autoadd.proxy.label "Proxy to which patterns are automatically added">
<!ENTITY foxyproxy.autoadd.proxy.accesskey "P">
<!ENTITY foxyproxy.autoadd.proxy.tooltip "Specify the proxy to which URLs are automatically added">
<!ENTITY foxyproxy.pattern.template.label "URL Pattern Template">
<!ENTITY foxyproxy.pattern.template.accesskey "U">
<!ENTITY foxyproxy.pattern.template.tooltip "URL Pattern Template">
<!ENTITY foxyproxy.pattern.template.example.label1 "Example for ">
<!ENTITY foxyproxy.pattern.template.example.label2 "http://fred:secret@mail.foo.com:8080/inbox/msg102.htm#subject?style=elegant">
<!ENTITY foxyproxy.pattern.template.currenturl.label "Current URL">
<!ENTITY foxyproxy.pattern.template.currenturl.accesskey "C">
<!ENTITY foxyproxy.pattern.template.currenturl.tooltip "URL in the address bar">
<!ENTITY foxyproxy.pattern.template.generatedpattern.label "Generated Pattern">
<!ENTITY foxyproxy.pattern.template.generatedpattern.accesskey "G">
<!ENTITY foxyproxy.pattern.template.generatedpattern.tooltip "Dynamically generated pattern">
<!ENTITY foxyproxy.autoadd.reload.label "Reload the page after pattern is added to proxy">
<!ENTITY foxyproxy.autoadd.reload.accesskey "R">
<!ENTITY foxyproxy.autoadd.reload.tooltip "Automatically reload the page after the pattern is added to a proxy">
<!ENTITY foxyproxy.autoadd.notify.label "Notify me when AutoAdd is activated">
<!ENTITY foxyproxy.autoadd.notify.accesskey "N">
<!ENTITY foxyproxy.autoadd.notify.tooltip "Informs you when a page is blocked &amp; the URL pattern is added to a proxy">
<!ENTITY foxyproxy.graphics "Graphic design and images by">
<!ENTITY foxyproxy.website "Website by">
<!ENTITY foxyproxy.contributions "Contributions by">
<!ENTITY foxyproxy.pacloadnotification.label "Notify me about proxy auto-configuration file loads">
<!ENTITY foxyproxy.pacloadnotification.accesskey "L">
<!ENTITY foxyproxy.pacloadnotification.tooltip "Display a popup when a PAC file loads">
<!ENTITY foxyproxy.pacerrornotification.label "Notify me about proxy auto-configuration file errors">
<!ENTITY foxyproxy.pacerrornotification.accesskey "E">
<!ENTITY foxyproxy.pacerrornotification.tooltip "Display a popup when encountering PAC file errors">
<!ENTITY foxyproxy.toolsmenu.label "Show icon in the Firefox tools menu">
<!ENTITY foxyproxy.toolsmenu.accesskey "T">
<!ENTITY foxyproxy.toolsmenu.tooltip "Show icon in the Firefox tools menu">
<!ENTITY foxyproxy.tip.label "Tip">
<!ENTITY foxyproxy.pactips.popup.height "165px">
<!ENTITY foxyproxy.pactips.popup.width "400px">
<!ENTITY foxyproxy.pactip1.label "For PAC files stored on a local hard drive, use the file:// scheme. For example, file://c:/path/proxy.pac on Windows or file:///home/users/joe/proxy.pac on Unix/Linux/Mac.">
<!ENTITY foxyproxy.pactip2.label "For PAC files on an ftp server, use the ftp:// scheme. For example, ftp://leahscape.com/path/proxy.pac">
<!ENTITY foxyproxy.pactip3.label "You can also use http://, https://, and any other supported scheme.">
<!ENTITY foxyproxy.contextmenu.label "Show icon in the context-menu">
<!ENTITY foxyproxy.contextmenu.accesskey "C">
<!ENTITY foxyproxy.contextmenu.tooltip "Show icon in the context-menu">
<!ENTITY foxyproxy.quickadd.desc1 "QuickAdd adds a dynamic URL pattern to a proxy when you press Alt-F2. It is practical alternative to AutoAdd. Customize the Alt-F2 shortcut with the ">
<!ENTITY foxyproxy.keyconfig.label "KeyConfig">
<!ENTITY foxyproxy.quickadd.desc2 "extension">
<!ENTITY foxyproxy.quickadd.label "QuickAdd">
<!ENTITY foxyproxy.quickadd.accesskey "Q">
<!ENTITY foxyproxy.quickadd.tooltip "Manage QuickAdd Settings">
<!ENTITY foxyproxy.quickadd.notify.label "Notify me when QuickAdd is activated">
<!ENTITY foxyproxy.quickadd.notify.accesskey "N">
<!ENTITY foxyproxy.quickadd.notify.tooltip "Display a popup when QuickAdd is activated">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.label "Notify me when QuickAdd is canceled">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.label2 "QuickAdd is automatically canceled when QuickAdd is activated through Alt-F2, and the current URL in the address bar already matches an existing proxy&apos;s whitelist pattern. In this way duplicate patterns, which can clutter your configuration, are prevented. This setting does not enable/disable cancelation; rather, it toggles notification when cancelation occurs.">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.accesskey "C">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.tooltip "Display a popup when QuickAdd is activated but canceled">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.popup.width "400px">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.popup.height "130px">
<!ENTITY foxyproxy.whatsthis "What&apos;s This?">
<!ENTITY foxyproxy.quickadd.prompt.label "Prompt for editing and confirmation before adding pattern to proxy">
<!ENTITY foxyproxy.quickadd.prompt.accesskey "P">
<!ENTITY foxyproxy.quickadd.prompt.tooltip "Prompt for editing and confirmation before adding pattern to proxy">
<!ENTITY foxyproxy.quickadd.proxy.label "Proxy to which pattern is added">
<!ENTITY foxyproxy.quickadd.proxy.accesskey "P">
<!ENTITY foxyproxy.quickadd.proxy.tooltip "Choose proxy to which pattern will be added">
<!ENTITY foxyproxy.bypasscache.label "Bypass Firefox cache when loading">
<!ENTITY foxyproxy.bypasscache.accesskey "B">
<!ENTITY foxyproxy.bypasscache.tooltip "Firefox cache is ignored">
<!ENTITY foxyproxy.advancedmenus.label "Use Advanced Menus">
<!ENTITY foxyproxy.advancedmenus.accesskey "M">
<!ENTITY foxyproxy.advancedmenus.tooltip "Use advanced menus (FoxyProxy 2.2-style)">
<!ENTITY foxyproxy.importsettings.label "Import settings">
<!ENTITY foxyproxy.importsettings.accesskey "I">
<!ENTITY foxyproxy.importsettings.tooltip "Import settings from a file">
<!ENTITY foxyproxy.exportsettings.label "Export current settings">
<!ENTITY foxyproxy.exportsettings.accesskey "E">
<!ENTITY foxyproxy.exportsettings.tooltip "Export current settings to file">
<!ENTITY foxyproxy.importlist.label "Import list of proxies">
<!ENTITY foxyproxy.importlist.accesskey "I">
<!ENTITY foxyproxy.importlist.tooltip "Import a text file list of proxies">
<!ENTITY foxyproxy.wildcard.reference.label "Wildcard Reference">
<!ENTITY foxyproxy.wildcard.reference.accesskey "W">
<!ENTITY foxyproxy.wildcard.reference.tooltip "Wildcard Reference">
<!ENTITY foxyproxy.wildcard.reference.subtitle.label "The asterisk (*) matches zero or more characters, and the question mark (?) matches any single character">
<!ENTITY foxyproxy.wildcard.reference.mistakes "Common Mistakes When Writing Wildcard Patterns">
<!ENTITY foxyproxy.wildcard.reference.goal.label "Goal">
<!ENTITY foxyproxy.wildcard.reference.goal1.label "Match all pages in MySpace&apos;s www subdomain">
<!ENTITY foxyproxy.wildcard.reference.goal2.label "Match the local PC">
<!ENTITY foxyproxy.wildcard.reference.goal3.label "Match all subdomains and pages at abc.com">
<!ENTITY foxyproxy.wildcard.reference.goal4.label "Match all pages in the a.foo.com domain but not b.foo.com">
<!ENTITY foxyproxy.wildcard.reference.correct.label "Correct">
<!ENTITY foxyproxy.wildcard.reference.correct2.label "Must be two patterns">
<!ENTITY foxyproxy.wildcard.reference.incorrect.label "Incorrect">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason.label "Reason Why It&apos;s Incorrect">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason1.label "Since there are no wildcards, only the home page is matched">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason2.label "FoxyProxy doesn&apos;t understand this kind of syntax">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason3.label "There are no wildcards">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason4.label "There are no wildcards">
<!ENTITY foxyproxy.wildcard.reference.popup.height "350px">
<!ENTITY foxyproxy.logging.noURLs.label "Do not store or display URLs">
<!ENTITY foxyproxy.logging.noURLs.accesskey "U">
<!ENTITY foxyproxy.logging.noURLs.tooltip "URLs aren&apos;t stored in RAM or on disk">
<!ENTITY foxyproxy.ok.label "OK">
<!ENTITY foxyproxy.ok.accesskey "O">
<!ENTITY foxyproxy.ok.tooltip "Close Window">
<!ENTITY foxyproxy.pattern.template.reference.label "Pattern Template Reference">
<!ENTITY foxyproxy.pattern.template.reference.accesskey "T">
<!ENTITY foxyproxy.pattern.template.reference.tooltip "Pattern Template Reference">
<!ENTITY foxyproxy.pattern.template.reference.subtitle.label "URL pattern templates define the format with which URLs are QuickAdded or AutoAdded to proxies. Templates support the following special strings which, when QuickAdd or AutoAdd are activated, are substituted with the corresponding URL component in the address bar.">
<!ENTITY foxyproxy.pattern.template.reference.specialstring.label "Special String">
<!ENTITY foxyproxy.pattern.template.reference.subststring.label "Substituted With">
<!ENTITY foxyproxy.pattern.template.reference.example.label "Example">
<!ENTITY foxyproxy.pattern.template.reference.scheme.label "protocol">
<!ENTITY foxyproxy.pattern.template.reference.username.label "username">
<!ENTITY foxyproxy.pattern.template.reference.password.label "password">
<!ENTITY foxyproxy.pattern.template.reference.userpass.label "username &amp; password with &quot;:&quot; &amp; &quot;@&quot;">
<!ENTITY foxyproxy.pattern.template.reference.host.label "host">
<!ENTITY foxyproxy.pattern.template.reference.port.label "port">
<!ENTITY foxyproxy.pattern.template.reference.hostport.label "host &amp; port with &quot;:&quot;">
<!ENTITY foxyproxy.pattern.template.reference.prepath.label "string before the path">
<!ENTITY foxyproxy.pattern.template.reference.path.label "path (includes filename)">
<!ENTITY foxyproxy.pattern.template.reference.directory.label "directory">
<!ENTITY foxyproxy.pattern.template.reference.filebasename.label "file basename">
<!ENTITY foxyproxy.pattern.template.reference.fileextension.label "file extension">
<!ENTITY foxyproxy.pattern.template.reference.filename.label "complete filename">
<!ENTITY foxyproxy.pattern.template.reference.ref.label "part after the &quot;#&quot;">
<!ENTITY foxyproxy.pattern.template.reference.query.label "part after the &quot;?&quot;">
<!ENTITY foxyproxy.pattern.template.reference.spec.label "complete URL">
<!ENTITY foxyproxy.pattern.template.reference.popup.height "400px">
<!ENTITY foxyproxy.pattern.template.reference.popup.width "800px">
<!ENTITY foxyproxy.notifications.label "Notifications">
<!ENTITY foxyproxy.notifications.accesskey "N">
<!ENTITY foxyproxy.notifications.tooltip "Notification Settings">
<!ENTITY foxyproxy.indicators.label "Indicators">
<!ENTITY foxyproxy.indicators.accesskey "I">
<!ENTITY foxyproxy.indicators.tooltip "Indicator Settings">
<!ENTITY foxyproxy.misc.label "Miscellaneous">
<!ENTITY foxyproxy.misc.accesskey "M">
<!ENTITY foxyproxy.misc.tooltip "Miscellaneous Settings">
<!ENTITY foxyproxy.animatedicons.label "Animate icons when this proxy is in use">
<!ENTITY foxyproxy.animatedicons.accesskey "A">
<!ENTITY foxyproxy.animatedicons.tooltip "Animate icons when this proxy active (Global Settings-&gt;Animations must also be checked)">
<!ENTITY foxyproxy.statusbaractivation.label "Statusbar Activation">
<!ENTITY foxyproxy.statusbaractivation.accesskey "S">
<!ENTITY foxyproxy.statusbaractivation.tooltip "Statusbar Activation Settings">
<!ENTITY foxyproxy.toolbaractivation.label "Toolbar Activation">
<!ENTITY foxyproxy.toolbaractivation.accesskey "T">
<!ENTITY foxyproxy.toolbaractivation.tooltip "Toolbar Activation Settings">
<!ENTITY foxyproxy.leftclicksb.label "Left-click">
<!ENTITY foxyproxy.leftclicksb.accesskey "L">
<!ENTITY foxyproxy.leftclicksb.tooltip "Action to take when left-clicking FoxyProxy in status bar">
<!ENTITY foxyproxy.middleclicksb.label "Middle-click">
<!ENTITY foxyproxy.middleclicksb.accesskey "M">
<!ENTITY foxyproxy.middleclicksb.tooltip "Action to take when middle-clicking FoxyProxy in status bar">
<!ENTITY foxyproxy.rightclicksb.label "Right-click">
<!ENTITY foxyproxy.rightclicksb.accesskey "R">
<!ENTITY foxyproxy.rightclicksb.tooltip "Action to take when right-clicking FoxyProxy in status bar">
<!ENTITY foxyproxy.leftclicktb.label "Left-click">
<!ENTITY foxyproxy.leftclicktb.accesskey "L">
<!ENTITY foxyproxy.leftclicktb.tooltip "Action to take when left-clicking FoxyProxy in toolbar">
<!ENTITY foxyproxy.middleclicktb.label "Middle-click">
<!ENTITY foxyproxy.middleclicktb.accesskey "M">
<!ENTITY foxyproxy.middleclicktb.tooltip "Action to take when middle-clicking FoxyProxy in toolbar">
<!ENTITY foxyproxy.rightclicktb.label "Right-click">
<!ENTITY foxyproxy.rightclicktb.accesskey "R">
<!ENTITY foxyproxy.rightclicktb.tooltip "Action to take when right-clicking FoxyProxy in toolbar">
<!ENTITY foxyproxy.click.options "Show options dialog">
<!ENTITY foxyproxy.click.cycle "Cycles through modes">
<!ENTITY foxyproxy.click.contextmenu "Show context menu">
<!ENTITY foxyproxy.click.reloadcurtab "Reload current tab">
<!ENTITY foxyproxy.click.reloadtabsinbrowser "Reload all tabs in current browser">
<!ENTITY foxyproxy.click.reloadtabsinallbrowsers "Reload all tabs in all browsers">
<!ENTITY foxyproxy.click.removeallcookies "Remove all cookies">
<!ENTITY foxyproxy.includeincycle.label "Include this proxy when cycling proxies by clicking on statusbar or toolbar (Global Settings-&gt;Statusbar/Toolbar Activation-&gt;Cycle through modes must be selected)">
<!ENTITY foxyproxy.includeincycle.accesskey "I">
<!ENTITY foxyproxy.includeincycle.tooltip "Include this proxy when clicking on the statusbar/toolbar">
<!ENTITY foxyproxy.changes.msg1 "Help! Where are settings for HTTP, SSL, FTP, Gopher, and SOCKS?">
<!ENTITY foxyproxy.newGUI.popup.height "270px">
<!ENTITY foxyproxy.newGUI.popup.width "400px">
<!ENTITY foxyproxy.newGUI1.label "The old FoxyProxy Proxy Settings screen was based on and nearly identical to Firefox&apos;s Connection Settings dialog, which in turn was nearly identical to the Proxy Settings in the ancient Mosaic 2.1.1 browser from 1996. The problem with all of these screens is their limited ability to route traffic by protocol. 21st century browsers like Firefox handle many more protocols than HTTP, SSL, FTP, and GOPHER. Clearly, these old screens would be unwieldy if they attempted to include every possible protocol.">
<!ENTITY foxyproxy.newGUI2.label "Since FoxyProxy already enables traffic routing by protocol with wildcard and regular expression patterns, the listing of protocols on this screen is unnecessary. As of version 2.5, FoxyProxy has removed this protocol list from the Proxy Settings GUI. However, this does not reduce functionality. It makes for a simpler interface. If you need to route traffic by protocol, you should define whitelist and blacklist patterns with careful attention to the scheme/protocol portion of the pattern (e.g., ftp://*.yahoo.com/*, *://leahscape.com/*, etc.)">
<!ENTITY foxyproxy.newGUI4.label "Click here for more information.">
<!ENTITY foxyproxy.error.msg.label "Hibaüzenet">
<!ENTITY foxyproxy.pac.result.label "PAC Result">
<!ENTITY foxyproxy.options.width "666">
<!ENTITY foxyproxy.options.height "477">

View File

@ -0,0 +1,134 @@
extensions.foxyproxy@eric.h.jung.description=FoxyProxy
foxyproxy=FoxyProxy
tor=Tor
privoxy=Privoxy
settings.error=Error reading settings
error=Error
welcome=Welcome to FoxyProxy!
yes=Igen
no=Nem
disabled=Letiltva
torwiz.configure=Would you like to configure FoxyProxy for use with Tor?
torwiz.with.without.privoxy=Are you using Tor with Privoxy or without?
torwiz.with=with
torwiz.without=without
torwiz.privoxy.not.required=Please note: as of Firefox 1.5, Privoxy is no longer needed to use Firefox with Tor. Privoxy adds value such as content filtering, but it is not strictly necessary for use with Firefox 1.5+ and Tor. Would you still like Firefox to use Tor via Privoxy?
torwiz.port=Please enter the port on which %S is listening. If you don't know, use the default.
torwiz.nan=That is not a number.
torwiz.proxy.notes=Proxy through the Tor Network - http://tor.eff.org
torwiz.google.mail=Google Mail
torwiz.pattern=http://*mail.google.com/*
torwiz.congratulations=Congratulations! FoxyProxy has been configured for use with Tor. Please ensure Tor is running before visiting URLs which you've specified to use the Tor network. Additionally, if you've configured FoxyProxy to use Privoxy, please ensure it is also running.
torwiz.cancelled=The FoxyProxy Tor Wizard has been cancelled.
mode.patterns.label=Use proxies based on their pre-defined patterns and priorities
mode.patterns.accesskey=U
mode.patterns.tooltip=Use proxies based on their pre-defined patterns and priorities
mode.custom.label=Use proxy "%S" for all URLs
mode.custom.tooltip=Use proxy "%S" for all URLs
mode.disabled.label=Completely disable FoxyProxy
mode.disabled.accesskey=D
mode.disabled.tooltip=Completely disable FoxyProxy
more.label=Több
more.accesskey=T
more.tooltip=Részletes beállítás
invalid.url=The URL specified for automatic proxy configuration is not a valid URL.
protocols.error=Please specify one or more protocols for the proxy.
noport2=A port must be specified for the host.
nohost2=A host name must be specified with the port.
nohostport=Host name and port must be specified.
torwiz.nopatterns=You didn't enter any whitelisted (inclusive) URL patterns. This means the Tor network won't be used. Continue anyway?
months.long.1=január
months.short.1=jan
months.long.2=február
months.short.2=feb
months.long.3=március
months.short.3=már
months.long.4=április
months.short.4=ápr
months.long.5=május
months.short.5=máj
months.long.6=június
months.short.6=jún
months.long.7=úlius
months.short.7=júl
months.long.8=augusztus
months.short.8=aug
months.long.9=szpetember
months.short.9=sze
months.long.10=október
months.short.10=okt
months.long.11=november
months.short.11=nov
months.long.12=december
months.short.12=dec
days.long.1=vasárnap
days.short.1=vas
days.long.2=hétfő
days.short.2=hét
days.long.3=kedd
days.short.3=ked
days.long.4=szerda
days.short.4=sze
days.long.5=csütörtök
days.short.5=csü
days.long.6=péntek
days.short.6=pén
days.long.7=szombat
days.short.7=szo
timeformat=yyyy. mmm dd HH:nn:ss:zzz
file.select=Select the file in which to store the settings
manual=Kézi
auto=Automatikus
direct=Közvetlen
delete.proxy.confirm=Delete proxy: are you sure?
pattern.required=A pattern is required.
pattern.invalid.regex=%S is not a valid regular expression.
proxy.error.for.url=Error determining proxy for %S
proxy.default.settings.used=FoxyProxy not used for this URL - default Firefox connection settings were used
proxy.all.urls=All URLs were configured to use this proxy
pac.status=FoxyProxy PAC Status
pac.status.loadfailure=Failed to Load PAC for Proxy "%S"
pac.status.success=Loaded PAC for Proxy "%S"
pac.status.error=Error in PAC for Proxy "%S"
error.noload=Error. Please contact the FoxyProxy development team. No private data is leaking, but the resource will not load. Exception is %S
proxy.name.required=Please enter a name for this proxy on the General Tab.
proxy.default=Alapértelmezett
proxy.default.notes=These are the settings that are used when no patterns match a URL.
proxy.default.match.name=Összes
delete.proxy.default=You cannot delete this proxy.
copy.proxy.default=You cannot copy this proxy.
logg.maxsize.change=This will clear the log. Continue?
logg.maxsize.maximum=Maximum recommended size is 9999. Higher amounts will consume more memory and may affect performance. Continue anyway?
proxy.random=Proxy was randomly selected
mode.random.label=Use random proxies for all URLs (ignore all patterns and priorities)
mode.random.accesskey=R
mode.random.tooltip=Load URLs through random proxies (ignore all patterns and priorities)
random=Véletlenszerű
random.applicable=This setting only applies when mode is "Use random proxies for all URLs (ignore all patterns and priorities)"
superadd.error=Configuration error: %S has been disabled.
superadd.notify=%S proxy
superadd.url.added=Pattern %S added to proxy "%S"
autoadd.pattern.label=Dynamic AutoAdd Pattern
quickadd.pattern.label=Dynamic QuickAdd Pattern
torwiz.proxydns=Would you like DNS requests to go through the Tor network? If you don't understand this question, click "yes"
superadd.verboten=%S cannot be enabled because all proxies are either DIRECT mode or disabled.
autoadd.notice=Please note: AutoAdd affects the time in which a webpage loads. The more complex your pattern and the larger the webpage, the longer AutoAdd takes to process. If you experience significant delays, please disable AutoAdd.\n\nYou are encouraged to use QuickAdd instead of AutoAdd.
autoadd.notice2=
autoconfurl.test.success=The PAC was found, loaded, and successfully parsed.
autoconfurl.test.fail=There was a problem loading, finding, or parsing the PAC:\nHTTP Status Code: %S\nException: %S
none=None
delete.settings.ask=Do you want to delete the FoxyProxy settings stored at %S?
delete.settings.confirm=%S will be deleted when all browsers are closed.
no.wildcard.characters=The pattern has no wildcard characters. This means "%S" will be matched exactly. It is unusual for FoxyProxy to be used in this manner, and this likely means there is a mistake in the pattern or you don't understand how to define FoxyProxy patterns. Continue anyway?
message.stop=Do not show this message again
log.save=Save Log
log.saved2=Log has been saved to %S. View now?
log.nourls.url=Not logged
log.scrub=Clean existing log entries of URLs?
no.white.patterns=You didn't enter any whitelisted (inclusive) URL patterns. This means the proxy won't be used. Continue anyway?
quickadd.quickadd.canceled=QuickAdd has been canceled because the current URL already matches the existing pattern named "%S" in proxy "%S"
quickadd.nourl=Unable to get current URL
cookies.allremoved=All cookies removed
route.error=Error while determining which host to use for proxying
route.exception=Exception while determinig which host to use for proxying %S
see.log=Please see log for more information.

View File

@ -0,0 +1,55 @@
<!-- switched from xhtml to html because of BabelZilla WTS adds extraneous html tags on locale download -->
<html>
<head>
<style type="text/css">
table {
border-width: 0px;
border-spacing: 2px;
border-style: none;
border-color: white;
border-collapse: separate;
background-color: rgb(250, 240, 230);
font-size: x-small;
font-family: verdana, sans-serif;
}
table td,table th {
border-width: 1px;
padding: 1px;
border-style: groove;
border-color: green;
background-color: rgb(250, 240, 230);
vertical-align: top;
font-size: x-small;
font-family: verdana, sans-serif;
}
p {background-color: white; font-size: x-small; font-family: verdana, sans-serif;}
body {font-family: verdana, sans-serif;}
h3 {font-size: small;}
h4 {font-size: x-small;}
</style>
</head>
<body>
<h3>URL Patterns</h3>
<p>Before Firefox loads a URL, Firefox asks FoxyProxy if a proxy should be used.
FoxyProxy answers this question by attempting to match the current URL with all of the URL patterns you define below.
The simplest way to specify patterns is with wildcards.</p>
<h4><a name="wildcards">Wildcards</a></h4>
<p>Wildcards are pervasive throughout computing; you've most likely seen
them before. The asterisk (*) substitutes as a wildcard character for zero or more characters,
and the question mark (?) substitutes as a wildcard character for any one character.
</p>
<p>More advanced matching rules are possible using regular expressions. For details, click the "Help Contents" button.</p>
<h4>Wildcard Examples</h4>
<table>
<thead><tr><th>URL Pattern</th><th>Some Matches</th><th>Some Non-Matches</th></tr></thead>
<tr><td>*://*.yahoo.com/*</td><td>Everything in Yahoo's domain</td><td>http://mail.google.com/</td></tr>
<tr><td>*://mail.yahoo.com/*</td><td>http://mail.yahoo.com/<br/>http://mail.yahoo.com/clownshoes/<br/>http://mail.yahoo.com/inbox/123.html<br/>ftp://mail.yahoo.com</td><td>http://maps.yahoo.com</td></tr>
<tr><td>http://??.wikipedia.org/wiki/Clown</td><td>http://en.wikipedia.org/wiki/Clown<br/>http://de.wikipedia.org/wiki/Clown<br/>http://cs.wikipedia.org/wiki/Clown</td><td>https://en.wikipedia.org/wiki/Clown<br/>http://de.wikipedia.org/wiki/Clown/<br/>ftp://en.wikipedia.org/wiki/Clown</td></tr>
<tr><td>http://digg.com/</td><td>http://digg.com/</td><td>http://digg.com<br/>http://www.digg.com/</td></tr>
<tr><td>*://*.asimov.???/*</td><td>ftp://ftp.asimov.net/<br/>ftp://ftp.asimov.com/theory.html<br/>http://bear.asimov.net/mom/<br/>https://isaac.asimov.org/hercules<br/>gopher://asimov.net/</td>
<td>ftp://ftp.asimov.co.uk<br/>http://isaac.home.com/tin.php</td></tr>
<tr><td>*</td><td><i>Matches everything</i></td><td>&nbsp;</td></tr>
</table>
</body>
</html>

View File

@ -0,0 +1,427 @@
<!ENTITY foxyproxy.label "FoxyProxy">
<!ENTITY foxyproxy.accesskey "F">
<!ENTITY foxyproxy.tooltip "FoxyProxy">
<!ENTITY foxyproxy.optionsdialog.label "Opzioni di FoxyProxy">
<!ENTITY foxyproxy.options.label "Generali">
<!ENTITY foxyproxy.options.accesskey "G">
<!ENTITY foxyproxy.options.tooltip "Accesso alla finestra delle opzioni generali">
<!ENTITY foxyproxy.tree.pickertooltiptext.label "Fare clic per selezionare le colonne da visualizzare">
<!ENTITY foxyproxy.proxy.name.label "Nome">
<!ENTITY foxyproxy.proxy.name.accesskey "N">
<!ENTITY foxyproxy.proxy.name.tooltip "Inserire un nome">
<!ENTITY foxyproxy.proxy.notes.label "Nota">
<!ENTITY foxyproxy.proxy.notes.accesskey "o">
<!ENTITY foxyproxy.proxy.notes.tooltip "Inserire una nota">
<!ENTITY foxyproxy.pattern.label "Modello corrispondente">
<!ENTITY foxyproxy.pattern.type.label "Tipo di modello corrispondente">
<!ENTITY foxyproxy.whitelist.blacklist.label "Modello permesso/non permesso">
<!ENTITY foxyproxy.pattern.name.label "Nome modello">
<!ENTITY foxyproxy.pattern.name.accesskey "N">
<!ENTITY foxyproxy.pattern.name.tooltip "Nome del modello corrispondente">
<!ENTITY foxyproxy.url.pattern.label "URL o modello URL">
<!ENTITY foxyproxy.url.pattern.accesskey "U">
<!ENTITY foxyproxy.url.pattern.tooltip "URL o modello URL">
<!ENTITY foxyproxy.enabled.label "Attiva">
<!ENTITY foxyproxy.enabled.accesskey "v">
<!ENTITY foxyproxy.enabled.tooltip "Attiva/disattiva">
<!ENTITY foxyproxy.delete.selection.label "Elimina">
<!ENTITY foxyproxy.delete.selection.accesskey "E">
<!ENTITY foxyproxy.delete.selection.tooltip "Elimina l&apos;elemento attualmente selezionato">
<!ENTITY foxyproxy.edit.selection.label "Modifica">
<!ENTITY foxyproxy.edit.selection.accesskey "M">
<!ENTITY foxyproxy.edit.selection.tooltip "Modifica l&apos;elemento attualmente selezionato">
<!ENTITY foxyproxy.help.label "Contenuti guida">
<!ENTITY foxyproxy.help.accesskey "o">
<!ENTITY foxyproxy.help.tooltip "Accesso ai contenuti guida">
<!ENTITY foxyproxy.close.label "Chiudi">
<!ENTITY foxyproxy.close.accesskey "h">
<!ENTITY foxyproxy.close.tooltip "Chiudi la finestra">
<!ENTITY foxyproxy.about.label "Informazioni su">
<!ENTITY foxyproxy.about.accesskey "z">
<!ENTITY foxyproxy.about.tooltip "Accesso alla finestra delle informazioni">
<!ENTITY foxyproxy.online.label "Sito web">
<!ENTITY foxyproxy.online.accesskey "w">
<!ENTITY foxyproxy.online.tooltip "Visita il sito web di FoxyProxy">
<!ENTITY foxyproxy.tor.label "Configura Tor">
<!ENTITY foxyproxy.tor.accesskey "f">
<!ENTITY foxyproxy.tor.tooltip "Configurazione di Tor">
<!ENTITY foxyproxy.copy.selection.label "Copia selezione">
<!ENTITY foxyproxy.copy.selection.accesskey "C">
<!ENTITY foxyproxy.copy.selection.tooltip "Copia la selezione">
<!ENTITY foxyproxy.mode.label "Utilizzo">
<!ENTITY foxyproxy.auto.url.label "Configurazione automatica dei proxy (URL):">
<!ENTITY foxyproxy.auto.url.accesskey "u">
<!ENTITY foxyproxy.auto.url.tooltip "Specificare l&apos;URL del file PAC">
<!ENTITY foxyproxy.port.label "Porta">
<!ENTITY foxyproxy.port.accesskey "P">
<!ENTITY foxyproxy.port.tooltip "Porta da utilizzare">
<!ENTITY foxyproxy.socks.proxy.label "Proxy SOCKS:">
<!ENTITY foxyproxy.socks.proxy.accesskey "C">
<!ENTITY foxyproxy.socks.proxy.tooltip "URL dei proxy SOCKS">
<!ENTITY foxyproxy.socks.v4 "SOCKS v4/4a">
<!ENTITY foxyproxy.socks.v5 "SOCKS v5">
<!ENTITY foxyproxy.addeditpattern.title "Aggiunta/modifica di un modello">
<!ENTITY foxyproxy.wildcard.label "Carattere jolly">
<!ENTITY foxyproxy.wildcard.accesskey "j">
<!ENTITY foxyproxy.wildcard.tooltip "L&apos;URL o il modello URL usa caratteri jolly e non è un&apos;espressione regolare">
<!ENTITY foxyproxy.wildcard.example.label "Esempio: *mail.yahoo.com/*">
<!ENTITY foxyproxy.regex.label "Espressione regolare">
<!ENTITY foxyproxy.regex.accesskey "R">
<!ENTITY foxyproxy.regex.tooltip "L&apos;URL o il modello URL è un&apos;espressione regolare">
<!ENTITY foxyproxy.regex.example.label "Esempio: http?://.*\.mail\.yahoo\.com/.*">
<!ENTITY foxyproxy.version "Versione">
<!ENTITY foxyproxy.createdBy "Creata da:">
<!ENTITY foxyproxy.copyright "Copyright">
<!ENTITY foxyproxy.rights "Tutti i diritti riservati">
<!ENTITY foxyproxy.released "Estensione rilasciata sotto la licenza GPL">
<!ENTITY foxyproxy.thanks "Speciali ringraziamenti a:">
<!ENTITY foxyproxy.translations "Traduzioni:">
<!ENTITY foxyproxy.tab.general.label "Generali">
<!ENTITY foxyproxy.tab.general.accesskey "G">
<!ENTITY foxyproxy.tab.general.tooltip "Gestione delle opzioni generali dei proxy">
<!ENTITY foxyproxy.tab.proxy.label "Dettagli dei proxy">
<!ENTITY foxyproxy.tab.proxy.accesskey "R">
<!ENTITY foxyproxy.tab.proxy.tooltip "Gestione dei dettagli dei proxy">
<!ENTITY foxyproxy.tab.patterns.label "Modelli">
<!ENTITY foxyproxy.tab.patterns.accesskey "o">
<!ENTITY foxyproxy.tab.patterns.tooltip "Gestione dei modelli URL">
<!ENTITY foxyproxy.add.title "Impostazioni dei proxy">
<!ENTITY foxyproxy.pattern.description "Qui si possono aggiungere o eliminare URL per cui viene usato questo proxy">
<!ENTITY foxyproxy.pattern.matchtype.label "Elementi contenuti nel modello">
<!ENTITY foxyproxy.pattern.matchtype2.label "Il modello per identificare i siti web bloccati contiene">
<!ENTITY foxyproxy.pattern.template.matchtype.label "Il modello contiene">
<!ENTITY foxyproxy.pattern.whiteblack.label "Modelli permessi/non permessi">
<!ENTITY foxyproxy.add.option.direct.label "Connessione diretta ad internet">
<!ENTITY foxyproxy.add.option.direct.accesskey "D">
<!ENTITY foxyproxy.add.option.direct.tooltip "Non utilizzare alcun proxy bensì la connessione diretta ad internet">
<!ENTITY foxyproxy.add.option.manual.label "Configurazione manuale dei proxy">
<!ENTITY foxyproxy.add.option.manual.accesskey "m">
<!ENTITY foxyproxy.add.option.manual.tooltip "Definizione manuale della configurazione dei proxy">
<!ENTITY foxyproxy.add.new.pattern.label "Nuovo modello">
<!ENTITY foxyproxy.add.new.pattern.accesskey "u">
<!ENTITY foxyproxy.add.new.pattern.tooltip "Aggiunta di un nuovo modello">
<!ENTITY foxyproxy.menubar.file.label "File">
<!ENTITY foxyproxy.menubar.file.accesskey "F">
<!ENTITY foxyproxy.menubar.file.tooltip "Apre il menu &apos;File&apos;">
<!ENTITY foxyproxy.menubar.help.label "?">
<!ENTITY foxyproxy.menubar.help.accesskey "?">
<!ENTITY foxyproxy.menubar.help.tooltip "Apre il menu &apos;?&apos;">
<!ENTITY foxyproxy.mode.accesskey "U">
<!ENTITY foxyproxy.mode.tooltip "Selezionare come utilizzare FoxyProxy">
<!ENTITY foxyproxy.tab.proxies.label "Proxy">
<!ENTITY foxyproxy.tab.proxies.accesskey "P">
<!ENTITY foxyproxy.tab.proxies.tooltip "Gestione dei proxy">
<!ENTITY foxyproxy.tab.global.label "Avanzate">
<!ENTITY foxyproxy.tab.global.accesskey "v">
<!ENTITY foxyproxy.tab.global.tooltip "Gestione delle opzioni avanzate">
<!ENTITY foxyproxy.tab.logging.label "Registrazioni">
<!ENTITY foxyproxy.tab.logging.accesskey "z">
<!ENTITY foxyproxy.tab.logging.tooltip "Gestione delle opzioni delle registrazioni">
<!ENTITY foxyproxy.proxydns.label "Usa i proxy SOCKS per la ricerca dei DNS">
<!ENTITY foxyproxy.proxydns.accesskey "K">
<!ENTITY foxyproxy.proxydns.tooltip "La ricerca dei DNS avverrà attraverso proxy SOCKS">
<!ENTITY foxyproxy.proxydns.notice "Riavviare Firefox per rendere effettive le modifiche">
<!ENTITY foxyproxy.showstatusbaricon.label "Mostra icona nella barra di stato">
<!ENTITY foxyproxy.showstatusbaricon.accesskey "o">
<!ENTITY foxyproxy.showstatusbaricon.tooltip "L&apos;icona di FoxyProxy verrà visualizzata nella barra di stato">
<!ENTITY foxyproxy.showstatusbarmode.label "Mostra modalità (testo) nella barra di stato">
<!ENTITY foxyproxy.showstatusbarmode.accesskey "S">
<!ENTITY foxyproxy.showstatusbarmode.tooltip "Verrà mostrata la modalità (testo) di FoxyProxy nella barra di stato">
<!ENTITY foxyproxy.storagelocation.label "File .xml delle impostazioni">
<!ENTITY foxyproxy.storagelocation.accesskey "x">
<!ENTITY foxyproxy.storagelocation.tooltip "File .xml dove verranno salvate le impostazioni di FoxyProxy">
<!ENTITY foxyproxy.tab.logging.timestamp.label "Data/ora">
<!ENTITY foxyproxy.tab.logging.url.label "URL">
<!ENTITY foxyproxy.host.label "Nome del server">
<!ENTITY foxyproxy.host.accesskey "N">
<!ENTITY foxyproxy.host.tooltip "Nome del server">
<!ENTITY foxyproxy.clear.label "Svuota">
<!ENTITY foxyproxy.clear.accesskey "u">
<!ENTITY foxyproxy.clear.tooltip "Svuota">
<!ENTITY foxyproxy.refresh.label "Aggiorna">
<!ENTITY foxyproxy.refresh.accesskey "R">
<!ENTITY foxyproxy.refresh.tooltip "Aggiorna">
<!ENTITY foxyproxy.save.label "Salva">
<!ENTITY foxyproxy.save.accesskey "S">
<!ENTITY foxyproxy.save.tooltip "Salva">
<!ENTITY foxyproxy.addnewproxy.label "Nuovo proxy">
<!ENTITY foxyproxy.addnewproxy.accesskey "x">
<!ENTITY foxyproxy.addnewproxy.tooltip "Aggiungi un nuovo proxy">
<!ENTITY foxyproxy.whitelist.label "Modello permesso">
<!ENTITY foxyproxy.whitelist.accesskey "B">
<!ENTITY foxyproxy.whitelist.tooltip "Gli indirizzi web corrispondenti a questo modello verranno caricati attraverso questo proxy">
<!ENTITY foxyproxy.whitelist.description.label "Gli indirizzi web corrispondenti a questo modello verranno caricati attraverso questo proxy">
<!ENTITY foxyproxy.blacklist.label "Modello non permesso">
<!ENTITY foxyproxy.blacklist.accesskey "N">
<!ENTITY foxyproxy.blacklist.tooltip "Gli indirizzi web corrispondenti a questo modello NON verranno caricati attraverso questo proxy">
<!ENTITY foxyproxy.blacklist.description.label "Gli indirizzi web corrispondenti a questo modello NON verranno caricati attraverso questo proxy">
<!ENTITY foxyproxy.whiteblack.description.label "I modelli non permessi hanno la precedenza su quelli permessi: se un indirizzo web corrisponde sia ad un modello permesso che non permesso per lo stesso proxy, verrà escluso dal caricamento attraverso quel proxy">
<!ENTITY foxyproxy.usingPFF.label1 "Si sta utilizzando">
<!ENTITY foxyproxy.usingPFF.label2 "Portable Firefox">
<!ENTITY foxyproxy.usingPFF.accesskey "P">
<!ENTITY foxyproxy.usingPFF.tooltip "Fare clic qui se si sta utilizzando Portable Firefox">
<!ENTITY foxyproxy.socks.version.label "Versione SOCKS">
<!ENTITY foxyproxy.autopacurl.label "Indirizzo web auto PAC">
<!ENTITY foxyproxy.issocks.label "Proxy SOCKS">
<!ENTITY foxyproxy.issocks.accesskey "K">
<!ENTITY foxyproxy.issocks.tooltip "Selezionare questa opzione in caso si utilizzi un proxy SOCKS">
<!ENTITY foxyproxy.chinese.simplified "Cinese semplificato">
<!ENTITY foxyproxy.chinese.traditional "Cinese tradizionale">
<!ENTITY foxyproxy.croatian "Croato">
<!ENTITY foxyproxy.czech "Ceco">
<!ENTITY foxyproxy.danish "Danese">
<!ENTITY foxyproxy.dutch "Olandese">
<!ENTITY foxyproxy.english "Inglese">
<!ENTITY foxyproxy.english.british "Inglese (Inghilterra)">
<!ENTITY foxyproxy.french "Francese">
<!ENTITY foxyproxy.german "Tedesco">
<!ENTITY foxyproxy.greek "Greco">
<!ENTITY foxyproxy.hungarian "Ungherese">
<!ENTITY foxyproxy.italian "Italiano">
<!ENTITY foxyproxy.persian "Persiano">
<!ENTITY foxyproxy.polish "Polacco">
<!ENTITY foxyproxy.portugese.brazilian "Portoghese (Brasile)">
<!ENTITY foxyproxy.portugese.portugal "Portoghese (Portogallo)">
<!ENTITY foxyproxy.romanian "Romeno">
<!ENTITY foxyproxy.russian "Russo">
<!ENTITY foxyproxy.slovak "Slovacco">
<!ENTITY foxyproxy.spanish.spain "Spagnolo (Spagna)">
<!ENTITY foxyproxy.spanish.argentina "Spagnolo (Argentina)">
<!ENTITY foxyproxy.swedish "Svedese">
<!ENTITY foxyproxy.thai.thailand "Thailandese (Thailandia)">
<!ENTITY foxyproxy.turkish "Turco">
<!ENTITY foxyproxy.ukrainian "Ucraino">
<!ENTITY foxyproxy.your.language "Italiano">
<!ENTITY foxyproxy.your.name.here "Luana Di Muzio e Luca (aka l0stintranslation)">
<!ENTITY foxyproxy.moveup.label "Sposta su">
<!ENTITY foxyproxy.moveup.tooltip "Aumenta la priorità della selezione attuale">
<!ENTITY foxyproxy.moveup.accesskey "s">
<!ENTITY foxyproxy.movedown.label "Sposta giù">
<!ENTITY foxyproxy.movedown.tooltip "Diminuisci la priorità della selezione attuale">
<!ENTITY foxyproxy.movedown.accesskey "g">
<!ENTITY foxyproxy.autoconfurl.view.label "Visualizza">
<!ENTITY foxyproxy.autoconfurl.view.accesskey "V">
<!ENTITY foxyproxy.autoconfurl.view.tooltip "Visualizza il file di autoconfigurazione">
<!ENTITY foxyproxy.autoconfurl.test.label "Testa">
<!ENTITY foxyproxy.autoconfurl.test.accesskey "T">
<!ENTITY foxyproxy.autoconfurl.test.tooltip "Testa il file di autoconfigurazione">
<!ENTITY foxyproxy.autoconfurl.reload.label "Ricarica il file PAC ogni">
<!ENTITY foxyproxy.autoconfurl.reload.accesskey "R">
<!ENTITY foxyproxy.autoconfurl.reload.tooltip "Ricarica automaticamente il file PAC nell&apos;intervallo specificato">
<!ENTITY foxyproxy.minutes.label "minuti">
<!ENTITY foxyproxy.minutes.tooltip "minuti">
<!ENTITY foxyproxy.logging.maxsize.label "Dimensione massima">
<!ENTITY foxyproxy.logging.maxsize.accesskey "D">
<!ENTITY foxyproxy.logging.maxsize.tooltip "Numero massimo di registrazioni prima che queste ritornino all&apos;inizio">
<!ENTITY foxyproxy.logging.maxsize.button.label "Imposta">
<!ENTITY foxyproxy.logging.maxsize.button.accesskey "m">
<!ENTITY foxyproxy.logging.maxsize.button.tooltip "Imposta il numero massimo di registrazioni prima che queste ritornino all&apos;inizio">
<!ENTITY foxyproxy.random.label "Carica gli indirizzi web attraverso proxy casuali (ignora tutti i modelli e le priorità)">
<!ENTITY foxyproxy.random.accesskey "C">
<!ENTITY foxyproxy.random.tooltip "Carica gli indirizzi web attraverso proxy casuali (ignora tutti i modelli e le priorità)">
<!ENTITY foxyproxy.random.includedirect.label "Includi i proxy configurati come connessioni dirette ad internet">
<!ENTITY foxyproxy.random.includedirect.accesskey "y">
<!ENTITY foxyproxy.random.includedirect.tooltip "I proxy configurati come connessioni dirette ad internet verranno inclusi nella selezione casuale dei proxy">
<!ENTITY foxyproxy.random.includedisabled.label "Includi i proxy disattivati">
<!ENTITY foxyproxy.random.includedisabled.accesskey "D">
<!ENTITY foxyproxy.random.includedisabled.tooltip "I proxy configurati come disattivati verranno inclusi nella selezione casuale dei proxy">
<!ENTITY foxyproxy.random.settings.label "Selezione casuale dei proxy">
<!ENTITY foxyproxy.random.settings.accesskey "R">
<!ENTITY foxyproxy.random.settings.tooltip "Gestione della selezione casuale dei proxy">
<!ENTITY foxyproxy.tab.autoadd.label "Aggiunta automatica">
<!ENTITY foxyproxy.tab.autoadd.accesskey "c">
<!ENTITY foxyproxy.tab.autoadd.tooltip "Gestione delle opzioni di aggiunta automatica">
<!ENTITY foxyproxy.autoadd.description "Specificare un modello per identificare i siti bloccati. Quando tale modello viene trovato in un sito, il modello corrispondente all&apos;indirizzo web di quel sito viene automaticamente aggiunto ai proxy e facoltativamente ricaricato. Questo permette di non dovere identificare anticipatamente tutti i siti bloccati">
<!ENTITY foxyproxy.autoadd.pattern.label "Modello per identificare siti bloccati">
<!ENTITY foxyproxy.autoadd.pattern.accesskey "M">
<!ENTITY foxyproxy.autoadd.pattern.tooltip "Modello per identificare i siti bloccati">
<!ENTITY foxyproxy.autoadd.wildcard.example.label "Esempio: *non si è autorizzati a vedere questa pagina*">
<!ENTITY foxyproxy.autoadd.regex.example.label "Esempio: .*il sito. *è stato bloccato*">
<!ENTITY foxyproxy.autoadd.proxy.label "Proxy ai quali i modelli vengono aggiunti automaticamente">
<!ENTITY foxyproxy.autoadd.proxy.accesskey "P">
<!ENTITY foxyproxy.autoadd.proxy.tooltip "Specifica i proxy ai quali gli indirizzi web vengono aggiunti automaticamente">
<!ENTITY foxyproxy.pattern.template.label "Modello URL">
<!ENTITY foxyproxy.pattern.template.accesskey "U">
<!ENTITY foxyproxy.pattern.template.tooltip "Modello URL">
<!ENTITY foxyproxy.pattern.template.example.label1 "Esempio per">
<!ENTITY foxyproxy.pattern.template.example.label2 "http://fred:secret@mail.foo.com:8080/inbox/msg102.htm#subject?style=elegant">
<!ENTITY foxyproxy.pattern.template.currenturl.label "URL attuale">
<!ENTITY foxyproxy.pattern.template.currenturl.accesskey "a">
<!ENTITY foxyproxy.pattern.template.currenturl.tooltip "URL inserito nella barra degli indirizzi">
<!ENTITY foxyproxy.pattern.template.generatedpattern.label "Modello generato">
<!ENTITY foxyproxy.pattern.template.generatedpattern.accesskey "G">
<!ENTITY foxyproxy.pattern.template.generatedpattern.tooltip "Modello generato dinamicamente">
<!ENTITY foxyproxy.autoadd.reload.label "Ricarica la pagina dopo che il sito viene aggiunto al proxy">
<!ENTITY foxyproxy.autoadd.reload.accesskey "R">
<!ENTITY foxyproxy.autoadd.reload.tooltip "Ricarica automaticamente la pagina dopo essere stata aggiunta ad un proxy">
<!ENTITY foxyproxy.autoadd.notify.label "Notifica quando l&apos;opzione &apos;Aggiunta automatica&apos; è attivata">
<!ENTITY foxyproxy.autoadd.notify.accesskey "N">
<!ENTITY foxyproxy.autoadd.notify.tooltip "Informa quando una pagina è bloccata ed il modello URL viene aggiunto ad un proxy">
<!ENTITY foxyproxy.graphics "Grafica ed immagini di:">
<!ENTITY foxyproxy.website "Sito web di:">
<!ENTITY foxyproxy.contributions "Collaboratori:">
<!ENTITY foxyproxy.pacloadnotification.label "Notifica quando il file di configurazione automatica del proxy viene caricato">
<!ENTITY foxyproxy.pacloadnotification.accesskey "C">
<!ENTITY foxyproxy.pacloadnotification.tooltip "Un pop-up verrà visualizzato quando il file PAC verrà caricato">
<!ENTITY foxyproxy.pacerrornotification.label "Notifica quando il file di configurazione automatica del proxy restituisce errori">
<!ENTITY foxyproxy.pacerrornotification.accesskey "E">
<!ENTITY foxyproxy.pacerrornotification.tooltip "Un pop-up verrà visualizzato quando il file PAC restituirà errori">
<!ENTITY foxyproxy.toolsmenu.label "Mostra &apos;FoxyProxy&apos; nel menu &quot;Strumenti&quot; di Firefox">
<!ENTITY foxyproxy.toolsmenu.accesskey "F">
<!ENTITY foxyproxy.toolsmenu.tooltip "L&apos;elemento di menu &apos;FoxyProxy&apos; verrà mostrato nel menu &quot;Strumenti&quot; di Firefox">
<!ENTITY foxyproxy.tip.label "Suggerimento">
<!ENTITY foxyproxy.pactips.popup.height "200px">
<!ENTITY foxyproxy.pactips.popup.width "400px">
<!ENTITY foxyproxy.pactip1.label "Per un file PAC memorizzato su un disco locale utilizzare lo schema file://. Esempio: file://c:/path/proxy.pac con Windows o file:///home/users/joe/proxy.pac con Unix/Linux/Mac">
<!ENTITY foxyproxy.pactip2.label "Per un file PAC presente su un server ftp utilizzare lo schema ftp://. Esempio: ftp://leahscape.com/path/proxy.pac">
<!ENTITY foxyproxy.pactip3.label "È possibile utilizzare anche http://, https://, ed ogni altro schema supportato">
<!ENTITY foxyproxy.contextmenu.label "Mostra FoxyProxy nel menu contestuale">
<!ENTITY foxyproxy.contextmenu.accesskey "u">
<!ENTITY foxyproxy.contextmenu.tooltip "L&apos;elemento di menu &apos;FoxyProxy&apos; verrà mostrato nel menu contestuale">
<!ENTITY foxyproxy.quickadd.desc1 "L&apos;aggiunta rapida aggiunge un modello di URL dinamico ad un proxy alla pressione dei tasti Alt+F2. È una pratica alternativa all&apos;aggiunta automatica. È possibile personalizzare tale scorciatoia da tastiera tramite l&apos;estensione">
<!ENTITY foxyproxy.keyconfig.label "KeyConfig">
<!ENTITY foxyproxy.quickadd.desc2 "">
<!ENTITY foxyproxy.quickadd.label "Aggiunta rapida">
<!ENTITY foxyproxy.quickadd.accesskey "A">
<!ENTITY foxyproxy.quickadd.tooltip "Gestione delle opzioni di aggiunta rapida">
<!ENTITY foxyproxy.quickadd.notify.label "Avvisa quando l&apos;aggiunta rapida viene attivata">
<!ENTITY foxyproxy.quickadd.notify.accesskey "s">
<!ENTITY foxyproxy.quickadd.notify.tooltip "Un pop-up verrà visualizzato quando verrà attivata l&apos;aggiunta rapida">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.label "Avvisa quando l&apos;aggiunta rapida viene annullata">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.label2 "L&apos;aggiunta rapida viene annullata quando la si attiva tramite Alt+F2 e l&apos;URL attuale nella barra degli indirizzi corrisponde ad un modello di proxy permesso. In questo modo vengono evitati modelli duplicati. Questa impostazione non attiva/disattiva l&apos;annullamento, ma permette di visualizzare un avviso quando necessario">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.accesskey "u">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.tooltip "Un pop-up verrà visualizzato quando l&apos;aggiunta rapida verrà attivata ma annullata">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.popup.width "400px">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.popup.height "130px">
<!ENTITY foxyproxy.whatsthis "Informazioni su questa opzione">
<!ENTITY foxyproxy.quickadd.prompt.label "Chiedi conferma per la modifica o prima dell&apos;aggiunta di un modello al proxy">
<!ENTITY foxyproxy.quickadd.prompt.accesskey "C">
<!ENTITY foxyproxy.quickadd.prompt.tooltip "Chiedi conferma per la modifica o prima dell&apos;aggiunta di un modello al proxy">
<!ENTITY foxyproxy.quickadd.proxy.label "Proxy a cui verrà aggiunto il modello">
<!ENTITY foxyproxy.quickadd.proxy.accesskey "P">
<!ENTITY foxyproxy.quickadd.proxy.tooltip "Seleziona il proxy a cui verrà aggiunto il modello">
<!ENTITY foxyproxy.bypasscache.label "Non utilizzare la cache di Firefox durante il caricamento">
<!ENTITY foxyproxy.bypasscache.accesskey "N">
<!ENTITY foxyproxy.bypasscache.tooltip "La cache di Firefox non verrà utilizzata">
<!ENTITY foxyproxy.advancedmenus.label "Utilizza menu avanzati">
<!ENTITY foxyproxy.advancedmenus.accesskey "M">
<!ENTITY foxyproxy.advancedmenus.tooltip "Verranno utilizzati i menu avanzati (stile di FoxyProxy 2.2)">
<!ENTITY foxyproxy.importsettings.label "Importa impostazioni">
<!ENTITY foxyproxy.importsettings.accesskey "I">
<!ENTITY foxyproxy.importsettings.tooltip "Importa le impostazioni da un file">
<!ENTITY foxyproxy.exportsettings.label "Esporta impostazioni">
<!ENTITY foxyproxy.exportsettings.accesskey "E">
<!ENTITY foxyproxy.exportsettings.tooltip "Esporta le impostazioni attuali in un file">
<!ENTITY foxyproxy.importlist.label "Importa lista di proxy">
<!ENTITY foxyproxy.importlist.accesskey "m">
<!ENTITY foxyproxy.importlist.tooltip "Importa una lista di proxy da un file di testo">
<!ENTITY foxyproxy.wildcard.reference.label "Guida ai caratteri jolly">
<!ENTITY foxyproxy.wildcard.reference.accesskey "G">
<!ENTITY foxyproxy.wildcard.reference.tooltip "Guida ai caratteri jolly">
<!ENTITY foxyproxy.wildcard.reference.subtitle.label "L&apos;asterisco (*) equivale a più caratteri, il punto interrogativo (?) equivale al carattere singolo">
<!ENTITY foxyproxy.wildcard.reference.mistakes "Errori comuni nella scrittura di modelli contenenti caratteri jolly">
<!ENTITY foxyproxy.wildcard.reference.goal.label "Scopo">
<!ENTITY foxyproxy.wildcard.reference.goal1.label "Corrispondenza con tutte le pagine dei sottodominii di MySpace">
<!ENTITY foxyproxy.wildcard.reference.goal2.label "Corrispondenza con il computer locale">
<!ENTITY foxyproxy.wildcard.reference.goal3.label "Corrispondenza con tutti i sottodominii e le pagine di abc.com">
<!ENTITY foxyproxy.wildcard.reference.goal4.label "Corrispondenza con tutte le pagine del dominio a.foo.com, ma non con b.foo.com">
<!ENTITY foxyproxy.wildcard.reference.correct.label "Corretto">
<!ENTITY foxyproxy.wildcard.reference.correct2.label "Sono necessari due modelli">
<!ENTITY foxyproxy.wildcard.reference.incorrect.label "Non corretto">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason.label "Motivo per cui non è corretto">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason1.label "Non esistono caratteri jolly, quindi corrisponderà solo la pagina iniziale">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason2.label "Questo tipo di sintassi non è riconosciuta da FoxyProxy">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason3.label "Non esistono caratteri jolly">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason4.label "Non esistono caratteri jolly">
<!ENTITY foxyproxy.wildcard.reference.popup.height "370px">
<!ENTITY foxyproxy.logging.noURLs.label "Non memorizzare o visualizzare gli URL">
<!ENTITY foxyproxy.logging.noURLs.accesskey "N">
<!ENTITY foxyproxy.logging.noURLs.tooltip "Gli URL non verranno memorizzati">
<!ENTITY foxyproxy.ok.label "OK">
<!ENTITY foxyproxy.ok.accesskey "O">
<!ENTITY foxyproxy.ok.tooltip "Chiudi la finestra">
<!ENTITY foxyproxy.pattern.template.reference.label "Guida ai modelli">
<!ENTITY foxyproxy.pattern.template.reference.accesskey "G">
<!ENTITY foxyproxy.pattern.template.reference.tooltip "Guida ai modelli">
<!ENTITY foxyproxy.pattern.template.reference.subtitle.label "I modelli URL determinano con quale formato gli indirizzi web saranno aggiunti ai proxy tramite aggiunta rapida oppure automatica. I modelli supportano le seguenti stringhe speciali le quali, quando l&apos;aggiunta rapida o automatica è attivata, sono sostituite con le corrispondenti componenti di URL nella barra degli indirizzi">
<!ENTITY foxyproxy.pattern.template.reference.specialstring.label "Stringa speciale">
<!ENTITY foxyproxy.pattern.template.reference.subststring.label "Sostituito con">
<!ENTITY foxyproxy.pattern.template.reference.example.label "Esempio">
<!ENTITY foxyproxy.pattern.template.reference.scheme.label "protocollo">
<!ENTITY foxyproxy.pattern.template.reference.username.label "nome utente">
<!ENTITY foxyproxy.pattern.template.reference.password.label "password">
<!ENTITY foxyproxy.pattern.template.reference.userpass.label "nome utente e password con &quot;:&quot; &amp; &quot;@&quot;">
<!ENTITY foxyproxy.pattern.template.reference.host.label "server">
<!ENTITY foxyproxy.pattern.template.reference.port.label "porta">
<!ENTITY foxyproxy.pattern.template.reference.hostport.label "server e porta con &quot;:&quot;">
<!ENTITY foxyproxy.pattern.template.reference.prepath.label "stringa prima del percorso">
<!ENTITY foxyproxy.pattern.template.reference.path.label "percorso (include il nome del file)">
<!ENTITY foxyproxy.pattern.template.reference.directory.label "cartella">
<!ENTITY foxyproxy.pattern.template.reference.filebasename.label "nome del file">
<!ENTITY foxyproxy.pattern.template.reference.fileextension.label "estensione del file">
<!ENTITY foxyproxy.pattern.template.reference.filename.label "nome del file completo">
<!ENTITY foxyproxy.pattern.template.reference.ref.label "parte dopo &quot;#&quot;">
<!ENTITY foxyproxy.pattern.template.reference.query.label "parte dopo &quot;?&quot;">
<!ENTITY foxyproxy.pattern.template.reference.spec.label "indirizzo web completo">
<!ENTITY foxyproxy.pattern.template.reference.popup.height "400px">
<!ENTITY foxyproxy.pattern.template.reference.popup.width "800px">
<!ENTITY foxyproxy.notifications.label "Notifiche">
<!ENTITY foxyproxy.notifications.accesskey "o">
<!ENTITY foxyproxy.notifications.tooltip "Gestione delle opzioni delle notifiche">
<!ENTITY foxyproxy.indicators.label "Indicatori">
<!ENTITY foxyproxy.indicators.accesskey "I">
<!ENTITY foxyproxy.indicators.tooltip "Gestione delle opzioni degli indicatori">
<!ENTITY foxyproxy.misc.label "Varie">
<!ENTITY foxyproxy.misc.accesskey "V">
<!ENTITY foxyproxy.misc.tooltip "Gestione di opzioni varie">
<!ENTITY foxyproxy.animatedicons.label "Anima l&apos;icona nella barra di stato quando si utilizzano i proxy">
<!ENTITY foxyproxy.animatedicons.accesskey "A">
<!ENTITY foxyproxy.animatedicons.tooltip "L&apos;icona nella barra di stato si animerà quando si utilizzeranno i proxy">
<!ENTITY foxyproxy.statusbaractivation.label "Azioni da associare a clic del mouse sull&apos;icona nella barra di stato">
<!ENTITY foxyproxy.statusbaractivation.accesskey "b">
<!ENTITY foxyproxy.statusbaractivation.tooltip "Azioni da associare a clic del mouse sull&apos;icona di FoxyProxy nella barra di stato">
<!ENTITY foxyproxy.toolbaractivation.label "Azioni da associare a clic del mouse sull&apos;icona nella barra degli strumenti">
<!ENTITY foxyproxy.toolbaractivation.accesskey "z">
<!ENTITY foxyproxy.toolbaractivation.tooltip "Azioni da associare a clic del mouse sull&apos;icona di FoxyProxy nella barra degli strumenti">
<!ENTITY foxyproxy.leftclicksb.label "Con clic con tasto sinistro:">
<!ENTITY foxyproxy.leftclicksb.accesskey "s">
<!ENTITY foxyproxy.leftclicksb.tooltip "Azione da effettuare quando si fa clic con tasto sinistro del mouse">
<!ENTITY foxyproxy.middleclicksb.label "Con clic con tasto centrale:">
<!ENTITY foxyproxy.middleclicksb.accesskey "t">
<!ENTITY foxyproxy.middleclicksb.tooltip "Azione da effettuare quando si fa clic con tasto centrale del mouse">
<!ENTITY foxyproxy.rightclicksb.label "Con clic con tasto destro:">
<!ENTITY foxyproxy.rightclicksb.accesskey "d">
<!ENTITY foxyproxy.rightclicksb.tooltip "Azione da effettuare quando si fa clic con tasto destro del mouse">
<!ENTITY foxyproxy.leftclicktb.label "Con clic con tasto sinistro:">
<!ENTITY foxyproxy.leftclicktb.accesskey "n">
<!ENTITY foxyproxy.leftclicktb.tooltip "Azione da effettuare quando si fa clic con tasto sinistro del mouse">
<!ENTITY foxyproxy.middleclicktb.label "Con clic con tasto centrale:">
<!ENTITY foxyproxy.middleclicktb.accesskey "c">
<!ENTITY foxyproxy.middleclicktb.tooltip "Azione da effettuare quando si fa clic con tasto centrale del mouse">
<!ENTITY foxyproxy.rightclicktb.label "Con clic con tasto destro:">
<!ENTITY foxyproxy.rightclicktb.accesskey "e">
<!ENTITY foxyproxy.rightclicktb.tooltip "Azione da effettuare quando si fa clic con tasto destro del mouse">
<!ENTITY foxyproxy.click.options "mostra la finestra di dialogo delle opzioni">
<!ENTITY foxyproxy.click.cycle "alterna i proxy">
<!ENTITY foxyproxy.click.contextmenu "mostra il menu contestuale">
<!ENTITY foxyproxy.click.reloadcurtab "ricarica la scheda attuale">
<!ENTITY foxyproxy.click.reloadtabsinbrowser "ricarica tutte le schede in questa finestra">
<!ENTITY foxyproxy.click.reloadtabsinallbrowsers "ricarica tutte le schede in tutte le finestre">
<!ENTITY foxyproxy.click.removeallcookies "elimina tutti i cookie">
<!ENTITY foxyproxy.includeincycle.label "Includi proxy alternandoli quando si fa clic nella barra di stato/degli strumenti">
<!ENTITY foxyproxy.includeincycle.accesskey "I">
<!ENTITY foxyproxy.includeincycle.tooltip "I proxy verranno inclusi quando alternati tramite clic nella barra di stato/degli strumenti (l&apos;opzione &apos;alterna i proxy&apos; deve essere selezionata)">
<!ENTITY foxyproxy.changes.msg1 "Contenuti guida delle impostazioni per HTTP, SSL, FTP, Gopher e SOCKS">
<!ENTITY foxyproxy.newGUI.popup.height "270px">
<!ENTITY foxyproxy.newGUI.popup.width "400px">
<!ENTITY foxyproxy.newGUI1.label "La precedente finestra delle opzioni di FoxyProxy-&gt; Proxy-&gt; Nuovo proxy-&gt; &apos;Dettagli dei proxy&apos; era basata sulla quasi identica finestra delle opzioni di Firefox-&gt; Avanzate-&gt; Rete-&gt; Connessione-&gt; &quot;Impostazioni...&quot;, a sua volta quasi identica alla finestra delle impostazioni proxy nel vecchio browser Mosaic 2.1.1 del 1996. Il problema con tali finestre è la limitata capacità di trasferimento dei dati tramite protocollo. I browser del ventunesimo secolo come Firefox gestiscono molti altri protocolli oltre a HTTP, SSL, FTP e GOPHER. Chiaramente, tali precedenti finestre di dialogo sarebbero poco gestibili se si tentasse di includere ogni protocollo possibile">
<!ENTITY foxyproxy.newGUI2.label "Poiché FoxyProxy permette già il trasferimento dei dati tramite protocollo con caratteri jolly e modelli di espressioni regolari, la lista dei protocolli relativa a questa finestra non è necessaria. A partire dalla versione 2.5, nella finestra delle opzioni di FoxyProxy tale lista di protocolli è stata quindi eliminata. Tuttavia, tale modifica non riduce la funzionalità bensì semplifica l&apos;interfaccia grafica. Per trasferire i dati tramite protocollo, definire i modelli permessi/non permessi prestando attenzione alla porzione di schema/protocollo del modello (es: ftp://*.yahoo.com/*, *://leahscape.com/*, ecc)">
<!ENTITY foxyproxy.newGUI4.label "Fare clic qui per ulteriori informazioni">
<!ENTITY foxyproxy.error.msg.label "Messaggio di errore">
<!ENTITY foxyproxy.pac.result.label "Risultato PAC">
<!ENTITY foxyproxy.options.width "800">
<!ENTITY foxyproxy.options.height "500">
<!ENTITY foxyproxy.torwiz.width "660">
<!ENTITY foxyproxy.torwiz.height "375">
<!ENTITY foxyproxy.addeditproxy.width "660">
<!ENTITY foxyproxy.addeditproxy.height "470">

View File

@ -0,0 +1,136 @@
extensions.foxyproxy@eric.h.jung.description=Permette di riprendere il controllo della propria privacy!
foxyproxy=FoxyProxy
tor=Proxy Tor
privoxy=Privoxy
settings.error=Errore durante la lettura delle impostazioni
error=Errore
welcome=Benvenuti in FoxyProxy!
yes=
no=No
disabled=Disattivata
torwiz.configure=Configurare l'estensione FoxyProxy per utilizzarla con Tor?
torwiz.with.without.privoxy=Si sta utilizzando Tor con o senza Privoxy?
torwiz.with=Con Privoxy
torwiz.without=Senza Privoxy
torwiz.privoxy.not.required=Nota: a partire da Firefox 1.5, Privoxy non è più necessario per utilizzare Firefox con Tor\nPrivoxy aggiunge valori come il filtraggio del contenuto, ma non è strettamente necessario\nUtilizzare comunque Tor attraverso Privoxy?
torwiz.port=Specificare la porta che viene utilizzata da %S. Se non la si conosce, utilizzare quella predefinita
torwiz.nan=Non è un numero
torwiz.proxy.notes=Proxy attraverso la rete Tor (http://tor.eff.org)
torwiz.google.mail=Google Mail
torwiz.pattern=http://*mail.google.com/*
torwiz.congratulations=Congratulazioni! FoxyProxy è stata configurata per essere utilizzata con Tor\n\nAssicurarsi che Tor stia funzionando prima di visitare gli indirizzi web specificati\nper utilizzare la rete di TOR. Inoltre, se si è impostato in FoxyProxy di utilizzare\nPrivoxy, accertarsi che stia funzionando
torwiz.cancelled=La configurazione di FoxyProxy e Tor è stata annullata
mode.patterns.label=Proxy basati su modelli predefiniti
mode.patterns.accesskey=U
mode.patterns.tooltip=Usa i proxy basati su modelli predefiniti
mode.custom.label=Usa "%S" per tutti gli URL
mode.custom.tooltip=Usa "%S" per tutti gli URL
mode.disabled.label=Disattiva FoxyProxy
mode.disabled.accesskey=D
mode.disabled.tooltip=Disattiva completamente FoxyProxy
more.label=Opzioni di FoxyProxy
more.accesskey=O
more.tooltip=Accesso alle opzioni di FoxyProxy
invalid.url=L'URL specificato per la configurazione automatica dei proxy non è valido
protocols.error=È necessario specificare uno o più protocolli per i proxy
noport2=È necessario specificare una porta per il server
nohost2=È necessario specificare un server per la porta
nohostport=È necessario specificare server e porta da utilizzare
torwiz.nopatterns=Non è stato specificato alcun modello URL. Ciò significa che la rete Tor non verrà usata. Continuare comunque?
months.long.1=Gennaio
months.short.1=Gen
months.long.2=Febbraio
months.short.2=Feb
months.long.3=Marzo
months.short.3=Mar
months.long.4=Aprile
months.short.4=Apr
months.long.5=Maggio
months.short.5=Mag
months.long.6=Giugno
months.short.6=Giu
months.long.7=Luglio
months.short.7=Lug
months.long.8=Agosto
months.short.8=Ago
months.long.9=Settembre
months.short.9=Set
months.long.10=Ottobre
months.short.10=Ott
months.long.11=Novembre
months.short.11=Nov
months.long.12=Dicembre
months.short.12=Dic
days.long.1=Domenica
days.short.1=Dom
days.long.2=Lunedì
days.short.2=Lun
days.long.3=Martedì
days.short.3=Mar
days.long.4=Mercoledì
days.short.4=Mer
days.long.5=Giovedì
days.short.5=Gio
days.long.6=Venerdì
days.short.6=Ven
days.long.7=Sabato
days.short.7=Sab
timeformat=dd mmm yyyy, hh:nn:ss a/p
file.select=Selezionare il file nel quale memorizzare le impostazioni
manual=Manuale
auto=Auto
direct=Diretta
delete.proxy.confirm=Eliminare il proxy?
pattern.required=È necessario specificare un modello
pattern.invalid.regex=%S non è un'espressione regolare valida
proxy.error.for.url=Errore durante la determinazione del proxy per %S
proxy.default.settings.used=FoxyProxy non viene usata per questo URL. Sono state usate le impostazioni di connessione predefinite
proxy.all.urls=Tutti gli URL sono stati configurati per utilizzare questo proxy
pac.status=Stato del file PAC di FoxyProxy
pac.status.loadfailure=Caricamento di PAC per i proxy "%S" non riuscito
pac.status.success=Caricamento per i proxy "%S" avvenuto con successo
pac.status.error=Caricamento per i proxy "%S" non riuscito
error.noload=Errore. Contattare il gruppo di sviluppo di FoxyProxy. Non si sta verificando alcuna perdita di dati sensibili, ma la risorsa non verrà caricata
proxy.name.required=Specificare un nome per questo proxy nelle opzioni generali
proxy.default=Proxy predefiniti
proxy.default.notes=Questa impostazione si applica quando nessun modello corrisponde ad un indirizzo web
proxy.default.match.name=Tutti
delete.proxy.default=Non è possibile cancellare questo proxy
copy.proxy.default=Non è possibile copiare questo proxy
logg.maxsize.change=Il contenuto della registrazione verrà svuotato. Continuare?
logg.maxsize.maximum=La dimensione massima raccomandata è 9999. Valori più elevati consumeranno più memoria e potrebbero interessare le prestazioni. Continuare comunque?
proxy.random=Il proxy è stato selezionato casualmente
mode.random.label=Usa proxy casuali per tutti gli indirizzi web (ignora tutti i modelli e le priorità)
mode.random.accesskey=C
mode.random.tooltip=Carica gli indirizzi web attraverso proxy causali (ignora tutti i modelli e le priorità)
random=Proxy casuali
random.applicable=Questa impostazione si applica solo quando è attiva l'opzione 'Usa proxy casuali per tutti gli indirizzi web (ignora tutti i modelli e le priorità)'
superadd.error=Errore nella configurazione: %S è stato disattivato
superadd.notify=Proxy %S
superadd.url.added=%S aggiunto al proxy "%S"
autoadd.pattern.label=Modello dinamico
quickadd.pattern.label=Aggiunta automatica del modello dinamico
torwiz.proxydns=Far passare le richieste DNS attraverso la rete TOR? Se non si comprende questa domanda fare clic su "Sì"
superadd.verboten2=Impossibile attivare '%S' poiché non sono stati definiti proxy o tutti i proxy sono disattivati
autoadd.notice=Nota: l'aggiunta automatica influisce sul tempo di caricamento della pagina. Più il modello sarà complesso e la pagina grande, più tempo impiegherà l'aggiunta automatica. Disattivarla in caso di rallentamenti
autoadd.notice2=
autoconfurl.test.success=Il file PAC è stato trovato, caricato ed analizzato con successo
autoconfurl.test.fail=Si è verificato un problema durante il caricamento, la ricerca o l'analisi del file PAC\n - Codice di stato HTTP: %s\n - Eccezione: %S
none=Nessuno
delete.settings.ask=Eliminare le impostazioni di FoxyProxy conservate nella cartella %S?
delete.settings.confirm=Le impostazioni conservate nella cartella %S verranno eliminate alla chiusura del browser
no.wildcard.characters=Nel modello non sono presenti caratteri Jolly, quindi "%S" avrà corrispondenza esatta. Probabilmente è presente un errore nel modello o non si è compreso come definirlo. Continuare?
message.stop=Non mostrare questo messaggio ancora
log.save=Salva registrazione
log.saved2=La registrazione è stata salvata nella cartella %S. Visualizzarla?
log.nourls.url=Non registrata
log.scrub=Eliminare gli elementi della registrazione degli URL?
no.white.patterns=Non sono stati inseriti modelli URL fra quelli permessi, quindi il proxy non verrà utilizzato. Continuare?
quickadd.quickadd.canceled=L'aggiunta rapida è stata annullata poiché l'URL attuale corrisponde già al modello esistente chiamato "%S" presente nel proxy "%S"
quickadd.nourl=Impossibile ottenere l'URL attuale
cookies.allremoved=Tutti i cookie sono stati eliminati
route.error=Si è verificato un errore durante la determinazione del server da utilizzare per il trasferimento dei dati
route.exception=Si è verificata un'eccezione durante la determinazione del server da utilizzare per il trasferimento dei dati per %S
see.log=Vedere il file di registrazione per ulteriori informazioni
pac.select=Selezionare il file PAC da utilizzare
pac.files=File PAC

View File

@ -0,0 +1,427 @@
<!ENTITY foxyproxy.label "FoxyProxy">
<!ENTITY foxyproxy.accesskey "F">
<!ENTITY foxyproxy.tooltip "FoxyProxy">
<!ENTITY foxyproxy.optionsdialog.label "FoxyProxy opties">
<!ENTITY foxyproxy.options.label "Opties">
<!ENTITY foxyproxy.options.accesskey "O">
<!ENTITY foxyproxy.options.tooltip "Het opties-venster openen">
<!ENTITY foxyproxy.tree.pickertooltiptext.label "Klik hier om de weer te geven kolommen te selecteren">
<!ENTITY foxyproxy.proxy.name.label "Proxynaam">
<!ENTITY foxyproxy.proxy.name.accesskey "n">
<!ENTITY foxyproxy.proxy.name.tooltip "Proxynaam">
<!ENTITY foxyproxy.proxy.notes.label "Opmerkingen bij de proxy">
<!ENTITY foxyproxy.proxy.notes.accesskey "O">
<!ENTITY foxyproxy.proxy.notes.tooltip "Opmerkingen bij de proxy">
<!ENTITY foxyproxy.pattern.label "Vergelijkingspatroon">
<!ENTITY foxyproxy.pattern.type.label "Patroontype">
<!ENTITY foxyproxy.whitelist.blacklist.label "Witte lijst (opnemen) of zwarte lijst (uitsluiten)">
<!ENTITY foxyproxy.pattern.name.label "Patroonnaam">
<!ENTITY foxyproxy.pattern.name.accesskey "P">
<!ENTITY foxyproxy.pattern.name.tooltip "Naam voor het patroon">
<!ENTITY foxyproxy.url.pattern.label "URL patroon">
<!ENTITY foxyproxy.url.pattern.accesskey "U">
<!ENTITY foxyproxy.url.pattern.tooltip "URL patroon">
<!ENTITY foxyproxy.enabled.label "Ingeschakeld">
<!ENTITY foxyproxy.enabled.accesskey "I">
<!ENTITY foxyproxy.enabled.tooltip "Inschakelen/uitschakelen wisselen">
<!ENTITY foxyproxy.delete.selection.label "Selectie verwijderen">
<!ENTITY foxyproxy.delete.selection.accesskey "S">
<!ENTITY foxyproxy.delete.selection.tooltip "Het nu geselecteerde item verwijderen">
<!ENTITY foxyproxy.edit.selection.label "Selectie wijzigen">
<!ENTITY foxyproxy.edit.selection.accesskey "W">
<!ENTITY foxyproxy.edit.selection.tooltip "Het nu geselecteerde item wijzigen">
<!ENTITY foxyproxy.help.label "Helpinhoud">
<!ENTITY foxyproxy.help.accesskey "H">
<!ENTITY foxyproxy.help.tooltip "Hulpbestand tonen">
<!ENTITY foxyproxy.close.label "Sluiten">
<!ENTITY foxyproxy.close.accesskey "S">
<!ENTITY foxyproxy.close.tooltip "Venster sluiten">
<!ENTITY foxyproxy.about.label "Over">
<!ENTITY foxyproxy.about.accesskey "O">
<!ENTITY foxyproxy.about.tooltip "Opent het Over scherm">
<!ENTITY foxyproxy.online.label "FoxyProxy op het web">
<!ENTITY foxyproxy.online.accesskey "P">
<!ENTITY foxyproxy.online.tooltip "De FoxyProxy website bezoeken">
<!ENTITY foxyproxy.tor.label "Tor wizard">
<!ENTITY foxyproxy.tor.accesskey "W">
<!ENTITY foxyproxy.tor.tooltip "Tor wizard">
<!ENTITY foxyproxy.copy.selection.label "Selectie kopiëren">
<!ENTITY foxyproxy.copy.selection.accesskey "K">
<!ENTITY foxyproxy.copy.selection.tooltip "Kopieert selectie">
<!ENTITY foxyproxy.mode.label "Modus selecteren">
<!ENTITY foxyproxy.auto.url.label "Automatische proxy configuratie URL">
<!ENTITY foxyproxy.auto.url.accesskey "A">
<!ENTITY foxyproxy.auto.url.tooltip "Voer de URL van het PAC bestand in">
<!ENTITY foxyproxy.port.label "Poort">
<!ENTITY foxyproxy.port.accesskey "P">
<!ENTITY foxyproxy.port.tooltip "Poort">
<!ENTITY foxyproxy.socks.proxy.label "SOCKS proxy">
<!ENTITY foxyproxy.socks.proxy.accesskey "C">
<!ENTITY foxyproxy.socks.proxy.tooltip "URL van SOCKS proxy">
<!ENTITY foxyproxy.socks.v4 "SOCKS v4/4a">
<!ENTITY foxyproxy.socks.v5 "SOCKS v5">
<!ENTITY foxyproxy.addeditpattern.title "Patroon toevoegen/wijzigen">
<!ENTITY foxyproxy.wildcard.label "Wildcards">
<!ENTITY foxyproxy.wildcard.accesskey "W">
<!ENTITY foxyproxy.wildcard.tooltip "Specificeert dat het URL patroon wildcards gebruikt en is geen reguliere uitdrukking">
<!ENTITY foxyproxy.wildcard.example.label "Voorbeeld: *mail.yahoo.com/*">
<!ENTITY foxyproxy.regex.label "Reguliere uitdrukking">
<!ENTITY foxyproxy.regex.accesskey "R">
<!ENTITY foxyproxy.regex.tooltip "Specificeert dat de het URL patroon een reguliere uitdrukking is">
<!ENTITY foxyproxy.regex.example.label "Voorbeeld: http?://.*\.mail\.yahoo\.com/.*">
<!ENTITY foxyproxy.version "Versie">
<!ENTITY foxyproxy.createdBy "Gemaakt door:">
<!ENTITY foxyproxy.copyright "Copyright">
<!ENTITY foxyproxy.rights "Alle rechten voorbehouden.">
<!ENTITY foxyproxy.released "Uitgegeven onder de GPL licentie.">
<!ENTITY foxyproxy.thanks "Bijzondere dankzegging aan">
<!ENTITY foxyproxy.translations "Vertalingen">
<!ENTITY foxyproxy.tab.general.label "Algemeen">
<!ENTITY foxyproxy.tab.general.accesskey "G">
<!ENTITY foxyproxy.tab.general.tooltip "Algemene proxy instellingen beheren">
<!ENTITY foxyproxy.tab.proxy.label "Proxy details">
<!ENTITY foxyproxy.tab.proxy.accesskey "R">
<!ENTITY foxyproxy.tab.proxy.tooltip "Proxy details beheren">
<!ENTITY foxyproxy.tab.patterns.label "Patronen">
<!ENTITY foxyproxy.tab.patterns.accesskey "P">
<!ENTITY foxyproxy.tab.patterns.tooltip "URL patronen beheren">
<!ENTITY foxyproxy.add.title "Proxy instellingen">
<!ENTITY foxyproxy.pattern.description "Hier kunt u specificeren wanneer deze proxy wel of niet wordt gebruikt.">
<!ENTITY foxyproxy.pattern.matchtype.label "Patroon bevat">
<!ENTITY foxyproxy.pattern.matchtype2.label "Patroon om geblokkeerde websites te identificeren bevat">
<!ENTITY foxyproxy.pattern.template.matchtype.label "Patroon-template bevat">
<!ENTITY foxyproxy.pattern.whiteblack.label "URL opname/uitsluiting">
<!ENTITY foxyproxy.add.option.direct.label "Directe verbinding met Internet (geen proxy)">
<!ENTITY foxyproxy.add.option.direct.accesskey "D">
<!ENTITY foxyproxy.add.option.direct.tooltip "Geen proxy gebruiken - de onderliggende directe internetverbinding gebruiken">
<!ENTITY foxyproxy.add.option.manual.label "Handmatige proxy configuratie">
<!ENTITY foxyproxy.add.option.manual.accesskey "H">
<!ENTITY foxyproxy.add.option.manual.tooltip "Handmatig een proxyconfiguratie definiëren">
<!ENTITY foxyproxy.add.new.pattern.label "Nieuw patroon toevoegen">
<!ENTITY foxyproxy.add.new.pattern.accesskey "V">
<!ENTITY foxyproxy.add.new.pattern.tooltip "Nieuw patroon toevoegen">
<!ENTITY foxyproxy.menubar.file.label "Bestand">
<!ENTITY foxyproxy.menubar.file.accesskey "B">
<!ENTITY foxyproxy.menubar.file.tooltip "Het Bestandmenu openen">
<!ENTITY foxyproxy.menubar.help.label "Help">
<!ENTITY foxyproxy.menubar.help.accesskey "H">
<!ENTITY foxyproxy.menubar.help.tooltip "Het Helpmenu openen">
<!ENTITY foxyproxy.mode.accesskey "M">
<!ENTITY foxyproxy.mode.tooltip "Selecteer hoe FoxyProxy moet worden ingeschakeld">
<!ENTITY foxyproxy.tab.proxies.label "Proxy&apos;s">
<!ENTITY foxyproxy.tab.proxies.accesskey "P">
<!ENTITY foxyproxy.tab.proxies.tooltip "Proxy&apos;s beheren">
<!ENTITY foxyproxy.tab.global.label "Algemene instellingen">
<!ENTITY foxyproxy.tab.global.accesskey "G">
<!ENTITY foxyproxy.tab.global.tooltip "Algemene instellingen beheren">
<!ENTITY foxyproxy.tab.logging.label "Loggen">
<!ENTITY foxyproxy.tab.logging.accesskey "L">
<!ENTITY foxyproxy.tab.logging.tooltip "Loginstellingen beheren">
<!ENTITY foxyproxy.proxydns.label "SOCKS proxy for DNS zoekopdrachten gebruiken">
<!ENTITY foxyproxy.proxydns.accesskey "G">
<!ENTITY foxyproxy.proxydns.tooltip "Indien aangevinkt worden DNS zoekopdrachten via een SOCKS proxy geleid">
<!ENTITY foxyproxy.proxydns.notice "U dient Firefox te herstarten om de wijzigingen van kracht te laten worden. Nu herstarten?">
<!ENTITY foxyproxy.showstatusbaricon.label "Pictogram op statusbalk weergeven">
<!ENTITY foxyproxy.showstatusbaricon.accesskey "W">
<!ENTITY foxyproxy.showstatusbaricon.tooltip "Indien aangevinkt zal het FoxyProxy pictogram in de statusbalk worden weergegeven">
<!ENTITY foxyproxy.showstatusbarmode.label "Status (tekst) in statusbalk weergeven">
<!ENTITY foxyproxy.showstatusbarmode.accesskey "S">
<!ENTITY foxyproxy.showstatusbarmode.tooltip "Indien aangevinkt zal de FoxyProxy status in de statusbalk worden weergegeven">
<!ENTITY foxyproxy.storagelocation.label "Instellingen opslaglocatie">
<!ENTITY foxyproxy.storagelocation.accesskey "I">
<!ENTITY foxyproxy.storagelocation.tooltip "Locatie waar de instellingen van FoxyProxy worden opgeslagen">
<!ENTITY foxyproxy.tab.logging.timestamp.label "Tijdsaanduiding">
<!ENTITY foxyproxy.tab.logging.url.label "URL">
<!ENTITY foxyproxy.host.label "Hostnaam">
<!ENTITY foxyproxy.host.accesskey "o">
<!ENTITY foxyproxy.host.tooltip "Hostnaam">
<!ENTITY foxyproxy.clear.label "Wissen">
<!ENTITY foxyproxy.clear.accesskey "W">
<!ENTITY foxyproxy.clear.tooltip "Wissen">
<!ENTITY foxyproxy.refresh.label "Verversen">
<!ENTITY foxyproxy.refresh.accesskey "V">
<!ENTITY foxyproxy.refresh.tooltip "Verversen">
<!ENTITY foxyproxy.save.label "Opslaan">
<!ENTITY foxyproxy.save.accesskey "O">
<!ENTITY foxyproxy.save.tooltip "Opslaan">
<!ENTITY foxyproxy.addnewproxy.label "Nieuwe proxy toevoegen">
<!ENTITY foxyproxy.addnewproxy.accesskey "O">
<!ENTITY foxyproxy.addnewproxy.tooltip "Nieuwe proxy toevoegen">
<!ENTITY foxyproxy.whitelist.label "Witte lijst">
<!ENTITY foxyproxy.whitelist.accesskey "W">
<!ENTITY foxyproxy.whitelist.tooltip "URL&apos;s die met dit patroon overeenkomen worden via deze proxy geladen">
<!ENTITY foxyproxy.whitelist.description.label "URL&apos;s die met dit patroon overeenkomen worden via deze proxy geladen">
<!ENTITY foxyproxy.blacklist.label "Zwarte lijst">
<!ENTITY foxyproxy.blacklist.accesskey "Z">
<!ENTITY foxyproxy.blacklist.tooltip "URL&apos;s die met dit patroon overeenkomen worden NIET via deze proxy geladen">
<!ENTITY foxyproxy.blacklist.description.label "URL&apos;s die met dit patroon overeenkomen worden NIET via deze proxy geladen">
<!ENTITY foxyproxy.whiteblack.description.label "Zwarte lijst (uitsluitings-) patronen hebben voorrang boven witte lijst (opname-) patronen: als een URL overeenkomt met een witte lijst-patroon en een zwarte lijst-patroon voor de zelfde proxy wordt deze niet geladen via die proxy.">
<!ENTITY foxyproxy.usingPFF.label1 "Ik gebruik">
<!ENTITY foxyproxy.usingPFF.label2 "Portable Firefox">
<!ENTITY foxyproxy.usingPFF.accesskey "P">
<!ENTITY foxyproxy.usingPFF.tooltip "Vink dit aan als Portable Firefox wordt gebruikt">
<!ENTITY foxyproxy.socks.version.label "SOCKS versie">
<!ENTITY foxyproxy.autopacurl.label "Auto PAC URL">
<!ENTITY foxyproxy.issocks.label "SOCKS proxy?">
<!ENTITY foxyproxy.issocks.accesskey "S">
<!ENTITY foxyproxy.issocks.tooltip "Is this a web proxy or SOCKS proxy?">
<!ENTITY foxyproxy.chinese.simplified "Chinees (vereenvoudigd)">
<!ENTITY foxyproxy.chinese.traditional "Chinees (traditioneel)">
<!ENTITY foxyproxy.croatian "Kroatisch">
<!ENTITY foxyproxy.czech "Tsjechisch">
<!ENTITY foxyproxy.danish "Deens">
<!ENTITY foxyproxy.dutch "Nederlands">
<!ENTITY foxyproxy.english "Engels">
<!ENTITY foxyproxy.english.british "Engels (Brits)">
<!ENTITY foxyproxy.french "Frans">
<!ENTITY foxyproxy.german "Duits">
<!ENTITY foxyproxy.greek "Grieks">
<!ENTITY foxyproxy.hungarian "Hongaars">
<!ENTITY foxyproxy.italian "Italiaans">
<!ENTITY foxyproxy.persian "Perzisch">
<!ENTITY foxyproxy.polish "Pools">
<!ENTITY foxyproxy.portugese.brazilian "Portugees (Braziliaans)">
<!ENTITY foxyproxy.portugese.portugal "Portugees (Portugal)">
<!ENTITY foxyproxy.romanian "Roemeens">
<!ENTITY foxyproxy.russian "Russisch">
<!ENTITY foxyproxy.slovak "Slowaaks">
<!ENTITY foxyproxy.spanish.spain "Spaans (Spanje)">
<!ENTITY foxyproxy.spanish.argentina "Spaans (Argentinië)">
<!ENTITY foxyproxy.swedish "Zweeds">
<!ENTITY foxyproxy.thai.thailand "Thais (Thailand)">
<!ENTITY foxyproxy.turkish "Turks">
<!ENTITY foxyproxy.ukrainian "Oekraïens">
<!ENTITY foxyproxy.your.language "Uw taal">
<!ENTITY foxyproxy.your.name.here "Hier kan uw naam staan!">
<!ENTITY foxyproxy.moveup.label "Omhoog">
<!ENTITY foxyproxy.moveup.tooltip "De voorkeurspositie van de huidige selectie verhogen">
<!ENTITY foxyproxy.moveup.accesskey "O">
<!ENTITY foxyproxy.movedown.label "Omlaag">
<!ENTITY foxyproxy.movedown.tooltip "De voorkeurspositie van de huidige selectie verlagen">
<!ENTITY foxyproxy.movedown.accesskey "L">
<!ENTITY foxyproxy.autoconfurl.view.label "Bekijken">
<!ENTITY foxyproxy.autoconfurl.view.accesskey "B">
<!ENTITY foxyproxy.autoconfurl.view.tooltip "Het auto-configuratie bestand bekijken">
<!ENTITY foxyproxy.autoconfurl.test.label "Test">
<!ENTITY foxyproxy.autoconfurl.test.accesskey "T">
<!ENTITY foxyproxy.autoconfurl.test.tooltip "Het auto-configuratie bestand testen">
<!ENTITY foxyproxy.autoconfurl.reload.label "De PAC elke">
<!ENTITY foxyproxy.autoconfurl.reload.accesskey "E">
<!ENTITY foxyproxy.autoconfurl.reload.tooltip "Het PAC bestand automatisch na elke gespecificeerde periode herladen">
<!ENTITY foxyproxy.minutes.label "minuten herladen">
<!ENTITY foxyproxy.minutes.tooltip "minuten">
<!ENTITY foxyproxy.logging.maxsize.label "Maximale grootte voordat het logbestand weer vooraan begint">
<!ENTITY foxyproxy.logging.maxsize.accesskey "M">
<!ENTITY foxyproxy.logging.maxsize.tooltip "Maximaal aantal log-entries voordat het logbestand weer vooraan begint">
<!ENTITY foxyproxy.logging.maxsize.button.label "Instellen">
<!ENTITY foxyproxy.logging.maxsize.button.accesskey "S">
<!ENTITY foxyproxy.logging.maxsize.button.tooltip "Stelt het maximale aantal log-entries voordat het logbestand weer vooraan begint in">
<!ENTITY foxyproxy.random.label "URL&apos;s via willekeurige proxy&apos;s laden (alle patronen en voorkeursinstellingen negeren)">
<!ENTITY foxyproxy.random.accesskey "W">
<!ENTITY foxyproxy.random.tooltip "URL&apos;s via willekeurige proxy&apos;s laden (alle patronen en voorkeursinstellingen negeren)">
<!ENTITY foxyproxy.random.includedirect.label "Proxy&apos;s die als directe internetverbindingen zijn geconfigureerd meenemen">
<!ENTITY foxyproxy.random.includedirect.accesskey "I">
<!ENTITY foxyproxy.random.includedirect.tooltip "Proxy&apos;s die als directe internetverbindingen zijn geconfigureerd worden meegenomen in de willekeurige proxy-selectie">
<!ENTITY foxyproxy.random.includedisabled.label "Uitgeschakelde proxy&apos;s meenemen">
<!ENTITY foxyproxy.random.includedisabled.accesskey "U">
<!ENTITY foxyproxy.random.includedisabled.tooltip "Proxy&apos;s die als uitgeschakeld zijn geconfigureerd worden meegenomen in de willekeurige proxy-selectie">
<!ENTITY foxyproxy.random.settings.label "Willekeurige proxy-selectie">
<!ENTITY foxyproxy.random.settings.accesskey "W">
<!ENTITY foxyproxy.random.settings.tooltip "Instellingen die willekeurige proxy-selectie beïnvloeden">
<!ENTITY foxyproxy.tab.autoadd.label "Automatisch toevoegen">
<!ENTITY foxyproxy.tab.autoadd.accesskey "A">
<!ENTITY foxyproxy.tab.autoadd.tooltip "Instellingen automatisch toevoegen beheren">
<!ENTITY foxyproxy.autoadd.description "Specificeer hier een patroon dat geblokkeerde websites identificeert. Wanneer het patroon wordt gevonden op een pagina, wordt een patroon dat overeenkomt met de URL van die website automatisch aan een proxy toegevoegd en optioneel opnieuw geladen. Dit voorkomt dat u pro-actief alle geblokkeerde websites moet identificeren.">
<!ENTITY foxyproxy.autoadd.pattern.label "Patroon om geblokkeerde websites te identificeren">
<!ENTITY foxyproxy.autoadd.pattern.accesskey "P">
<!ENTITY foxyproxy.autoadd.pattern.tooltip "Patroon waarmee geblokkeerde websites worden geïdentificeerd">
<!ENTITY foxyproxy.autoadd.wildcard.example.label "Voorbeeld: *You are not authorized to view this page*">
<!ENTITY foxyproxy.autoadd.regex.example.label "Voorbeeld: *Site has been blocked.*">
<!ENTITY foxyproxy.autoadd.proxy.label "Proxy waaraan patronen automatisch worden toegevoegd">
<!ENTITY foxyproxy.autoadd.proxy.accesskey "P">
<!ENTITY foxyproxy.autoadd.proxy.tooltip "Specificeer de proxy waaraan URL&apos;s automatisch worden toegevoegd">
<!ENTITY foxyproxy.pattern.template.label "URL patroon template">
<!ENTITY foxyproxy.pattern.template.accesskey "U">
<!ENTITY foxyproxy.pattern.template.tooltip "URL patroon template">
<!ENTITY foxyproxy.pattern.template.example.label1 "Voorbeeld voor">
<!ENTITY foxyproxy.pattern.template.example.label2 "http://fred:secret@mail.foo.com:8080/inbox/msg102.htm#subject?style=elegant">
<!ENTITY foxyproxy.pattern.template.currenturl.label "Huidige URL">
<!ENTITY foxyproxy.pattern.template.currenturl.accesskey "H">
<!ENTITY foxyproxy.pattern.template.currenturl.tooltip "URL in de lokatiebalk">
<!ENTITY foxyproxy.pattern.template.generatedpattern.label "Aangemaakt patroon">
<!ENTITY foxyproxy.pattern.template.generatedpattern.accesskey "g">
<!ENTITY foxyproxy.pattern.template.generatedpattern.tooltip "Dynamisch aangemaakt patroon">
<!ENTITY foxyproxy.autoadd.reload.label "De pagina herladen nadat het patroon is toegevoegd aan een proxy">
<!ENTITY foxyproxy.autoadd.reload.accesskey "R">
<!ENTITY foxyproxy.autoadd.reload.tooltip "De pagina automatisch herladen nadat het patroon is toegevoegd aan een proxy">
<!ENTITY foxyproxy.autoadd.notify.label "Bericht geven wanneer Automatisch toevoegen wordt geactiveerd">
<!ENTITY foxyproxy.autoadd.notify.accesskey "B">
<!ENTITY foxyproxy.autoadd.notify.tooltip "Informeert u wanneer een pagina wordt geblokkeerd en het URL patroon wordt toegevoegd aan een proxy">
<!ENTITY foxyproxy.graphics "Grafisch ontwerp en afbeeldingen door">
<!ENTITY foxyproxy.website "Website door">
<!ENTITY foxyproxy.contributions "Bijdrages van">
<!ENTITY foxyproxy.pacloadnotification.label "Bericht geven wanneer het proxy auto-configuratie bestand wordt geladen">
<!ENTITY foxyproxy.pacloadnotification.accesskey "L">
<!ENTITY foxyproxy.pacloadnotification.tooltip "Een popup venster weergeven wanneer een PAC bestand wordt geladen">
<!ENTITY foxyproxy.pacerrornotification.label "Bericht geven over fouten van het proxy auto-configuratie bestand">
<!ENTITY foxyproxy.pacerrornotification.accesskey "F">
<!ENTITY foxyproxy.pacerrornotification.tooltip "Een popup venster weergeven wanneer PAC bestandsfouten worden gevonden">
<!ENTITY foxyproxy.toolsmenu.label "Pictogram weergeven in het Firefox Extra menu">
<!ENTITY foxyproxy.toolsmenu.accesskey "E">
<!ENTITY foxyproxy.toolsmenu.tooltip "Pictogram weergeven in het Firefox Extra menu">
<!ENTITY foxyproxy.tip.label "Tip">
<!ENTITY foxyproxy.pactips.popup.height "165px">
<!ENTITY foxyproxy.pactips.popup.width "400px">
<!ENTITY foxyproxy.pactip1.label "Gebruik voor op de lokale harde schijf opgeslagen PAC bestanden de file:// methode. Bijvoorbeeld: file://c:/path/proxy.pac op Windows of file:///home/users/joe/proxy.pac op Unix/Linux/Mac.">
<!ENTITY foxyproxy.pactip2.label "Gebruik voor PAC bestanden op een FTP server de ftp:// methode. Bijvoorbeeld: ftp://leahscape.com/path/proxy.pac">
<!ENTITY foxyproxy.pactip3.label "U kunt ook de http://, https:// en alle overige ondersteunde methodes gebruiken.">
<!ENTITY foxyproxy.contextmenu.label "Pictogram weergeven in het contextmenu">
<!ENTITY foxyproxy.contextmenu.accesskey "C">
<!ENTITY foxyproxy.contextmenu.tooltip "Pictogram weergeven in het contextmenu">
<!ENTITY foxyproxy.quickadd.desc1 "Snel toevoegen voegt een dynamisch URL patroon aan een proxy toe wanneer u op Alt-F2 drukt. Het is een praktisch alternatief voor Automatisch toevoegen. U kunt de Alt-F2 sneltoets aanpassen met de">
<!ENTITY foxyproxy.keyconfig.label "KeyConfig">
<!ENTITY foxyproxy.quickadd.desc2 "extensie">
<!ENTITY foxyproxy.quickadd.label "Snel toevoegen">
<!ENTITY foxyproxy.quickadd.accesskey "S">
<!ENTITY foxyproxy.quickadd.tooltip "Snel toevoegen instellingen beheren">
<!ENTITY foxyproxy.quickadd.notify.label "Bericht geven wanneer Snel toevoegen wordt geactiveeerd">
<!ENTITY foxyproxy.quickadd.notify.accesskey "B">
<!ENTITY foxyproxy.quickadd.notify.tooltip "Popup weergeven wanneer Snel toevoegen wordt geactiveerd">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.label "Mij waarschuwen bij afbreken van Snel toevoegen.">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.label2 "Snel toevoegen wordt automatisch afgebroken wanneer Snel toevoegen wordt geactiveerd middels Alt-F2 en de huidige URL in de lokatiebalk al overeenkomt met een bestaande witte lijst-patroon van een proxy. Op deze manier worden dubbele patronen, die uw configuratie kunnen vervuilen, voorkomen. Deze instelling beïnvloedt het afbreken niet; het beïnvloedt alleen de waarschuwing wanneer afbreken optreedt.">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.accesskey "A">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.tooltip "Een popup weergeven wanneer Snel toevoegen is geactiveerd maar wordt afgebroken.">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.popup.width "400px">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.popup.height "130px">
<!ENTITY foxyproxy.whatsthis "Wat is dit?">
<!ENTITY foxyproxy.quickadd.prompt.label "Vragen om bewerken en bevestigen voordat een patroon aan een proxy wordt toegevoegd">
<!ENTITY foxyproxy.quickadd.prompt.accesskey "V">
<!ENTITY foxyproxy.quickadd.prompt.tooltip "Vragen om bewerken en bevestigen voordat een patroon aan een proxy wordt toegevoegd">
<!ENTITY foxyproxy.quickadd.proxy.label "Proxy waaraan een patroon wordt toegevoegd">
<!ENTITY foxyproxy.quickadd.proxy.accesskey "P">
<!ENTITY foxyproxy.quickadd.proxy.tooltip "Kies de proxy waaraan het patroon zal worden toegevoegd">
<!ENTITY foxyproxy.bypasscache.label "Firefox cache negeren wanneer het programma geladen wordt">
<!ENTITY foxyproxy.bypasscache.accesskey "P">
<!ENTITY foxyproxy.bypasscache.tooltip "De Firefox cache wordt genegeerd">
<!ENTITY foxyproxy.advancedmenus.label "Geavanceerde menu&apos;s gebruiken">
<!ENTITY foxyproxy.advancedmenus.accesskey "a">
<!ENTITY foxyproxy.advancedmenus.tooltip "Geavanceerde menu&apos;s gebruiken (FoxyProxy 2.2 stijl)">
<!ENTITY foxyproxy.importsettings.label "Instellingen importeren">
<!ENTITY foxyproxy.importsettings.accesskey "I">
<!ENTITY foxyproxy.importsettings.tooltip "Instellingen importeren uit een bestand">
<!ENTITY foxyproxy.exportsettings.label "Huidige instellingen exporteren">
<!ENTITY foxyproxy.exportsettings.accesskey "E">
<!ENTITY foxyproxy.exportsettings.tooltip "Huidige instellingen naar een bestand exporteren">
<!ENTITY foxyproxy.importlist.label "Lijst met proxy&apos;s importeren">
<!ENTITY foxyproxy.importlist.accesskey "I">
<!ENTITY foxyproxy.importlist.tooltip "Een tekstbestand met proxy&apos;s importeren">
<!ENTITY foxyproxy.wildcard.reference.label "Wildcard referentie">
<!ENTITY foxyproxy.wildcard.reference.accesskey "W">
<!ENTITY foxyproxy.wildcard.reference.tooltip "Wildcard referentie">
<!ENTITY foxyproxy.wildcard.reference.subtitle.label "De asterisk (*) matcht geen of meer karakters, en het vraagteken (?) matcht een enkel karakter">
<!ENTITY foxyproxy.wildcard.reference.mistakes "Veelgemaakte fouten bij het schrijven van wildcard patronen">
<!ENTITY foxyproxy.wildcard.reference.goal.label "Doel">
<!ENTITY foxyproxy.wildcard.reference.goal1.label "Alle pagina&apos;s in het www subdomein van MySpace matchen">
<!ENTITY foxyproxy.wildcard.reference.goal2.label "De lokale PC matchen">
<!ENTITY foxyproxy.wildcard.reference.goal3.label "Alle subdomeinen en pagina&apos;s bij abc.com matchen">
<!ENTITY foxyproxy.wildcard.reference.goal4.label "Alle pagina&apos;s in het a.foo.com domein matchen, maar niet die in het b.foo.com domein">
<!ENTITY foxyproxy.wildcard.reference.correct.label "Juist">
<!ENTITY foxyproxy.wildcard.reference.correct2.label "Dienen twee patronen te zijn">
<!ENTITY foxyproxy.wildcard.reference.incorrect.label "Onjuist">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason.label "Reden waarom dit onjuist is">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason1.label "Omdat er geen wildcards zijn wordt alleen de homepage gematcht">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason2.label "FoxyProxy begrijpt deze opmaak niet">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason3.label "Er zijn geen wildcards">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason4.label "Er zijn geen wildcards">
<!ENTITY foxyproxy.wildcard.reference.popup.height "350 px">
<!ENTITY foxyproxy.logging.noURLs.label "URL&apos;s niet opslaan of weergeven">
<!ENTITY foxyproxy.logging.noURLs.accesskey "U">
<!ENTITY foxyproxy.logging.noURLs.tooltip "URL&apos;s worden niet in het geheiugen of op de harde schijf opgeslagen">
<!ENTITY foxyproxy.ok.label "OK">
<!ENTITY foxyproxy.ok.accesskey "O">
<!ENTITY foxyproxy.ok.tooltip "Venster sluiten">
<!ENTITY foxyproxy.pattern.template.reference.label "Patroon template referentie">
<!ENTITY foxyproxy.pattern.template.reference.accesskey "T">
<!ENTITY foxyproxy.pattern.template.reference.tooltip "Patroon template referentie">
<!ENTITY foxyproxy.pattern.template.reference.subtitle.label "URL patroon templates bepalen de opmaak waarin URL&apos;s Snel of Automatisch worden toegevoegd aan proxy&apos;s. Templates ondersteunen de volgende speciale zinsdelen die, wanneer Snel toevoegen of Automatisch toevoegen geactiveerd worden, vervangen worden door de overeenkomstige URL component in de adresbalk.">
<!ENTITY foxyproxy.pattern.template.reference.specialstring.label "Speciaal zinsdeel">
<!ENTITY foxyproxy.pattern.template.reference.subststring.label "Vervangen door">
<!ENTITY foxyproxy.pattern.template.reference.example.label "Voorbeeld">
<!ENTITY foxyproxy.pattern.template.reference.scheme.label "protocol">
<!ENTITY foxyproxy.pattern.template.reference.username.label "gebruikersnaam">
<!ENTITY foxyproxy.pattern.template.reference.password.label "wachtwoord">
<!ENTITY foxyproxy.pattern.template.reference.userpass.label "gebruikersnaam &amp; wachtwoord met &quot;:&quot; &amp; &quot;@&quot;">
<!ENTITY foxyproxy.pattern.template.reference.host.label "host">
<!ENTITY foxyproxy.pattern.template.reference.port.label "poort">
<!ENTITY foxyproxy.pattern.template.reference.hostport.label "host &amp; poort met &quot;:&quot;">
<!ENTITY foxyproxy.pattern.template.reference.prepath.label "zinsdeel voor het pad">
<!ENTITY foxyproxy.pattern.template.reference.path.label "pad (inclusief bestandsnaam)">
<!ENTITY foxyproxy.pattern.template.reference.directory.label "map">
<!ENTITY foxyproxy.pattern.template.reference.filebasename.label "basisdeel bestandsnaam">
<!ENTITY foxyproxy.pattern.template.reference.fileextension.label "bestandsextensie">
<!ENTITY foxyproxy.pattern.template.reference.filename.label "volledige bestandsnaam">
<!ENTITY foxyproxy.pattern.template.reference.ref.label "deel na het &quot;#&quot;">
<!ENTITY foxyproxy.pattern.template.reference.query.label "deel na het &quot;?&quot;">
<!ENTITY foxyproxy.pattern.template.reference.spec.label "volledige URL">
<!ENTITY foxyproxy.pattern.template.reference.popup.height "400px">
<!ENTITY foxyproxy.pattern.template.reference.popup.width "800px">
<!ENTITY foxyproxy.notifications.label "Notificaties">
<!ENTITY foxyproxy.notifications.accesskey "N">
<!ENTITY foxyproxy.notifications.tooltip "Notificatie-instellingen">
<!ENTITY foxyproxy.indicators.label "Indicators">
<!ENTITY foxyproxy.indicators.accesskey "I">
<!ENTITY foxyproxy.indicators.tooltip "Indicator-instellingen">
<!ENTITY foxyproxy.misc.label "Diversen">
<!ENTITY foxyproxy.misc.accesskey "D">
<!ENTITY foxyproxy.misc.tooltip "Diverse instellingen">
<!ENTITY foxyproxy.animatedicons.label "Statusbalk-pictogram animeren wanneer deze proxy wordt gebruikt">
<!ENTITY foxyproxy.animatedicons.accesskey "A">
<!ENTITY foxyproxy.animatedicons.tooltip "Pictogrammen animeren wanneer deze proxy wordt gebruikt (Algemene instellingen -&gt; Animaties moet ook worden aangevinkt)">
<!ENTITY foxyproxy.statusbaractivation.label "Statusbalk activering">
<!ENTITY foxyproxy.statusbaractivation.accesskey "S">
<!ENTITY foxyproxy.statusbaractivation.tooltip "Statusbalk activerings-instellingen">
<!ENTITY foxyproxy.toolbaractivation.label "Werkbalk activering">
<!ENTITY foxyproxy.toolbaractivation.accesskey "W">
<!ENTITY foxyproxy.toolbaractivation.tooltip "Werkbalk activerings-instellingen">
<!ENTITY foxyproxy.leftclicksb.label "Links klikken">
<!ENTITY foxyproxy.leftclicksb.accesskey "L">
<!ENTITY foxyproxy.leftclicksb.tooltip "Te nemen actie bij links klikken op FoxyProxy in de statusbalk">
<!ENTITY foxyproxy.middleclicksb.label "Middelklikken">
<!ENTITY foxyproxy.middleclicksb.accesskey "M">
<!ENTITY foxyproxy.middleclicksb.tooltip "Te nemen actie bij middelklikken op FoxyProxy in de statusbalk">
<!ENTITY foxyproxy.rightclicksb.label "Rechts klikken">
<!ENTITY foxyproxy.rightclicksb.accesskey "R">
<!ENTITY foxyproxy.rightclicksb.tooltip "Te nemen actie bij rechts klikken op FoxyProxy in de statusbalk">
<!ENTITY foxyproxy.leftclicktb.label "Links klikken">
<!ENTITY foxyproxy.leftclicktb.accesskey "L">
<!ENTITY foxyproxy.leftclicktb.tooltip "Te nemen actie bij links klikken op FoxyProxy in de werkbalk">
<!ENTITY foxyproxy.middleclicktb.label "Middelklikken">
<!ENTITY foxyproxy.middleclicktb.accesskey "M">
<!ENTITY foxyproxy.middleclicktb.tooltip "Te nemen actie bij middelklikken op FoxyProxy in de werkbalk">
<!ENTITY foxyproxy.rightclicktb.label "Rechts klikken">
<!ENTITY foxyproxy.rightclicktb.accesskey "R">
<!ENTITY foxyproxy.rightclicktb.tooltip "Te nemen actie bij rechts klikken op FoxyProxy in de werkbalk">
<!ENTITY foxyproxy.click.options "Opties-dialoog weergeven">
<!ENTITY foxyproxy.click.cycle "Door modi lopen">
<!ENTITY foxyproxy.click.contextmenu "Contextmenu weergeven">
<!ENTITY foxyproxy.click.reloadcurtab "Huidig tabblad opnieuw laden">
<!ENTITY foxyproxy.click.reloadtabsinbrowser "Alle tabbladen in het huidige browser-venster opnieuw laden">
<!ENTITY foxyproxy.click.reloadtabsinallbrowsers "Alle tabbladen in alle browser-vensters opnieuw laden">
<!ENTITY foxyproxy.click.removeallcookies "Alle cookies verwijderen">
<!ENTITY foxyproxy.includeincycle.label "Deze proxy meenemen wanneer door proxy&apos;s wordt gelopen door op de statusbalk of de werkbalk te klikken (Algemene instellingen-&gt;Statusbalk/Werkbalk activering-&gt;Door modi lopen dient te zijn geselecteerd)">
<!ENTITY foxyproxy.includeincycle.accesskey "M">
<!ENTITY foxyproxy.includeincycle.tooltip "Deze proxy meenemen bij klikken op de statusbalk/werkbalk">
<!ENTITY foxyproxy.changes.msg1 "Help! Waar zijn de instellingen voor HTTP, SSL, FTP, Gopher en SOCKS?">
<!ENTITY foxyproxy.newGUI.popup.height "270px">
<!ENTITY foxyproxy.newGUI.popup.width "400px">
<!ENTITY foxyproxy.newGUI1.label "Het oude FoxyProxy instellingen-venster was gebaseerd op en haast identiek aan het dialoogvenster van de Verbindingsinstellingen van Firefox, dat op zijn beurt weer haast identiek was aan de Proxy-instellingen in de oude Mosaic 2.1.1 browser uit 1996. Het probleem met al deze vensters is hun beperkte mogelijkheden om dataverkeer via een protocol te regelen. Moderne browsers als Firefox gebruiken veel meer protocollen dan HTTP, SSL en Gopher. Deze oude vensters zouden duidelijk onbegrijpelijk worden als ze zouden proberen alle mogelijke protocollen te beschrijven.">
<!ENTITY foxyproxy.newGUI2.label "Omdat FoxyProxy dataverkeer via een protocol al mogelijk maakt met wildcard- en reguliere expressie-patronen is een lijst van protocollen in dit venster niet nodig. Vanaf versie 2.5 is deze lijst niet meer aanwezig in de gebruikersinterface van de Proxy-instellingen. Dit heeft echter geen gevolgen voor de functionaliteit. Het geeft gewoon een eenvoudiger interface. Als u dataverkeer via een protocol wilt regelen dient u witte lijst- en zwarte lijst-patronen te definiëren met aandacht voor de methode/het protocol gedeelte van het patroon (bijvoorbeeld ftp://*.yahoo.com/*, *://leahscape.com/*, etc.)">
<!ENTITY foxyproxy.newGUI4.label "Klik hier voor meer informatie.">
<!ENTITY foxyproxy.error.msg.label "Foutbericht">
<!ENTITY foxyproxy.pac.result.label "PAC resultaat">
<!ENTITY foxyproxy.options.width "800">
<!ENTITY foxyproxy.options.height "477">
<!ENTITY foxyproxy.torwiz.width "660">
<!ENTITY foxyproxy.torwiz.height "375">
<!ENTITY foxyproxy.addeditproxy.width "660">
<!ENTITY foxyproxy.addeditproxy.height "470">

View File

@ -0,0 +1,136 @@
extensions.foxyproxy@eric.h.jung.description=FoxyProxy - Herover uw privacy!
foxyproxy=FoxyProxy
tor=Tor
privoxy=Privoxy
settings.error=Fout bij het inlezen van instellingen
error=Fout
welcome=Welkom bij FoxyProxy!
yes=Ja
no=Nee
disabled=Uitgeschakeld
torwiz.configure=Wilt u FoxyProxy configureren voor gebruik met Tor?
torwiz.with.without.privoxy=Gebruikt u Tor met of zonder Privoxy?
torwiz.with=met
torwiz.without=zonder
torwiz.privoxy.not.required=Merk op: vanaf Firefox 1.5 is Privoxy niet langer nodig om Firefox met Tor te gebruiken. Privoxy voegt wat toe zoals filteren op inhoud, maar het is niet absoluut noodzakelijk voor gebruik met Firefox 1.5+ en Tor. Wilt u toch dat Firefox Tor gebruikt via Privoxy?
torwiz.port=Voer svp de poort in waaraan %S luistert. Indien onbekend, gebruik dan de standaardwaarde.
torwiz.nan=Dat is geen getal
torwiz.proxy.notes=Proxy via het Tor netwerk - http://tor.eff.org
torwiz.google.mail=Google Mail
torwiz.pattern=http://*mail.google.com/*
torwiz.congratulations=Gefeliciteerd! FoxyProxy is geconfigureerd om te worden gebruikt met Tor. Zorgt u er s.v.p. voor dat Tor draait voordat u URL's bezoekt die u via het Tor netwerk benadert. Aanvullend hierop, indien u FoxyProxy hebt geconfigureerd om Privoxy te gebruiken, zorgt u er dan s.v.p. tevens voor dat dit ook draait.
torwiz.cancelled=Gebruik van de FoxyProxy Tor wizard is geannuleerd.
mode.patterns.label=Proxy's op basis van hun gepredefinieerde patronen gebruiken
mode.patterns.accesskey=G
mode.patterns.tooltip=Proxy's op basis van hun gepredefinieerde patronen en voorkeuren gebruiken
mode.custom.label=Proxy "%S" voor alle URL's gebruiken
mode.custom.tooltip=Proxy "%S" voor alle URL's gebruiken
mode.disabled.label=FoxyProxy volledig uitschakelen
mode.disabled.accesskey=U
mode.disabled.tooltip=FoxyProxy volledig uitschakelen
more.label=Meer
more.accesskey=M
more.tooltip=Meer opties
invalid.url=De ingegeven URL voor automatische proxyconfiguratie is niet geldig.
protocols.error=Specificeer svp een of meer protocollen voor de proxy.
noport2=Er dient een poort voor de host te worden gedefinieerd.
nohost2=Er dient een hostnaam te worden gespecificeerd met de poort.
nohostport=Hostnaam en poort dienen te worden gespecifeerd.
torwiz.nopatterns=U hebt geen URL patroon ingegeven. Dit betekent dat het Tor netwerk niet zal worden gebruikt. Toch doorgaan?
months.long.1=Januari
months.short.1=Jan
months.long.2=Februari
months.short.2=Feb
months.long.3=Maart
months.short.3=Mrt
months.long.4=April
months.short.4=Apr
months.long.5=Mei
months.short.5=Mei
months.long.6=Juni
months.short.6=Jun
months.long.7=Juli
months.short.7=Jul
months.long.8=Augustus
months.short.8=Aug
months.long.9=September
months.short.9=Sep
months.long.10=Oktober
months.short.10=Okt
months.long.11=November
months.short.11=Nov
months.long.12=December
months.short.12=Dec
days.long.1=Zondag
days.short.1=Zo
days.long.2=Maandag
days.short.2=Ma
days.long.3=Dinsdag
days.short.3=Di
days.long.4=Woensdag
days.short.4=Wo
days.long.5=Donderdag
days.short.5=Do
days.long.6=Vrijdag
days.short.6=Vr
days.long.7=Zaterdag
days.short.7=Za
timeformat=hh:nn:ss:zzz dd mmm yyyy
file.select=Selecteer het bestand waarin de instellingen moeten worden opgeslagen
manual=Handmatig
auto=Auto
direct=Direct
delete.proxy.confirm=Proxy wissen: weet u dit zeker?
pattern.required=Er moet een patroon worden ingegeven.
pattern.invalid.regex=%S is geen geldige reguliere expressie.
proxy.error.for.url=Fout bij vaststellen proxy voor %S
proxy.default.settings.used=FoxyProxy wordt niet gebruikt voor deze URL - de standaard Firefox verbindingsinstellingen werden gebruikt
proxy.all.urls=Alle URL's werden geconfigureerd om met deze proxy te worden gebruikt
pac.status=FoxyProxy PAC Status
pac.status.loadfailure=Laden PAC voor proxy "%S" mislukt\r\nHttp Statuscode: %S\r\nUitzondering: %S
pac.status.success=PAC voor proxy "%S" geladen
pac.status.error=Fout in PAC voor proxy "%S"\r\nHttp Statuscode: %S\r\nUitzondering: %S
error.noload=Fout. Neem s.v.p. contact op met het FoxyProxy ontwikkelingsteam. Er worden geen privé-gegevens gelekt, maar de bron wordt niet geladen. Uitzondering is %S
proxy.name.required=Voer s.v.p. een naam in voor deze proxy op het tabblad Algemeen.
proxy.default=Standaard
proxy.default.notes=Dit zijn de instellingen die worden gebruikt als geen enkel patroon met de URL overeenkomt.
proxy.default.match.name=Alle
delete.proxy.default=U kunt deze proxy niet verwijderen.
copy.proxy.default=U kunt deze proxy niet kopiëren.
logg.maxsize.change=Dit zal het logbestand wissen. Doorgaan?
logg.maxsize.maximum=De aanbevolen maximale grootte is 9999. Hogere getallen zullen meer geheugen gebruiken en kunnen de prestatie beïnvloeden. Toch doorgaan?
proxy.random=De proxy is willekeurig geselecteerd.
mode.random.label=Willekeurige proxy's gebruiken voor alle URL's (alle patronen en voorrangsregels negeren)
mode.random.accesskey=W
mode.random.tooltip=URL's via willekeurige proxy's laden (alle patronen en voorrangsregels negeren)
random=Willekeurig
random.applicable=Deze instelling is alleen van toepassing in de "Willekeurige proxy's gebruiken voor alle URL's (alle patronen en voorrangsregels negeren)" modus.
superadd.error=Configuratiefout: %S is uitgeschakeld.
superadd.notify=Proxy %S
superadd.url.added=Patroon %S toegevoegd aan proxy "%S"
autoadd.pattern.label=Dynamisch patroon
quickadd.pattern.label=Dynamisch SnelToevoegen patroon
torwiz.proxydns=Wilt u dat DNS verzoeken via het Tor netwerk worden geleid? Als u deze vraag niet begrijpt, klik dan op "Ja"
superadd.verboten2=%S kan niet worden ingeschakeld omdat er geen proxy's zijn gedefinieerd of alle proxy's zijn uitgeschakeld.
autoadd.notice=Opmerking: Automatisch toevoegen heeft effect op de tijd waarbinnen een website laadt. Hoe complexer uw patroon en hoe groter de website, des te langer duurt het voordat Automatisch toevoegen is uitgevoerd. Als u op forse vertragingen stuit, schakel dan Automatisch toevoegen uit.\n\nU kunt beter Snel toevoegen gebruiken in plaats van Automatisch toevoegen.
autoadd.notice2=
autoconfurl.test.success=De PAC is gevonden, geladen en succesvol ingevoegd.
autoconfurl.test.fail=Er is een probleem opgetreden bij het laden, vinden of ontleden van de PAC:\nHTTP Statuscode: %S\nUitzondering: %S
none=Geen
delete.settings.ask=Wilt u de Foxyproxy instellingen zoals opgeslagen bij %S verwijderen?
delete.settings.confirm=%S zal worden verwijderd wanneer alle browservensters zijn gesloten.
no.wildcard.characters=Het patroon heeft geen wildcard-karakters. Dit betekent dat "%S" exact zal worden gematcht. Het is niet gebruikelijk dat FoxyProxy op deze wijze wordt gebruikt, en het betekent waarschijnlijk dat er een fout in het patroon zit of dat u niet begrijpt hoe FoxyProxy patronen moeten worden gedefinieerd. Toch doorgaan?
message.stop=Dit bericht niet meer weergeven
log.save=Logbestand opslaan
log.saved2=Het logbestand is opgeslagen in %S. Nu bekijken?
log.nourls.url=Niet in logbestand opgeslagen
log.scrub=Bestaande log entries van URL's wissen?
no.white.patterns=U hebt geen URL patronen van de witte lijst (opnemen) ingegeven. Dit betekent dat de proxy niet zal worden gebruikt. Toch doorgaan?
quickadd.quickadd.canceled=Snel toevoegen is afgebroken omdat de huidige URL al overeenkomt met het bestaande patroon "%S" in proxy "%S"
quickadd.nourl=Huidige URL ophalen niet mogelijk
cookies.allremoved=Alle cookies verwijderd
route.error=Fout bij bepalen van de proxy-host
route.exception=Uitzondering bij bepalen van proxy-host voor %S
see.log=Kijk s.v.p. in het logbestand voor meer informatie.
pac.select=Selecteer het te gebruiken PAC bestand
pac.files=PAC bestanden

View File

@ -0,0 +1,55 @@
<!-- switched from xhtml to html because of BabelZilla WTS adds extraneous html tags on locale download -->
<html>
<head>
<style type="text/css">
table {
border-width: 0px;
border-spacing: 2px;
border-style: none;
border-color: white;
border-collapse: separate;
background-color: rgb(250, 240, 230);
font-size: x-small;
font-family: verdana, sans-serif;
}
table td,table th {
border-width: 1px;
padding: 1px;
border-style: groove;
border-color: green;
background-color: rgb(250, 240, 230);
vertical-align: top;
font-size: x-small;
font-family: verdana, sans-serif;
}
p {background-color: white; font-size: x-small; font-family: verdana, sans-serif;}
body {font-family: verdana, sans-serif;}
h3 {font-size: small;}
h4 {font-size: x-small;}
</style>
</head>
<body>
<h3>URL Patronen</h3>
<p>Voordat Firefox een URL laadt, vraagt het aan FoxyProxy of een proxy moet worden gebruikt.
FoxyProxy beantwoordt deze vraag door de huidige URL te vergelijken met alle URL patronen hieronder gedefinieerd.
De eenvoudigste manier om een patroon te specificeren is met wildcards.</p>
<h4><a name="wildcards">Wildcards</a></h4>
<p>Wildcards worden in de gehele computerwereld gebruikt; waarschijnlijk hebt u ze wel eens eerder
gezien. De asterisk (*) dient als wildcard karakter voor nul of meer karakters,
en het vraagteken (?) dient als wildcard karakter voor een willekeurig enkel karakter.
</p>
<p>Meer geavanceerde vergelijkingsregels zijn mogelijk door gebruik te maken van reguliere uitdrukkingen. Klik voor details op de "Help Inhoud" knop.</p>
<h4>Wildcard voorbeelden</h4>
<table>
<thead><tr><th>URL patroon</th><th>Enkele matches</th><th>Enkele niet-matches</th></tr></thead>
<tr><td>*//:*.yahoo.com/*</td><td>Alles in het Yahoo-domein</td><td>http://mail.google.com/</td></tr>
<tr><td>*//:mail.yahoo.com/*</td><td>http://mail.yahoo.com/<br/>http://mail.yahoo.com/clownshoes/<br/>http://mail.yahoo.com/inbox/123.html<br/>ftp://mail.yahoo.com</td><td>http://maps.yahoo.com</td></tr>
<tr><td>http://??.wikipedia.org/wiki/Clown</td><td>http://en.wikipedia.org/wiki/Clown<br/>http://de.wikipedia.org/wiki/Clown<br/>http://cs.wikipedia.org/wiki/Clown</td><td>https://en.wikipedia.org/wiki/Clown<br/>http://de.wikipedia.org/wiki/Clown/<br/>ftp://en.wikipedia.org/wiki/Clown</td></tr>
<tr><td>http://digg.com/</td><td>http://digg.com/</td><td>http://digg.com<br/>http://www.digg.com/</td></tr>
<tr><td>*://*.asimov.???/*</td><td>ftp://ftp.asimov.net/<br/>ftp://ftp.asimov.com/theory.html<br/>http://bear.asimov.net/mom/<br/>https://isaac.asimov.org/hercules<br/>gopher://asimov.net/</td>
<td>ftp://ftp.asimov.co.uk<br/>http://isaac.home.com/tin.php</td></tr>
<tr><td>*</td><td><i>Matcht alles</i></td><td>&nbsp;</td></tr>
</table>
</body>
</html>

View File

@ -0,0 +1,427 @@
<!ENTITY foxyproxy.label "FoxyProxy">
<!ENTITY foxyproxy.accesskey "F">
<!ENTITY foxyproxy.tooltip "FoxyProxy">
<!ENTITY foxyproxy.optionsdialog.label "FoxyProxy - opcje">
<!ENTITY foxyproxy.options.label "Opcje">
<!ENTITY foxyproxy.options.accesskey "P">
<!ENTITY foxyproxy.options.tooltip "Otwiera okno dialogowe opcji">
<!ENTITY foxyproxy.tree.pickertooltiptext.label "Kliknij, aby wybrać kolumnę do wyświetlania">
<!ENTITY foxyproxy.proxy.name.label "Nazwa proxy">
<!ENTITY foxyproxy.proxy.name.accesskey "N">
<!ENTITY foxyproxy.proxy.name.tooltip "W polu obok wprowadź nazwę proxy">
<!ENTITY foxyproxy.proxy.notes.label "Uwagi">
<!ENTITY foxyproxy.proxy.notes.accesskey "U">
<!ENTITY foxyproxy.proxy.notes.tooltip "Uwagi o proxy">
<!ENTITY foxyproxy.pattern.label "Wzorzec">
<!ENTITY foxyproxy.pattern.type.label "Typ wzorca">
<!ENTITY foxyproxy.whitelist.blacklist.label "Zezwolenia">
<!ENTITY foxyproxy.pattern.name.label "Nazwa wzorca">
<!ENTITY foxyproxy.pattern.name.accesskey "W">
<!ENTITY foxyproxy.pattern.name.tooltip "Nazwa wzorca">
<!ENTITY foxyproxy.url.pattern.label "Adres lub wzorzec URL">
<!ENTITY foxyproxy.url.pattern.accesskey "U">
<!ENTITY foxyproxy.url.pattern.tooltip "Adres lub wzorzec URL">
<!ENTITY foxyproxy.enabled.label "Włączone">
<!ENTITY foxyproxy.enabled.accesskey "E">
<!ENTITY foxyproxy.enabled.tooltip "Włącza/wyłącza opcję">
<!ENTITY foxyproxy.delete.selection.label "Usuń">
<!ENTITY foxyproxy.delete.selection.accesskey "U">
<!ENTITY foxyproxy.delete.selection.tooltip "Usuwa zaznaczone elementy">
<!ENTITY foxyproxy.edit.selection.label "Edytuj">
<!ENTITY foxyproxy.edit.selection.accesskey "E">
<!ENTITY foxyproxy.edit.selection.tooltip "Edytuje zaznaczone elementy">
<!ENTITY foxyproxy.help.label "Pomoc">
<!ENTITY foxyproxy.help.accesskey "C">
<!ENTITY foxyproxy.help.tooltip "Wyświetla menu Pomoc">
<!ENTITY foxyproxy.close.label "Zamknij">
<!ENTITY foxyproxy.close.accesskey "Z">
<!ENTITY foxyproxy.close.tooltip "Zamyka okno">
<!ENTITY foxyproxy.about.label "O rozszerzeniu">
<!ENTITY foxyproxy.about.accesskey "O">
<!ENTITY foxyproxy.about.tooltip "Otwiera okno informacyjne rozszerzenia">
<!ENTITY foxyproxy.online.label "FoxyProxy online">
<!ENTITY foxyproxy.online.accesskey "F">
<!ENTITY foxyproxy.online.tooltip "Otwiera stronę domową FoxyProxy">
<!ENTITY foxyproxy.tor.label "Kreator Tor">
<!ENTITY foxyproxy.tor.accesskey "K">
<!ENTITY foxyproxy.tor.tooltip "Otwiera kreatora Tor">
<!ENTITY foxyproxy.copy.selection.label "Kopiuj">
<!ENTITY foxyproxy.copy.selection.accesskey "K">
<!ENTITY foxyproxy.copy.selection.tooltip "Kopiuje zaznaczone elementy">
<!ENTITY foxyproxy.mode.label "Wybierz tryb">
<!ENTITY foxyproxy.auto.url.label "Adres pliku automatycznej konfiguracji proxy">
<!ENTITY foxyproxy.auto.url.accesskey "A">
<!ENTITY foxyproxy.auto.url.tooltip "Wprowadź adres URL pliku *.pac">
<!ENTITY foxyproxy.port.label "Port">
<!ENTITY foxyproxy.port.accesskey "P">
<!ENTITY foxyproxy.port.tooltip "Podaj numer portu">
<!ENTITY foxyproxy.socks.proxy.label "Serwer proxy SOCKS">
<!ENTITY foxyproxy.socks.proxy.accesskey "C">
<!ENTITY foxyproxy.socks.proxy.tooltip "Adres URL serwera proxy SOCKS">
<!ENTITY foxyproxy.socks.v4 "SOCKS v4/4a">
<!ENTITY foxyproxy.socks.v5 "SOCKS v5">
<!ENTITY foxyproxy.addeditpattern.title "Dodawanie/edycja wzorca">
<!ENTITY foxyproxy.wildcard.label "Wieloznacznik">
<!ENTITY foxyproxy.wildcard.accesskey "W">
<!ENTITY foxyproxy.wildcard.tooltip "Określa, że adres lub wzorzec URL używa wieloznacznika i nie jest wyrażeniem regularnym">
<!ENTITY foxyproxy.wildcard.example.label "Na przykład: *mail.yahoo.com/*">
<!ENTITY foxyproxy.regex.label "RegExp">
<!ENTITY foxyproxy.regex.accesskey "R">
<!ENTITY foxyproxy.regex.tooltip "Określa, że adres lub wzorzec URL jest wyrażeniem regularnym">
<!ENTITY foxyproxy.regex.example.label "Na przykład: http?://.*\.mail\.yahoo\.com/.*">
<!ENTITY foxyproxy.version "Wersja">
<!ENTITY foxyproxy.createdBy "Autor:">
<!ENTITY foxyproxy.copyright "Prawa autorskie: Copyright ">
<!ENTITY foxyproxy.rights "Wszelkie prawa zastrzeżone.">
<!ENTITY foxyproxy.released "Wydano na bazie licencji GPL.">
<!ENTITY foxyproxy.thanks "Specjalne podziękowania dla">
<!ENTITY foxyproxy.translations "Tłumaczenia">
<!ENTITY foxyproxy.tab.general.label "Ogólne">
<!ENTITY foxyproxy.tab.general.accesskey "O">
<!ENTITY foxyproxy.tab.general.tooltip "Zarządzanie ogólnymi ustawieniami proxy">
<!ENTITY foxyproxy.tab.proxy.label "Szczegóły proxy">
<!ENTITY foxyproxy.tab.proxy.accesskey "S">
<!ENTITY foxyproxy.tab.proxy.tooltip "Zarządzanie szczegółowymi ustawieniami proxy">
<!ENTITY foxyproxy.tab.patterns.label "Wzorzec">
<!ENTITY foxyproxy.tab.patterns.accesskey "W">
<!ENTITY foxyproxy.tab.patterns.tooltip "Zarządzanie wzorcami adresów URL">
<!ENTITY foxyproxy.add.title "ustawienia proxy">
<!ENTITY foxyproxy.pattern.description "Tutaj można dodać lub usunąć adres URL jaki używa to proxy">
<!ENTITY foxyproxy.pattern.matchtype.label "Zawartość wzorca">
<!ENTITY foxyproxy.pattern.matchtype2.label "Zawartość wzorca do identyfikacji zablokowanych witryn">
<!ENTITY foxyproxy.pattern.template.matchtype.label "Zawartość szablonu wzorca">
<!ENTITY foxyproxy.pattern.whiteblack.label "URL dozwolone/niedozwolone">
<!ENTITY foxyproxy.add.option.direct.label "Bezpośrednie połączenie z internetem (bez proxy)">
<!ENTITY foxyproxy.add.option.direct.accesskey "B">
<!ENTITY foxyproxy.add.option.direct.tooltip "Proxy nie będzie używane, zostanie użyte bezpośrednie połączenie z internetem">
<!ENTITY foxyproxy.add.option.manual.label "Ręczna konfiguracja serwerów proxy">
<!ENTITY foxyproxy.add.option.manual.accesskey "R">
<!ENTITY foxyproxy.add.option.manual.tooltip "Ręczna konfiguracja serwerów proxy">
<!ENTITY foxyproxy.add.new.pattern.label "Dodaj nowy wzorzec">
<!ENTITY foxyproxy.add.new.pattern.accesskey "D">
<!ENTITY foxyproxy.add.new.pattern.tooltip "Dodaj nowy wzorzec">
<!ENTITY foxyproxy.menubar.file.label "Plik">
<!ENTITY foxyproxy.menubar.file.accesskey "P">
<!ENTITY foxyproxy.menubar.file.tooltip "Otwiera menu Plik">
<!ENTITY foxyproxy.menubar.help.label "Pomoc">
<!ENTITY foxyproxy.menubar.help.accesskey "C">
<!ENTITY foxyproxy.menubar.help.tooltip "Otwiera pomoc">
<!ENTITY foxyproxy.mode.accesskey "T">
<!ENTITY foxyproxy.mode.tooltip "Wybór trybu pracy FoxyProxy">
<!ENTITY foxyproxy.tab.proxies.label "Proxy">
<!ENTITY foxyproxy.tab.proxies.accesskey "P">
<!ENTITY foxyproxy.tab.proxies.tooltip "Zarządzanie proxy">
<!ENTITY foxyproxy.tab.global.label "Ogólne">
<!ENTITY foxyproxy.tab.global.accesskey "G">
<!ENTITY foxyproxy.tab.global.tooltip "Zarządzanie ustawieniami ogólnymi">
<!ENTITY foxyproxy.tab.logging.label "Dziennik">
<!ENTITY foxyproxy.tab.logging.accesskey "D">
<!ENTITY foxyproxy.tab.logging.tooltip "Zarządzanie ustawieniami dziennika zdarzeń">
<!ENTITY foxyproxy.proxydns.label "Użyj SOCKS proxy dla DNS lookups">
<!ENTITY foxyproxy.proxydns.accesskey "U">
<!ENTITY foxyproxy.proxydns.tooltip "Jeżeli opcja jest zaznaczona, DNS lookups będą przechodziły przez serwer proxy SOCKS">
<!ENTITY foxyproxy.proxydns.notice "Aby zmiany zostały zastosowane należy ponownie uruchomić przeglądarkę.">
<!ENTITY foxyproxy.showstatusbaricon.label "Wyświetl ikonę na pasku stanu">
<!ENTITY foxyproxy.showstatusbaricon.accesskey "K">
<!ENTITY foxyproxy.showstatusbaricon.tooltip "Po zaznaczeniu tej opcji ikona FoxyProxy będzie wyświetlana na pasku stanu">
<!ENTITY foxyproxy.showstatusbarmode.label "Wyświetl tryb FoxyProxy (tekst) na pasku stanu">
<!ENTITY foxyproxy.showstatusbarmode.accesskey "B">
<!ENTITY foxyproxy.showstatusbarmode.tooltip "Po zaznaczeniu tej opcji tryb FoxyProxy będzie wyświetlany na pasku stanu">
<!ENTITY foxyproxy.storagelocation.label "Katalog ustawień">
<!ENTITY foxyproxy.storagelocation.accesskey "G">
<!ENTITY foxyproxy.storagelocation.tooltip "Tutaj określ katalog przechowywania ustawień FoxyProxy">
<!ENTITY foxyproxy.tab.logging.timestamp.label "Czas">
<!ENTITY foxyproxy.tab.logging.url.label "URL">
<!ENTITY foxyproxy.host.label "Nazwa serwera">
<!ENTITY foxyproxy.host.accesskey "N">
<!ENTITY foxyproxy.host.tooltip "W polu obok podaj nazwę serwera">
<!ENTITY foxyproxy.clear.label "Wyczyść">
<!ENTITY foxyproxy.clear.accesskey "W">
<!ENTITY foxyproxy.clear.tooltip "Wyczyść">
<!ENTITY foxyproxy.refresh.label "Odśwież">
<!ENTITY foxyproxy.refresh.accesskey "D">
<!ENTITY foxyproxy.refresh.tooltip "Odśwież">
<!ENTITY foxyproxy.save.label "Zapisz">
<!ENTITY foxyproxy.save.accesskey "a">
<!ENTITY foxyproxy.save.tooltip "Zapisz">
<!ENTITY foxyproxy.addnewproxy.label "Dodaj nowe proxy">
<!ENTITY foxyproxy.addnewproxy.accesskey "D">
<!ENTITY foxyproxy.addnewproxy.tooltip "Otwiera menu umożliwiające dodanie nowego proxy">
<!ENTITY foxyproxy.whitelist.label "Dozwolone">
<!ENTITY foxyproxy.whitelist.accesskey "D">
<!ENTITY foxyproxy.whitelist.tooltip "Adresy URL pasujące do tego wzorca będą pobierane przez to proxy">
<!ENTITY foxyproxy.whitelist.description.label "Adresy URL pasujące do tego wzorca będą pobierane przez to proxy">
<!ENTITY foxyproxy.blacklist.label "Niedozwolone">
<!ENTITY foxyproxy.blacklist.accesskey "N">
<!ENTITY foxyproxy.blacklist.tooltip "Adresy URL pasujące do tego wzorca nie będą pobierane przez to proxy">
<!ENTITY foxyproxy.blacklist.description.label "Adresy URL pasujące do tego wzorca nie będą pobierane przez to proxy">
<!ENTITY foxyproxy.whiteblack.description.label "Precedensy wzorców dozwolonych i niedozwolonych. Jeśli adres URL pasuje do wzorca dozwolonego i niedozwolonego dla tego samego proxy, zostanie wykluczony lub nie (w zależności od wyboru) z pobierania przez to proxy.">
<!ENTITY foxyproxy.usingPFF.label1 "Używam">
<!ENTITY foxyproxy.usingPFF.label2 "Portable Firefox">
<!ENTITY foxyproxy.usingPFF.accesskey "P">
<!ENTITY foxyproxy.usingPFF.tooltip "Zaznacz tę opcję jeśli używasz Portable Firefox">
<!ENTITY foxyproxy.socks.version.label "Wersja SOCKS">
<!ENTITY foxyproxy.autopacurl.label "Adres URL pliku *.pac">
<!ENTITY foxyproxy.issocks.label "Proxy SOCKS">
<!ENTITY foxyproxy.issocks.accesskey "S">
<!ENTITY foxyproxy.issocks.tooltip "Zaznacz to pole jeśli chcesz używać proxy SOCKS">
<!ENTITY foxyproxy.chinese.simplified "Chiński(uproszczony)">
<!ENTITY foxyproxy.chinese.traditional "Chiński(tradycyjny)">
<!ENTITY foxyproxy.croatian "Chorwacki">
<!ENTITY foxyproxy.czech "Czeski">
<!ENTITY foxyproxy.danish "Duński">
<!ENTITY foxyproxy.dutch "Holenderski">
<!ENTITY foxyproxy.english "Angielski">
<!ENTITY foxyproxy.english.british "Angielski-brytyjski">
<!ENTITY foxyproxy.french "Francuski">
<!ENTITY foxyproxy.german "Niemiecki">
<!ENTITY foxyproxy.greek "Grecki">
<!ENTITY foxyproxy.hungarian "Węgierski">
<!ENTITY foxyproxy.italian "Włoski">
<!ENTITY foxyproxy.persian "Perski">
<!ENTITY foxyproxy.polish "Polski">
<!ENTITY foxyproxy.portugese.brazilian "Portugalski-brazylijski">
<!ENTITY foxyproxy.portugese.portugal "Portugalski">
<!ENTITY foxyproxy.romanian "Rumuński">
<!ENTITY foxyproxy.russian "Rosyjski">
<!ENTITY foxyproxy.slovak "Słowacki">
<!ENTITY foxyproxy.spanish.spain "Hiszpański">
<!ENTITY foxyproxy.spanish.argentina "Hiszpański (argentyński)">
<!ENTITY foxyproxy.swedish "Szwedzki">
<!ENTITY foxyproxy.thai.thailand "Tajski">
<!ENTITY foxyproxy.turkish "Turecki">
<!ENTITY foxyproxy.ukrainian "Ukraiński">
<!ENTITY foxyproxy.your.language "Polski">
<!ENTITY foxyproxy.your.name.here "Leszek(teo)Życzkowski">
<!ENTITY foxyproxy.moveup.label "Do góry">
<!ENTITY foxyproxy.moveup.tooltip "Zwiększa priorytet tego elementu">
<!ENTITY foxyproxy.moveup.accesskey "G">
<!ENTITY foxyproxy.movedown.label "W dół">
<!ENTITY foxyproxy.movedown.tooltip "Zmniejsza priorytet tego elementu">
<!ENTITY foxyproxy.movedown.accesskey "D">
<!ENTITY foxyproxy.autoconfurl.view.label "Zobacz">
<!ENTITY foxyproxy.autoconfurl.view.accesskey "Z">
<!ENTITY foxyproxy.autoconfurl.view.tooltip "Wyświetla plik automatycznej konfiguracji">
<!ENTITY foxyproxy.autoconfurl.test.label "Testuj">
<!ENTITY foxyproxy.autoconfurl.test.accesskey "T">
<!ENTITY foxyproxy.autoconfurl.test.tooltip "Testowanie pliku automatycznej konfiguracji">
<!ENTITY foxyproxy.autoconfurl.reload.label "Odświeżaj plik automatycznej konfiguracji co">
<!ENTITY foxyproxy.autoconfurl.reload.accesskey "O">
<!ENTITY foxyproxy.autoconfurl.reload.tooltip "Określ co jaki czas nastąpi automatyczne odświeżenie pliku *.pac">
<!ENTITY foxyproxy.minutes.label "min.">
<!ENTITY foxyproxy.minutes.tooltip "minut">
<!ENTITY foxyproxy.logging.maxsize.label "Ilość wpisów">
<!ENTITY foxyproxy.logging.maxsize.accesskey "I">
<!ENTITY foxyproxy.logging.maxsize.tooltip "Maksymalna ilość wpisów dziennika zdarzeń zanim nastąpi zawinięcie do początku">
<!ENTITY foxyproxy.logging.maxsize.button.label "Zastosuj">
<!ENTITY foxyproxy.logging.maxsize.button.accesskey "S">
<!ENTITY foxyproxy.logging.maxsize.button.tooltip "Ustawia maksymalną ilość wpisów dziennika zdarzeń zanim nastąpi zawinięcie do początku">
<!ENTITY foxyproxy.random.label "Użyj losowo wybranych proxy dla wszystkich adresów URL (ignoruj wszystkie wzorce i priorytety)">
<!ENTITY foxyproxy.random.accesskey "L">
<!ENTITY foxyproxy.random.tooltip "Wczytuje adresy URL przez losowo wybrane proxy (ignoruje wszystkie wzorce i priorytety)">
<!ENTITY foxyproxy.random.includedirect.label "Dołącz proxy skonfigurowane jako bezpośrednie połączenie internetowe">
<!ENTITY foxyproxy.random.includedirect.accesskey "I">
<!ENTITY foxyproxy.random.includedirect.tooltip "Dołącza proxy skonfigurowane jako bezpośrednie połączenie internetowe do wyboru losowego">
<!ENTITY foxyproxy.random.includedisabled.label "Dołącz wyłączone proxy">
<!ENTITY foxyproxy.random.includedisabled.accesskey "D">
<!ENTITY foxyproxy.random.includedisabled.tooltip "Dołącza proxy skonfigurowane jako wyłączone do wyboru losowego">
<!ENTITY foxyproxy.random.settings.label "Losowy wybór proxy">
<!ENTITY foxyproxy.random.settings.accesskey "L">
<!ENTITY foxyproxy.random.settings.tooltip "Ustawienia, które oddziałowywują na wybór losowy proxy">
<!ENTITY foxyproxy.tab.autoadd.label "Autododawanie">
<!ENTITY foxyproxy.tab.autoadd.accesskey "A">
<!ENTITY foxyproxy.tab.autoadd.tooltip "Zarządzanie ustawieniami automatycznego dodawania">
<!ENTITY foxyproxy.autoadd.description "Określa wzorzec, który identyfikuje zablokowane witryny. Gdy wzorzec zostanie znaleziony na stronie i pasuje do określonego adresu URL zostanie automatycznie dodany do proxy i opcjonalnie odświeżony. Zabezpiecza to przed prewencyjnym identyfikowaniem wszystkich zablokowanych witryn.">
<!ENTITY foxyproxy.autoadd.pattern.label "Wzorzec do identyfikacji zablokowanych witryn">
<!ENTITY foxyproxy.autoadd.pattern.accesskey "W">
<!ENTITY foxyproxy.autoadd.pattern.tooltip "Wzorzec, który identyfikuje zablokowane witryny">
<!ENTITY foxyproxy.autoadd.wildcard.example.label "Przykład: *Nie jesteś upoważniony do oglądania tej strony*">
<!ENTITY foxyproxy.autoadd.regex.example.label "Przykład: .*Strona.*została zablokowana.*">
<!ENTITY foxyproxy.autoadd.proxy.label "Proxy, do których wzorce są automatycznie dodawane">
<!ENTITY foxyproxy.autoadd.proxy.accesskey "X">
<!ENTITY foxyproxy.autoadd.proxy.tooltip "Określa proxy, do których adresy URL są automatycznie dodawane">
<!ENTITY foxyproxy.pattern.template.label "Wzorzec szablonu URL">
<!ENTITY foxyproxy.pattern.template.accesskey "r">
<!ENTITY foxyproxy.pattern.template.tooltip "Wzorzec szablonu URL">
<!ENTITY foxyproxy.pattern.template.example.label1 "Przykład dla">
<!ENTITY foxyproxy.pattern.template.example.label2 "http://fred:secret@mail.foo.com:8080/inbox/msg102.htm#subject?style=elegant">
<!ENTITY foxyproxy.pattern.template.currenturl.label "Aktualny adres URL">
<!ENTITY foxyproxy.pattern.template.currenturl.accesskey "A">
<!ENTITY foxyproxy.pattern.template.currenturl.tooltip "URL w pasku adresu">
<!ENTITY foxyproxy.pattern.template.generatedpattern.label "Wygenerowany wzorzec">
<!ENTITY foxyproxy.pattern.template.generatedpattern.accesskey "G">
<!ENTITY foxyproxy.pattern.template.generatedpattern.tooltip "Wzorzec wygenerowany dynamicznie">
<!ENTITY foxyproxy.autoadd.reload.label "Odśwież stronę po dodaniu witryny do proxy">
<!ENTITY foxyproxy.autoadd.reload.accesskey "D">
<!ENTITY foxyproxy.autoadd.reload.tooltip "Automatycznie odświeża stronę po dodaniu jej do proxy">
<!ENTITY foxyproxy.autoadd.notify.label "Informuj o uaktywnieniu autododawania">
<!ENTITY foxyproxy.autoadd.notify.accesskey "I">
<!ENTITY foxyproxy.autoadd.notify.tooltip "Informuje, gdy strona jest zablokowana i wzorzec adresu URL jest dodany do proxy">
<!ENTITY foxyproxy.graphics "Grafika wykonana przez:">
<!ENTITY foxyproxy.website "Strona wykonana przez:">
<!ENTITY foxyproxy.contributions "Współtwórcy:">
<!ENTITY foxyproxy.pacloadnotification.label "Powiadamiaj o wczytywaniu pliku *.pac">
<!ENTITY foxyproxy.pacloadnotification.accesskey "W">
<!ENTITY foxyproxy.pacloadnotification.tooltip "Będzie wyświetlane powiadomienie o wczytywaniu pliku automatycznej konfiguracji proxy">
<!ENTITY foxyproxy.pacerrornotification.label "Powiadamiaj o błędach pliku *.pac">
<!ENTITY foxyproxy.pacerrornotification.accesskey "D">
<!ENTITY foxyproxy.pacerrornotification.tooltip "Będzie wyświetlane powiadomienie o błędach automatycznej konfiguracji proxy">
<!ENTITY foxyproxy.toolsmenu.label "Wyświetl element &quot;FoxyProxy&quot; w menu &quot;Narzędzia&quot;">
<!ENTITY foxyproxy.toolsmenu.accesskey "E">
<!ENTITY foxyproxy.toolsmenu.tooltip "Wyświetla element &quot;FoxyProxy&quot; w menu &quot;Narzędzia&quot;">
<!ENTITY foxyproxy.tip.label "Podpowiedź">
<!ENTITY foxyproxy.pactips.popup.height "190px">
<!ENTITY foxyproxy.pactips.popup.width "400px">
<!ENTITY foxyproxy.pactip1.label "Dla plików *.pac zapisanych na dysku lokalnym proszę używać następującego schematu: file://schemat. Np. file://c:/path/proxy.pac dla systemu Windows lubfile:///home/users/joe/proxy.pac dla systemów Unix/Linux/Mac.">
<!ENTITY foxyproxy.pactip2.label "Dla plików *.pac zapisanych na serwerze FTP proszę używać następującego schematu: file://schemat. Np. ftp://leahscape.com/path/proxy.pac">
<!ENTITY foxyproxy.pactip3.label "Można także używać http://, https:// i inne obsługiwane schematy.">
<!ENTITY foxyproxy.contextmenu.label "Wyświetl element &quot;FoxyProxy&quot; w menu kontekstowym">
<!ENTITY foxyproxy.contextmenu.accesskey "T">
<!ENTITY foxyproxy.contextmenu.tooltip "Wyświetla element &quot;FoxyProxy&quot; w menu kontekstowym">
<!ENTITY foxyproxy.quickadd.desc1 "Szybkie dodawanie po naciśnięciu skrótu Alt+F2 dodaje do proxy dynamiczny wzorzec URL. Jest to praktyczną alternatywą dodawania automatycznego. Skrót Alt+F2 można zmienić za pomocą rozszerzenia">
<!ENTITY foxyproxy.keyconfig.label " KeyConfig">
<!ENTITY foxyproxy.quickadd.desc2 " ">
<!ENTITY foxyproxy.quickadd.label "Szybkie dodawanie">
<!ENTITY foxyproxy.quickadd.accesskey "S">
<!ENTITY foxyproxy.quickadd.tooltip "Zarządzanie ustawieniami szybkiego dodawania">
<!ENTITY foxyproxy.quickadd.notify.label "Informuj o uaktywnieniu szybkiego dodawania">
<!ENTITY foxyproxy.quickadd.notify.accesskey "N">
<!ENTITY foxyproxy.quickadd.notify.tooltip "Wyświetla przewijane okienko, gdy szybkie dodawanie zostaje uaktywnione">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.label "Powiadamiaj gdy automatyczne dodawanie jest anulowane">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.label2 "Szybkie dodawanie jest automatycznie anulowane gdy jest uaktywniane przez skrót [Alt+F2], a obecny w pasku adresu URL jest skojarzony z istniejącym dozwolonym wzorcem. Ten sposób zabezpiecza przed utworzeniem duplikatu, który może spowodować zamęt w twojej konfiguracji. To ustawienie nie włącza/wyłącza anulowania, a włącza powiadomienie, gdy anulowanie następuje.">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.accesskey "P">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.tooltip "Wyświetl powiadomienie gdy szybkie dodawanie jest uaktywnione ale anulowane">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.popup.width "400px">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.popup.height "130px">
<!ENTITY foxyproxy.whatsthis "Co to jest?">
<!ENTITY foxyproxy.quickadd.prompt.label "Sugeruj edycję i potwierdzanie dodania wzorca">
<!ENTITY foxyproxy.quickadd.prompt.accesskey "S">
<!ENTITY foxyproxy.quickadd.prompt.tooltip "Przed dodaniem wzorca do proxy sugeruje jego edycję i potwierdzenie">
<!ENTITY foxyproxy.quickadd.proxy.label "Proxy, do którego jest dodawany wzorzec">
<!ENTITY foxyproxy.quickadd.proxy.accesskey "X">
<!ENTITY foxyproxy.quickadd.proxy.tooltip "Wybierz proxy, do którego zostanie dodany wzorzec">
<!ENTITY foxyproxy.bypasscache.label "Podczas wczytywania pomiń bufor podręczny Firefoksa">
<!ENTITY foxyproxy.bypasscache.accesskey "P">
<!ENTITY foxyproxy.bypasscache.tooltip "Bufor podręczny Firefoksa jest pomijany">
<!ENTITY foxyproxy.advancedmenus.label "Użyj zaawansowanych menu">
<!ENTITY foxyproxy.advancedmenus.accesskey "H">
<!ENTITY foxyproxy.advancedmenus.tooltip "Używa zaawansowanych menu (styl FoxyProxy 2.2)">
<!ENTITY foxyproxy.importsettings.label "Importuj ustawienia">
<!ENTITY foxyproxy.importsettings.accesskey "I">
<!ENTITY foxyproxy.importsettings.tooltip "Importuje ustawienia z pliku">
<!ENTITY foxyproxy.exportsettings.label "Eksportuj ustawienia">
<!ENTITY foxyproxy.exportsettings.accesskey "E">
<!ENTITY foxyproxy.exportsettings.tooltip "Eksportuje ustawienia do pliku">
<!ENTITY foxyproxy.importlist.label "Importuj listę proxy">
<!ENTITY foxyproxy.importlist.accesskey "I">
<!ENTITY foxyproxy.importlist.tooltip "Importuje plik tekstowy zawierający listę proxy">
<!ENTITY foxyproxy.wildcard.reference.label "Informacje o wieloznacznikach">
<!ENTITY foxyproxy.wildcard.reference.accesskey "Z">
<!ENTITY foxyproxy.wildcard.reference.tooltip "Informacje o wieloznacznikach">
<!ENTITY foxyproxy.wildcard.reference.subtitle.label "Gwiazdka (*) oznacza zero lub więcej znaków, a pytajnik (?) jeden znak">
<!ENTITY foxyproxy.wildcard.reference.mistakes "Najczęściej występujące błędy podczas używania wieloznaczników we wzorcach">
<!ENTITY foxyproxy.wildcard.reference.goal.label "Cel">
<!ENTITY foxyproxy.wildcard.reference.goal1.label "Pasuje do wszystkich stron w subdomenie MySpace">
<!ENTITY foxyproxy.wildcard.reference.goal2.label "Pasuje do lokalnego komputera">
<!ENTITY foxyproxy.wildcard.reference.goal3.label "Pasuje do wszystkich subdomen i stron w abc.com">
<!ENTITY foxyproxy.wildcard.reference.goal4.label "Pasuje do wszystkich stron w domenie a.foo.com ale nie pasuje do b.foo.com">
<!ENTITY foxyproxy.wildcard.reference.correct.label "Poprawnie">
<!ENTITY foxyproxy.wildcard.reference.correct2.label "Muszą być dwa wzorce">
<!ENTITY foxyproxy.wildcard.reference.incorrect.label "Niepoprawnie">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason.label "Przyczyna błędu">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason1.label "Ponieważ nie ma wieloznaczników tylko strona główna jest dopasowywana">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason2.label "FoxyProxy nie rozpoznaje tego rodzaju składni">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason3.label "Nie ma wieloznaczników">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason4.label "Nie ma wieloznaczników">
<!ENTITY foxyproxy.wildcard.reference.popup.height "350px">
<!ENTITY foxyproxy.logging.noURLs.label "Nie zapisuj i nie wyświetlaj adresów URL">
<!ENTITY foxyproxy.logging.noURLs.accesskey "N">
<!ENTITY foxyproxy.logging.noURLs.tooltip "Adresy URL nie są zapisywane w pamięci RAM ani na dysku">
<!ENTITY foxyproxy.ok.label "OK">
<!ENTITY foxyproxy.ok.accesskey "O">
<!ENTITY foxyproxy.ok.tooltip "Zamknij okno">
<!ENTITY foxyproxy.pattern.template.reference.label "Relacje szablonu wzorca">
<!ENTITY foxyproxy.pattern.template.reference.accesskey "R">
<!ENTITY foxyproxy.pattern.template.reference.tooltip "Relacje szablonu wzorca">
<!ENTITY foxyproxy.pattern.template.reference.subtitle.label "Szablon wzorca URL definiuje format z jakim adresy URL są szybko dodawane lub automatycznie dodawane do proxy. Szablon obsługuje niżej wymienione specjalne ciągi znaków, które gdy szybkie lub automatyczne dodawanie jest uaktywnione, są w pasku adresu podstawiane zamiast odpowiadających im adresów URL.">
<!ENTITY foxyproxy.pattern.template.reference.specialstring.label "Ciągi specjalne">
<!ENTITY foxyproxy.pattern.template.reference.subststring.label "Zamieniany z">
<!ENTITY foxyproxy.pattern.template.reference.example.label "Przykład">
<!ENTITY foxyproxy.pattern.template.reference.scheme.label "Protokół">
<!ENTITY foxyproxy.pattern.template.reference.username.label "Nazwa użytkownika">
<!ENTITY foxyproxy.pattern.template.reference.password.label "Hasło">
<!ENTITY foxyproxy.pattern.template.reference.userpass.label "Nazwa użytkownika i hasło z &quot;:&quot; i &quot;@&quot;">
<!ENTITY foxyproxy.pattern.template.reference.host.label "Serwer">
<!ENTITY foxyproxy.pattern.template.reference.port.label "Port">
<!ENTITY foxyproxy.pattern.template.reference.hostport.label "Serwer i port z &quot;:&quot;">
<!ENTITY foxyproxy.pattern.template.reference.prepath.label "Ciąg przed ścieżką">
<!ENTITY foxyproxy.pattern.template.reference.path.label "Ścieżka (z nazwą pliku)">
<!ENTITY foxyproxy.pattern.template.reference.directory.label "Katalog">
<!ENTITY foxyproxy.pattern.template.reference.filebasename.label "Nazwa pliku">
<!ENTITY foxyproxy.pattern.template.reference.fileextension.label "Rozszerzenie pliku">
<!ENTITY foxyproxy.pattern.template.reference.filename.label "Pełna nazwa pliku">
<!ENTITY foxyproxy.pattern.template.reference.ref.label "Część za znakiem &quot;#&quot;">
<!ENTITY foxyproxy.pattern.template.reference.query.label "Część za znakiem &quot;?&quot;">
<!ENTITY foxyproxy.pattern.template.reference.spec.label "Cały adres URL">
<!ENTITY foxyproxy.pattern.template.reference.popup.height "420px">
<!ENTITY foxyproxy.pattern.template.reference.popup.width "600px">
<!ENTITY foxyproxy.notifications.label "Powiadomienia">
<!ENTITY foxyproxy.notifications.accesskey "M">
<!ENTITY foxyproxy.notifications.tooltip "Ustawienia powiadomień">
<!ENTITY foxyproxy.indicators.label "Wskaźniki">
<!ENTITY foxyproxy.indicators.accesskey "W">
<!ENTITY foxyproxy.indicators.tooltip "Ustawienia wskaźników">
<!ENTITY foxyproxy.misc.label "Różne">
<!ENTITY foxyproxy.misc.accesskey "R">
<!ENTITY foxyproxy.misc.tooltip "Różne ustawienia">
<!ENTITY foxyproxy.animatedicons.label "Animuj ikonę FoxyProxy">
<!ENTITY foxyproxy.animatedicons.accesskey "A">
<!ENTITY foxyproxy.animatedicons.tooltip "Gdy proxy jest używane ikona FoxyProxy na pasku stanu będzie animowana">
<!ENTITY foxyproxy.statusbaractivation.label "Działanie ikony FoxyProxy na pasku stanu">
<!ENTITY foxyproxy.statusbaractivation.accesskey "T">
<!ENTITY foxyproxy.statusbaractivation.tooltip "Ustawienia działania przycisków myszy na pasku stanu">
<!ENTITY foxyproxy.toolbaractivation.label "Działanie ikony FoxyProxy na pasku narzędziowym">
<!ENTITY foxyproxy.toolbaractivation.accesskey "d">
<!ENTITY foxyproxy.toolbaractivation.tooltip "Ustawienia działania przycisków myszy na pasku narzędziowym">
<!ENTITY foxyproxy.leftclicksb.label "Kliknięcie lpm">
<!ENTITY foxyproxy.leftclicksb.accesskey "L">
<!ENTITY foxyproxy.leftclicksb.tooltip "Działanie jakie zostanie wykonane po kliknięciu lpm na ikonie FoxyProxy na pasku stanu">
<!ENTITY foxyproxy.middleclicksb.label "Kliknięcie śpm">
<!ENTITY foxyproxy.middleclicksb.accesskey "M">
<!ENTITY foxyproxy.middleclicksb.tooltip "Działanie jakie zostanie wykonane po kliknięciu śpm na ikonie FoxyProxy na pasku stanu">
<!ENTITY foxyproxy.rightclicksb.label "Kliknięcie ppm">
<!ENTITY foxyproxy.rightclicksb.accesskey "P">
<!ENTITY foxyproxy.rightclicksb.tooltip "Działanie jakie zostanie wykonane po kliknięciu ppm na ikonie FoxyProxy na pasku stanu">
<!ENTITY foxyproxy.leftclicktb.label "Kliknięcie lpm">
<!ENTITY foxyproxy.leftclicktb.accesskey "L">
<!ENTITY foxyproxy.leftclicktb.tooltip "Działanie jakie zostanie wykonane po kliknięciu lpm na ikonie FoxyProxy na pasku narzędziowym">
<!ENTITY foxyproxy.middleclicktb.label "Kliknięcie śpm">
<!ENTITY foxyproxy.middleclicktb.accesskey "M">
<!ENTITY foxyproxy.middleclicktb.tooltip "Działanie jakie zostanie wykonane po kliknięciu śpm na ikonie FoxyProxy na pasku narzędziowym">
<!ENTITY foxyproxy.rightclicktb.label "Kliknięcie ppm">
<!ENTITY foxyproxy.rightclicktb.accesskey "P">
<!ENTITY foxyproxy.rightclicktb.tooltip "Działanie jakie zostanie wykonane po kliknięciu ppm na ikonie FoxyProxy na pasku narzędziowym">
<!ENTITY foxyproxy.click.options "wyświetla okno dialogowe opcji">
<!ENTITY foxyproxy.click.cycle "zmienia na tryby">
<!ENTITY foxyproxy.click.contextmenu "wyświetla menu kontekstowe">
<!ENTITY foxyproxy.click.reloadcurtab "odświeża aktywną kartę">
<!ENTITY foxyproxy.click.reloadtabsinbrowser "odświeża wszystkie karty w aktywnym oknie">
<!ENTITY foxyproxy.click.reloadtabsinallbrowsers "odświeża wszystkie karty we wszystkich oknach">
<!ENTITY foxyproxy.click.removeallcookies "usuwa wszystkie ciasteczka">
<!ENTITY foxyproxy.includeincycle.label "Dołącz to proxy gdy klikasz na pasku stanu lub pasku narzędziowym">
<!ENTITY foxyproxy.includeincycle.accesskey "D">
<!ENTITY foxyproxy.includeincycle.tooltip "Dołącz to proxy gdy zmieniasz proxy klikając na pasku stanu/pasku narzędziowym (opcja &quot;zmiany na tryby&quot; musi być aktywna)">
<!ENTITY foxyproxy.changes.msg1 "Pomocy! Gdzie są ustawienia dla HTTP, SSL, FTP, Gopher, i SOCKS?">
<!ENTITY foxyproxy.newGUI.popup.height "280px">
<!ENTITY foxyproxy.newGUI.popup.width "450px">
<!ENTITY foxyproxy.newGUI1.label "Stare okno ustawień proxy FoxyProxy bazowało na oknie ustawień połączenia z internetem Firefoksa, które było bardzo podobne do okna ustawień proxy w archaicznej już przeglądarce Mosaic 2.1.1 z 1996 roku. Limitowana zdolność kierowania ruchem przez protokoły stanowiła poważny problem tych okien. Nowoczesne przeglądarki takie jak Firefox obsługują dużo więcej protokołów niż tylko HTTP, SSL, FTP, i GOPHER. Te okna dialogowe stały się niepraktyczne, bo uniemożliwiały umieszczenie w nich wszystkich dostępnych protokołów.">
<!ENTITY foxyproxy.newGUI2.label "Ponieważ FoxyProxy potrafi kierować ruchem za pomocą protokołów zawierających wzorce oparte na wieloznacznikach i wyrażeniach regularnych, wyszczególnianie w tych oknach protokołów jest zbyteczne. W wersji FoxyProxy 2.5 lista tych protokołów została usunięta z interfejsu ustawień proxy. Nie ogranicza to w żaden sposób funkcjonalności, a czyni interfejs prostszym. Jeśli potrzebujesz kierować ruchem za pomocą protokołów zdefiniuj dozwolone i niedozwolone wzorce zwracając szczególną uwagę na część wzorca zawierającą schemat/protokół (np. ftp://*.yahoo.com/*, *://leahscape.com/*, itd.)">
<!ENTITY foxyproxy.newGUI4.label "Kliknij tutaj, aby uzyskać więcej informacji.">
<!ENTITY foxyproxy.error.msg.label "Informacja o błędzie">
<!ENTITY foxyproxy.pac.result.label "Wynik PAC">
<!ENTITY foxyproxy.options.width "700px">
<!ENTITY foxyproxy.options.height "480px">
<!ENTITY foxyproxy.torwiz.width "690px">
<!ENTITY foxyproxy.torwiz.height "375px">
<!ENTITY foxyproxy.addeditproxy.width "690px">
<!ENTITY foxyproxy.addeditproxy.height "465px">

View File

@ -0,0 +1,136 @@
extensions.foxyproxy@eric.h.jung.description=FoxyProxy - Zachowaj swoją prywatność!
foxyproxy=FoxyProxy
tor=Tor
privoxy=Privoxy
settings.error=Błąd wczytywania ustawień
error=Błąd
welcome=Witaj w FoxyProxy!
yes=Tak
no=Nie
disabled=Wyłączone
torwiz.configure=Czy chcesz skonfigurować FoxyProxy, aby używało Tor Network?
torwiz.with.without.privoxy=Chcesz używać Tor z, czy bez Privoxy?
torwiz.with=Z Privoxy
torwiz.without=Bez Privoxy
torwiz.privoxy.not.required=Informacja: Jeżeli używasz Firefoksa 1.5, nie potrzebujesz używać Privoxy, aby używać Firefoksa z Tor. Privoxy dodaje wartość tak jak filtry, ale nie jest niezbędne używanie go z Firefoksem 1.5+ i Tor. Czy nadal chcesz, aby Firefox używał Tor przez Privoxy?
torwiz.port=Proszę wprowadzić numer portu, na którym \"%S\" jest nasłuchiwany. Jeżeli nie znasz numeru portu, użyj domyślnego.
torwiz.nan=To nie jest numer.
torwiz.proxy.notes=Proxy przez Tor Network - http://tor.eff.org
torwiz.google.mail=Google Mail
torwiz.pattern=http://*mail.google.com/*
torwiz.congratulations=Gratulacje! FoxyProxy zostało skonfigurowane do używania z Tor. Proszę upewnić się, czy Tor jest uruchomiony przed odwiedzeniem adresów URL, które są zdefiniowane do używania sieci Tor. Ponadto, jeżeli FoxyProxy zostało skonfigurowane do używania Privoxy, proszę upewnić się, czy Privoxy również jest uruchomione.
torwiz.cancelled=Anulowano działanie kreatora FoxyProxy Tor
mode.patterns.label=Proxy według wzorców i priorytetów
mode.patterns.accesskey=Z
mode.patterns.tooltip=Używa proxy oparte na predefiniowanych wzorcach i priorytetach
mode.custom.label=Proxy \"%S\" dla wszystkich adresów
mode.custom.tooltip=Używa proxy \"%S\" dla wszystkich adresów URL
mode.disabled.label=Wyłącz FoxyProxy
mode.disabled.accesskey=W
mode.disabled.tooltip=Wyłącza całkowicie FoxyProxy
more.label=Więcej
more.accesskey=C
more.tooltip=Wyświetla więcej opcji
invalid.url=Adres URL zdefiniowany dla automatycznej konfiguracji proxy jest nieprawidłowy
protocols.error=Proszę zdefiniować dla proxy przynajmniej jeden protokół
noport2=Dla serwera musi być zdefiniowany port
nohost2=Nazwa serwera musi być zdefiniowana z portem
nohostport=Musi być zdefiniowana nazwa serwera i port
torwiz.nopatterns=Nie wprowadzono żadnych wzorców adresów URL. Oznacza to, że sieć Tor nie będzie używana. Kontynuować?
months.long.1=Styczeń
months.short.1=Sty
months.long.2=Luty
months.short.2=Luty
months.long.3=Marzec
months.short.3=Mar
months.long.4=Kwiecień
months.short.4=Kwie
months.long.5=Maj
months.short.5=Maj
months.long.6=Czerwiec
months.short.6=Czerw
months.long.7=Lipiec
months.short.7=Lip
months.long.8=Sierpień
months.short.8=Sier
months.long.9=Wrzesień
months.short.9=Wrze
months.long.10=Październik
months.short.10=Paź
months.long.11=Listopad
months.short.11=List
months.long.12=Grudzień
months.short.12=Gru
days.long.1=Niedziela
days.short.1=Nie
days.long.2=Poniedziałek
days.short.2=Pon
days.long.3=Wtorek
days.short.3=Wto
days.long.4=Środa
days.short.4=Śro
days.long.5=Czwartek
days.short.5=Czwa
days.long.6=Piątek
days.short.6=Pią
days.long.7=Sobota
days.short.7=Sob
timeformat=hh:nn:ss:zzz a/p mmm dd, yyyy
file.select=Wybierz katalog do zapisu ustawień
manual=Ręcznie
auto=Automatycznie
direct=Direct
delete.proxy.confirm=Na pewno usunąć proxy?
pattern.required=Musi być podany adres lub wzorzec
pattern.invalid.regex=%S nie jest poprawnym wyrażeniem regularnym
proxy.error.for.url=Błąd określający proxy dla %S
proxy.default.settings.used=FoxyProxy nie jest używane dla tego adresu URL - zostaną użyte domyślne ustawienia połączenia Firefoksa
proxy.all.urls=Wszystkie adresy URL zostały skonfigurowane do używania tego proxy
pac.status=FoxyProxy - status pliku automatycznej konfiguracji
pac.status.loadfailure=Nie udało się wczytać pliku automatycznej konfiguracji dla proxy \"%S\"
pac.status.success=Wczytano pliku automatycznej konfiguracji dla proxy \"%S\"
pac.status.error=Błąd w pliku automatycznej konfiguracji dla proxy \"%S\"
error.noload=Błąd. Proszę skontaktować się z zespołem twórców FoxyProxy. Prywatne dane nie będą przekazywane, ale zasoby nie będą wczytane.
proxy.name.required=Proszę wprowadzić nazwę dla tego proxy na karcie \"Ogólne\"
proxy.default=Domyślne
proxy.default.notes=Te ustawienia są używane, gdy niema wzorców pasujących do adresu URL
proxy.default.match.name=Wszystkie
delete.proxy.default=Nie można usunąć tego proxy
copy.proxy.default=Nie można kopiować tego proxy
logg.maxsize.change=Spowoduje to wyczyszczenie pliku dziennika zdarzeń. Kontynuować?
logg.maxsize.maximum=Maksymalna zalecana wielkość to 9999. Większa wartość będzie zużywała więcej pamięci i może powodować negatywnie wpływać na działanie. Kontynuować?
proxy.random=Proxy zostało losowo wybrane
mode.random.label=Użyj losowo wybranych proxy dla wszystkich adresów URL (ignoruj wszystkie wzorce i priorytety)
mode.random.accesskey=L
mode.random.tooltip=Wczytuje adresy URL przez losowo wybrane proxy (ignoruje wszystkie wzorce i priorytety)
random=Losowo
random.applicable=Te ustawienia są stosowane, gdy jest wybrany tryb \"Użyj losowo wybranych proxy dla wszystkich adresów URL (ignoruj wszystkie wzorce i priorytety)\"
superadd.error=Błąd konfiguracji. %S zostało wyłączone.
superadd.notify=Proxy %S
superadd.url.added=Wzorzec %S dodano do proxy "%S"
autoadd.pattern.label=Wzorzec dynamicznego autododawania
quickadd.pattern.label=Wzorzec dynamicznego szybkiego dodawania
torwiz.proxydns=Czy chcesz, aby żądania DNS przechodziły przez sieć Tor? Jeśli nie wiesz co to oznacza, naciśnij \"Tak\"
superadd.verboten2=%S nie może zostać włączone ponieważ nie zdefiniowano proxy lub wszystkie proxy są wyłączone
autoadd.notice=Uwaga: Automatyczne dodawanie ma wpływ na czas wczytywania strony. Złożony wzorzec i duża strona będą wydłużały ten proces. Jeśli czas wczytywania strony ma dla ciebie duże znaczenie, wyłącz automatyczne dodawanie.\n\nZamiast automatycznego dodawania zaleca się używanie szybkiego dodawania.
autoadd.notice2=
autoconfurl.test.success=Plik automatycznej konfiguracji został odnaleziony, pobrany i przetworzony
autoconfurl.test.fail=Wystąpił problem z odnalezieniem, pobraniem lub przetworzeniem pliku *.pac:\\nKod błędu HTTP: %S\\nWyjątek: %S
none=Brak
delete.settings.ask=Czy chcesz usunąć ustawienia FoxyProxy zapisane w %S?
delete.settings.confirm=%S zostanie usunięty po zamknięciu wszystkich okien przeglądarki
no.wildcard.characters=Wzorzec nie zawiera wieloznacznika. Oznacza to, że \"%S\" będzie dopasowywany dokładnie. Ten sposób nie jest zazwyczaj używany przez FoxyProxy. Często oznacza to, że we wzorcu jest błąd lub nie rozumiesz jak należy definiować wzorce FoxyProxy. Czy chcesz mimo wszystko kontynuować?
message.stop=Nie wyświetlaj tej informacji ponownie
log.save=Zapisz zdarzenie
log.saved2=Zdarzenie zostało zapisane w %S. Chcesz zobaczyć teraz?
log.nourls.url=Nie zapisano zdarzenia
log.scrub=Usunąć istniejące zapisy zdarzeń adresów URL?
no.white.patterns=Nie wprowadzono żadnych wzorców URL z listy dozwolonych. Oznacza to, że proxy nie będzie używane. Czy chcesz mimo wszystko kontynuować?
quickadd.quickadd.canceled=Szybkie dodawanie zostało anulowane ponieważ aktualny adres URL jest już skojarzony ze wzorcem o nazwie "%S" w proxy "%S"
quickadd.nourl=Nie można pobrać aktualnego adresu URL
cookies.allremoved=Wszystkie ciasteczka zostały usunięte
route.error=Wystąpił błąd podczas określania serwera proxy
route.exception=Wystąpił wyjątek podczas określania serwera proxy %S
see.log=Aby uzyskać więcej informacji proszę sprawdzić zapisy dziennika zdarzeń
pac.select=Wybierz plik *.pac
pac.files=Pliki *.pac

View File

@ -0,0 +1,55 @@
<!-- switched from xhtml to html because of BabelZilla WTS adds extraneous html tags on locale download -->
<html>
<head>
<style type="text/css">
table {
border-width: 0px;
border-spacing: 2px;
border-style: none;
border-color: white;
border-collapse: separate;
background-color: rgb(250, 240, 230);
font-size: x-small;
font-family: verdana, sans-serif;
}
table td,table th {
border-width: 1px;
padding: 1px;
border-style: groove;
border-color: green;
background-color: rgb(250, 240, 230);
vertical-align: top;
font-size: x-small;
font-family: verdana, sans-serif;
}
p {background-color: white; font-size: x-small; font-family: verdana, sans-serif;}
body {font-family: verdana, sans-serif;}
h3 {font-size: small;}
h4 {font-size: x-small;}
</style>
</head>
<body>
<h3>Wzorce URL</h3>
<p>Przed pobraniem danych z adresu URL, Firefox pyta FoxyProxy, czy powinien zostać użyty serwer pośredniczący (proxy).
FoxyProxy odpowiadając na to pytanie sprawdza, czy na poniższej liście nie ma zdefiniowanych adresów URL pasujących do adresu zawartego w zapytaniu.
Prostym sposobem na zdefiniowanie wzorców jest użycie w nich wieloznaczników.</p>
<h4><a name="wildcards">Wieloznaczniki</a></h4>
<p>Wieloznaczniki są elementami przenikającymi przez cały proces obliczeniowy jakich prawdopodobnie nigdy wcześniej nie widziałeś.
Gwiazdka (*), jako wieloznacznik jest zamiennikiem wszystkich znaków występujących przed znakiem przed, którym została umieszczona,
a znak zapytania (?), zamiennikiem tylko jednego znaku.
</p>
<p>Bardziej zaawansowanymi regułami są wyrażenia regularne (RegExp). Aby poznać szczególy wyrażeń regularnych naciśnij przycisk "Pomoc".</p>
<h4>Przykłady zastosowań wieloznaczników</h4>
<table>
<thead><tr><th>Wzorce URL</th><th>Pasujące</th><th>Niepasujące</th></tr></thead>
<tr><td>*//:*.yahoo.com/*</td><td>Wszystko w domenie Yahoo</td><td>http://mail.google.com/</td></tr>
<tr><td>*//:mail.yahoo.com/*</td><td>http://mail.yahoo.com/<br />http://mail.yahoo.com/clownshoes/<br />http://mail.yahoo.com/inbox/123.html<br />ftp://mail.yahoo.com</td><td>http://maps.yahoo.com</td></tr>
<tr><td>http://??.wikipedia.org/wiki/Clown</td><td>http://en.wikipedia.org/wiki/Clown<br />http://de.wikipedia.org/wiki/Clown<br />http://cs.wikipedia.org/wiki/Clown</td><td>https://en.wikipedia.org/wiki/Clown<br />http://de.wikipedia.org/wiki/Clown/<br />ftp://en.wikipedia.org/wiki/Clown</td></tr>
<tr><td>http://digg.com/</td><td>http://digg.com/</td><td>http://digg.com<br />http://www.digg.com/</td></tr>
<tr><td>*://*.asimov.???/*</td><td>ftp://ftp.asimov.net/<br />ftp://ftp.asimov.com/theory.html<br />http://bear.asimov.net/mom/<br />https://isaac.asimov.org/hercules<br />gopher://asimov.net/</td>
<td>ftp://ftp.asimov.co.uk<br />http://isaac.home.com/tin.php</td></tr>
<tr><td>*</td><td><i>Pasuje wszystko</i></td></tr>
</table>
</body>
</html>

View File

@ -0,0 +1,427 @@
<!ENTITY foxyproxy.label "FoxyProxy">
<!ENTITY foxyproxy.accesskey "F">
<!ENTITY foxyproxy.tooltip "FoxyProxy">
<!ENTITY foxyproxy.optionsdialog.label "FoxyProxy Options">
<!ENTITY foxyproxy.options.label "Opções">
<!ENTITY foxyproxy.options.accesskey "O">
<!ENTITY foxyproxy.options.tooltip "Abre a Janela de Opções">
<!ENTITY foxyproxy.tree.pickertooltiptext.label "Clique para selecionar quais colunas exibir">
<!ENTITY foxyproxy.proxy.name.label "Proxy Name">
<!ENTITY foxyproxy.proxy.name.accesskey "N">
<!ENTITY foxyproxy.proxy.name.tooltip "Proxy Name">
<!ENTITY foxyproxy.proxy.notes.label "Proxy Notes">
<!ENTITY foxyproxy.proxy.notes.accesskey "N">
<!ENTITY foxyproxy.proxy.notes.tooltip "Proxy Notes">
<!ENTITY foxyproxy.pattern.label "Padrão de Correspondência">
<!ENTITY foxyproxy.pattern.type.label "Pattern Type">
<!ENTITY foxyproxy.whitelist.blacklist.label "Whitelist (Inclusive) or Blacklist (Exclusive)">
<!ENTITY foxyproxy.pattern.name.label "Pattern Name">
<!ENTITY foxyproxy.pattern.name.accesskey "P">
<!ENTITY foxyproxy.pattern.name.tooltip "Name for the pattern">
<!ENTITY foxyproxy.url.pattern.label "Endereço ou Padrão de Endereço">
<!ENTITY foxyproxy.url.pattern.accesskey "E">
<!ENTITY foxyproxy.url.pattern.tooltip "Endereço ou Padrão de Endereço">
<!ENTITY foxyproxy.enabled.label "Habilitado">
<!ENTITY foxyproxy.enabled.accesskey "H">
<!ENTITY foxyproxy.enabled.tooltip "Alterna Habilitado/Desabilitado">
<!ENTITY foxyproxy.delete.selection.label "Excluir Seleção">
<!ENTITY foxyproxy.delete.selection.accesskey "S">
<!ENTITY foxyproxy.delete.selection.tooltip "Exclui o item selecionado">
<!ENTITY foxyproxy.edit.selection.label "Editar Seleção">
<!ENTITY foxyproxy.edit.selection.accesskey "E">
<!ENTITY foxyproxy.edit.selection.tooltip "Edita o item selecionado">
<!ENTITY foxyproxy.help.label "Conteúdo de Ajuda">
<!ENTITY foxyproxy.help.accesskey "A">
<!ENTITY foxyproxy.help.tooltip "Exibe a Ajuda">
<!ENTITY foxyproxy.close.label "Fechar">
<!ENTITY foxyproxy.close.accesskey "F">
<!ENTITY foxyproxy.close.tooltip "Fecha a Janela">
<!ENTITY foxyproxy.about.label "Sobre">
<!ENTITY foxyproxy.about.accesskey "S">
<!ENTITY foxyproxy.about.tooltip "Abre a janela Sobre">
<!ENTITY foxyproxy.online.label "FoxyProxy Online">
<!ENTITY foxyproxy.online.accesskey "O">
<!ENTITY foxyproxy.online.tooltip "Visite a página do FoxyProxy na Internet">
<!ENTITY foxyproxy.tor.label "Assistente Tor">
<!ENTITY foxyproxy.tor.accesskey "A">
<!ENTITY foxyproxy.tor.tooltip "Assistente Tor">
<!ENTITY foxyproxy.copy.selection.label "Copiar Seleção">
<!ENTITY foxyproxy.copy.selection.accesskey "C">
<!ENTITY foxyproxy.copy.selection.tooltip "Copia a seleção">
<!ENTITY foxyproxy.mode.label "Seleciona Modo">
<!ENTITY foxyproxy.auto.url.label "Endereço de configuração automática do proxy">
<!ENTITY foxyproxy.auto.url.accesskey "A">
<!ENTITY foxyproxy.auto.url.tooltip "Digite o Endereço ou o Arquivo PAC">
<!ENTITY foxyproxy.port.label "Porta">
<!ENTITY foxyproxy.port.accesskey "P">
<!ENTITY foxyproxy.port.tooltip "Porta">
<!ENTITY foxyproxy.socks.proxy.label "Proxy SOCKS">
<!ENTITY foxyproxy.socks.proxy.accesskey "C">
<!ENTITY foxyproxy.socks.proxy.tooltip "Endereço do Proxy SOCKS">
<!ENTITY foxyproxy.socks.v4 "SOCKS v4/4a">
<!ENTITY foxyproxy.socks.v5 "SOCKS v5">
<!ENTITY foxyproxy.addeditpattern.title "Adicionar/Editar Padrão">
<!ENTITY foxyproxy.wildcard.label "Curingas">
<!ENTITY foxyproxy.wildcard.accesskey "C">
<!ENTITY foxyproxy.wildcard.tooltip "Especifíca que o endereço ou padrão de endereço usa caracteres curingas e não é uma expressão regular">
<!ENTITY foxyproxy.wildcard.example.label "Example: *mail.yahoo.com/*">
<!ENTITY foxyproxy.regex.label "Expressão Regular">
<!ENTITY foxyproxy.regex.accesskey "R">
<!ENTITY foxyproxy.regex.tooltip "Especifíca que o endereço ou padrão de endereço é uma expressão regular">
<!ENTITY foxyproxy.regex.example.label "Example: http?://.*\.mail\.yahoo\.com/.*">
<!ENTITY foxyproxy.version "Versão">
<!ENTITY foxyproxy.createdBy "Criado por:">
<!ENTITY foxyproxy.copyright "Copyright">
<!ENTITY foxyproxy.rights "Todos os direitos reservados.">
<!ENTITY foxyproxy.released "Disponível sobre a">
<!ENTITY foxyproxy.thanks "Agradecimentos especiais para">
<!ENTITY foxyproxy.translations "Translations">
<!ENTITY foxyproxy.tab.general.label "Geral">
<!ENTITY foxyproxy.tab.general.accesskey "G">
<!ENTITY foxyproxy.tab.general.tooltip "Manage General Proxy Settings">
<!ENTITY foxyproxy.tab.proxy.label "Detalhes do Proxy">
<!ENTITY foxyproxy.tab.proxy.accesskey "R">
<!ENTITY foxyproxy.tab.proxy.tooltip "Manage Proxy Details">
<!ENTITY foxyproxy.tab.patterns.label "Padrões">
<!ENTITY foxyproxy.tab.patterns.accesskey "P">
<!ENTITY foxyproxy.tab.patterns.tooltip "Manage URL Patterns">
<!ENTITY foxyproxy.add.title "Configurações do Proxy">
<!ENTITY foxyproxy.pattern.description "Aqui você pode adicionar ou remover endereços para os quais este proxy é usado.">
<!ENTITY foxyproxy.pattern.matchtype.label "Pattern Contains">
<!ENTITY foxyproxy.pattern.matchtype2.label "Pattern To Identify Blocked Websites Contains">
<!ENTITY foxyproxy.pattern.template.matchtype.label "Pattern Template Contains">
<!ENTITY foxyproxy.pattern.whiteblack.label "URL Inclusion/Exclusion">
<!ENTITY foxyproxy.add.option.direct.label "Direct internet connection">
<!ENTITY foxyproxy.add.option.direct.accesskey "D">
<!ENTITY foxyproxy.add.option.direct.tooltip "Do not use a proxy - use the underlying direct internet connection">
<!ENTITY foxyproxy.add.option.manual.label "Configuração Manual do Proxy">
<!ENTITY foxyproxy.add.option.manual.accesskey "M">
<!ENTITY foxyproxy.add.option.manual.tooltip "Manually define a proxy configuration">
<!ENTITY foxyproxy.add.new.pattern.label "Adicionar Novo Padrão">
<!ENTITY foxyproxy.add.new.pattern.accesskey "A">
<!ENTITY foxyproxy.add.new.pattern.tooltip "Adiciona Novo Padrão">
<!ENTITY foxyproxy.menubar.file.label "Arquivo">
<!ENTITY foxyproxy.menubar.file.accesskey "A">
<!ENTITY foxyproxy.menubar.file.tooltip "Abre o Menu Arquivo">
<!ENTITY foxyproxy.menubar.help.label "Ajuda">
<!ENTITY foxyproxy.menubar.help.accesskey "j">
<!ENTITY foxyproxy.menubar.help.tooltip "Abre o Menu Ajuda">
<!ENTITY foxyproxy.mode.accesskey "M">
<!ENTITY foxyproxy.mode.tooltip "Seleciona como habilitar o FoxyProxy">
<!ENTITY foxyproxy.tab.proxies.label "Proxies">
<!ENTITY foxyproxy.tab.proxies.accesskey "P">
<!ENTITY foxyproxy.tab.proxies.tooltip "Gerencia Proxies">
<!ENTITY foxyproxy.tab.global.label "Configurações Globais">
<!ENTITY foxyproxy.tab.global.accesskey "G">
<!ENTITY foxyproxy.tab.global.tooltip "Gerencia Configurações Globais">
<!ENTITY foxyproxy.tab.logging.label "Logging">
<!ENTITY foxyproxy.tab.logging.accesskey "L">
<!ENTITY foxyproxy.tab.logging.tooltip "Gerencia configurações de Log">
<!ENTITY foxyproxy.proxydns.label "Use o proxy SOCKS para lookups de DNS">
<!ENTITY foxyproxy.proxydns.accesskey "U">
<!ENTITY foxyproxy.proxydns.tooltip "Os lookups de DNS serão roteados através do proxy SOCKS, caso a opção esteja marcada">
<!ENTITY foxyproxy.proxydns.notice "O Firefox deve ser reiniciado para que as mudanças tenham efeito.">
<!ENTITY foxyproxy.showstatusbaricon.label "Show icon on statusbar">
<!ENTITY foxyproxy.showstatusbaricon.accesskey "S">
<!ENTITY foxyproxy.showstatusbaricon.tooltip "If checked, FoxyProxy icon is shown on the statusbar">
<!ENTITY foxyproxy.showstatusbarmode.label "Show mode (text) on statusbar">
<!ENTITY foxyproxy.showstatusbarmode.accesskey "S">
<!ENTITY foxyproxy.showstatusbarmode.tooltip "If checked, FoxyProxy mode is shown on the statusbar">
<!ENTITY foxyproxy.storagelocation.label "Configurações de Armazenamento">
<!ENTITY foxyproxy.storagelocation.accesskey "S">
<!ENTITY foxyproxy.storagelocation.tooltip "Caminho para gravar as configurações do FoxyProxy">
<!ENTITY foxyproxy.tab.logging.timestamp.label "Data/Hora">
<!ENTITY foxyproxy.tab.logging.url.label "Endereço">
<!ENTITY foxyproxy.host.label "Host Name">
<!ENTITY foxyproxy.host.accesskey "H">
<!ENTITY foxyproxy.host.tooltip "Host Name">
<!ENTITY foxyproxy.clear.label "Limpar">
<!ENTITY foxyproxy.clear.accesskey "L">
<!ENTITY foxyproxy.clear.tooltip "Limpar">
<!ENTITY foxyproxy.refresh.label "Atualizar">
<!ENTITY foxyproxy.refresh.accesskey "A">
<!ENTITY foxyproxy.refresh.tooltip "Atualizar">
<!ENTITY foxyproxy.save.label "Save">
<!ENTITY foxyproxy.save.accesskey "S">
<!ENTITY foxyproxy.save.tooltip "Save">
<!ENTITY foxyproxy.addnewproxy.label "Adicionar Novo Proxy">
<!ENTITY foxyproxy.addnewproxy.accesskey "A">
<!ENTITY foxyproxy.addnewproxy.tooltip "Adicionar Novo Proxy">
<!ENTITY foxyproxy.whitelist.label "Whitelist">
<!ENTITY foxyproxy.whitelist.accesskey "W">
<!ENTITY foxyproxy.whitelist.tooltip "URLs matching this pattern are loaded through this proxy">
<!ENTITY foxyproxy.whitelist.description.label "URLs matching this pattern are loaded through this proxy">
<!ENTITY foxyproxy.blacklist.label "Blacklist">
<!ENTITY foxyproxy.blacklist.accesskey "B">
<!ENTITY foxyproxy.blacklist.tooltip "URLs matching this pattern are NOT loaded through this proxy">
<!ENTITY foxyproxy.blacklist.description.label "URLs matching this pattern are NOT loaded through this proxy">
<!ENTITY foxyproxy.whiteblack.description.label "Blacklist (exclusion) patterns have precedence over whitelist (inclusion) patterns: if a URL matches both a whitelisted pattern and a blacklisted pattern for the same proxy, the URL is excluded from being loaded by that proxy.">
<!ENTITY foxyproxy.usingPFF.label1 "I am using">
<!ENTITY foxyproxy.usingPFF.label2 "Portable Firefox">
<!ENTITY foxyproxy.usingPFF.accesskey "P">
<!ENTITY foxyproxy.usingPFF.tooltip "Check here if you are using Portable Firefox">
<!ENTITY foxyproxy.socks.version.label "SOCKS Version">
<!ENTITY foxyproxy.autopacurl.label "Auto PAC URL">
<!ENTITY foxyproxy.issocks.label "SOCKS proxy?">
<!ENTITY foxyproxy.issocks.accesskey "S">
<!ENTITY foxyproxy.issocks.tooltip "Is this a web proxy or SOCKS proxy?">
<!ENTITY foxyproxy.chinese.simplified "Chinese (Simplified)">
<!ENTITY foxyproxy.chinese.traditional "Chinese (Traditional)">
<!ENTITY foxyproxy.croatian "Croatian">
<!ENTITY foxyproxy.czech "Czech">
<!ENTITY foxyproxy.danish "Danish">
<!ENTITY foxyproxy.dutch "Dutch">
<!ENTITY foxyproxy.english "English">
<!ENTITY foxyproxy.english.british "English (British)">
<!ENTITY foxyproxy.french "French">
<!ENTITY foxyproxy.german "German">
<!ENTITY foxyproxy.greek "Greek">
<!ENTITY foxyproxy.hungarian "Hungarian">
<!ENTITY foxyproxy.italian "Italian">
<!ENTITY foxyproxy.persian "Persian">
<!ENTITY foxyproxy.polish "Polish">
<!ENTITY foxyproxy.portugese.brazilian "Portugese (Brazilian)">
<!ENTITY foxyproxy.portugese.portugal "Portugese (Portugal)">
<!ENTITY foxyproxy.romanian "Romanian">
<!ENTITY foxyproxy.russian "Russian">
<!ENTITY foxyproxy.slovak "Slovak">
<!ENTITY foxyproxy.spanish.spain "Spanish (Spain)">
<!ENTITY foxyproxy.spanish.argentina "Spanish (Argentina)">
<!ENTITY foxyproxy.swedish "Swedish">
<!ENTITY foxyproxy.thai.thailand "Thai (Thailand)">
<!ENTITY foxyproxy.turkish "Turkish">
<!ENTITY foxyproxy.ukrainian "Ukrainian">
<!ENTITY foxyproxy.your.language "Your Language">
<!ENTITY foxyproxy.your.name.here "Your name here!">
<!ENTITY foxyproxy.moveup.label "Move Up">
<!ENTITY foxyproxy.moveup.tooltip "Increase priority of current selection">
<!ENTITY foxyproxy.moveup.accesskey "U">
<!ENTITY foxyproxy.movedown.label "Move Down">
<!ENTITY foxyproxy.movedown.tooltip "Decrease priority of current selection">
<!ENTITY foxyproxy.movedown.accesskey "D">
<!ENTITY foxyproxy.autoconfurl.view.label "View">
<!ENTITY foxyproxy.autoconfurl.view.accesskey "V">
<!ENTITY foxyproxy.autoconfurl.view.tooltip "View auto-configuration file">
<!ENTITY foxyproxy.autoconfurl.test.label "Test">
<!ENTITY foxyproxy.autoconfurl.test.accesskey "T">
<!ENTITY foxyproxy.autoconfurl.test.tooltip "Test the auto-configuration file">
<!ENTITY foxyproxy.autoconfurl.reload.label "Reload the PAC every">
<!ENTITY foxyproxy.autoconfurl.reload.accesskey "R">
<!ENTITY foxyproxy.autoconfurl.reload.tooltip "Auto-reload the PAC file every specified period">
<!ENTITY foxyproxy.minutes.label "minutes">
<!ENTITY foxyproxy.minutes.tooltip "minutes">
<!ENTITY foxyproxy.logging.maxsize.label "Maximum Size">
<!ENTITY foxyproxy.logging.maxsize.accesskey "M">
<!ENTITY foxyproxy.logging.maxsize.tooltip "Maximum number of log entries before the log wraps to the beginning">
<!ENTITY foxyproxy.logging.maxsize.button.label "Set">
<!ENTITY foxyproxy.logging.maxsize.button.accesskey "S">
<!ENTITY foxyproxy.logging.maxsize.button.tooltip "Sets the maximum number of log entries before the log wraps to the beginning">
<!ENTITY foxyproxy.random.label "Load URLs through random proxies (ignore all patterns and priorities)">
<!ENTITY foxyproxy.random.accesskey "R">
<!ENTITY foxyproxy.random.tooltip "Load URLs through random proxies (ignore all patterns and priorities)">
<!ENTITY foxyproxy.random.includedirect.label "Include proxies configured as direct internet connections">
<!ENTITY foxyproxy.random.includedirect.accesskey "I">
<!ENTITY foxyproxy.random.includedirect.tooltip "Proxies configured as direct internet connections are included in random proxy selection">
<!ENTITY foxyproxy.random.includedisabled.label "Include disabled proxies">
<!ENTITY foxyproxy.random.includedisabled.accesskey "D">
<!ENTITY foxyproxy.random.includedisabled.tooltip "Proxies configured as disabled are included in random proxy selection">
<!ENTITY foxyproxy.random.settings.label "Random Proxy Selection">
<!ENTITY foxyproxy.random.settings.accesskey "R">
<!ENTITY foxyproxy.random.settings.tooltip "Settings which affect random proxy selection">
<!ENTITY foxyproxy.tab.autoadd.label "AutoAdd">
<!ENTITY foxyproxy.tab.autoadd.accesskey "A">
<!ENTITY foxyproxy.tab.autoadd.tooltip "Manage AutoAdd Settings">
<!ENTITY foxyproxy.autoadd.description "Specify a pattern that identifies blocked websites. When the pattern is found on a page, a pattern matching that website&apos;s URL is automatically added to a proxy and optionally reloaded. This prevents you from having to proactively identify all blocked websites">
<!ENTITY foxyproxy.autoadd.pattern.label "Pattern to identify blocked websites">
<!ENTITY foxyproxy.autoadd.pattern.accesskey "P">
<!ENTITY foxyproxy.autoadd.pattern.tooltip "Pattern that identifies blocked websites">
<!ENTITY foxyproxy.autoadd.wildcard.example.label "Example: *You are not authorized to view this page*">
<!ENTITY foxyproxy.autoadd.regex.example.label "Example: .*Site.*has been blocked.*">
<!ENTITY foxyproxy.autoadd.proxy.label "Proxy to which patterns are automatically added">
<!ENTITY foxyproxy.autoadd.proxy.accesskey "P">
<!ENTITY foxyproxy.autoadd.proxy.tooltip "Specify the proxy to which URLs are automatically added">
<!ENTITY foxyproxy.pattern.template.label "URL Pattern Template">
<!ENTITY foxyproxy.pattern.template.accesskey "U">
<!ENTITY foxyproxy.pattern.template.tooltip "URL Pattern Template">
<!ENTITY foxyproxy.pattern.template.example.label1 "Example for ">
<!ENTITY foxyproxy.pattern.template.example.label2 "http://fred:secret@mail.foo.com:8080/inbox/msg102.htm#subject?style=elegant">
<!ENTITY foxyproxy.pattern.template.currenturl.label "Current URL">
<!ENTITY foxyproxy.pattern.template.currenturl.accesskey "C">
<!ENTITY foxyproxy.pattern.template.currenturl.tooltip "URL in the address bar">
<!ENTITY foxyproxy.pattern.template.generatedpattern.label "Generated Pattern">
<!ENTITY foxyproxy.pattern.template.generatedpattern.accesskey "G">
<!ENTITY foxyproxy.pattern.template.generatedpattern.tooltip "Dynamically generated pattern">
<!ENTITY foxyproxy.autoadd.reload.label "Reload the page after site is added to proxy">
<!ENTITY foxyproxy.autoadd.reload.accesskey "R">
<!ENTITY foxyproxy.autoadd.reload.tooltip "Automatically reload the page after it&apos;s been added to a proxy">
<!ENTITY foxyproxy.autoadd.notify.label "Notify me when AutoAdd is triggered">
<!ENTITY foxyproxy.autoadd.notify.accesskey "N">
<!ENTITY foxyproxy.autoadd.notify.tooltip "Informs you when a page is blocked &amp; the URL pattern is added to a proxy">
<!ENTITY foxyproxy.graphics "Graphic design and images by">
<!ENTITY foxyproxy.website "Website by">
<!ENTITY foxyproxy.contributions "Contributions by">
<!ENTITY foxyproxy.pacloadnotification.label "Notify me about proxy auto-configuration file loads">
<!ENTITY foxyproxy.pacloadnotification.accesskey "L">
<!ENTITY foxyproxy.pacloadnotification.tooltip "Display a popup when a PAC file loads">
<!ENTITY foxyproxy.pacerrornotification.label "Notify me about proxy auto-configuration file errors">
<!ENTITY foxyproxy.pacerrornotification.accesskey "E">
<!ENTITY foxyproxy.pacerrornotification.tooltip "Display a popup when about PAC file errors">
<!ENTITY foxyproxy.toolsmenu.label "Show FoxyProxy in the Firefox tools menu">
<!ENTITY foxyproxy.toolsmenu.accesskey "T">
<!ENTITY foxyproxy.toolsmenu.tooltip "Show FoxyProxy in the Firefox tools menu">
<!ENTITY foxyproxy.tip.label "Tip">
<!ENTITY foxyproxy.pactips.popup.height "165px">
<!ENTITY foxyproxy.pactips.popup.width "400px">
<!ENTITY foxyproxy.pactip1.label "For PAC files stored on a local hard drive, use the file:// scheme. For example, file://c:/path/proxy.pac on Windows or file:///home/users/joe/proxy.pac on Unix/Linux/Mac.">
<!ENTITY foxyproxy.pactip2.label "For PAC files on an ftp server, use the ftp:// scheme. For example, ftp://leahscape.com/path/proxy.pac">
<!ENTITY foxyproxy.pactip3.label "You can also use http://, https://, and any other supported scheme.">
<!ENTITY foxyproxy.contextmenu.label "Show FoxyProxy in the context-menu">
<!ENTITY foxyproxy.contextmenu.accesskey "C">
<!ENTITY foxyproxy.contextmenu.tooltip "Show FoxyProxy in the context-menu">
<!ENTITY foxyproxy.quickadd.desc1 "QuickAdd adds a dynamic URL pattern to a proxy when you press Alt-F2. It is practical alternative to AutoAdd. Customize the Alt-F2 shortcut with the ">
<!ENTITY foxyproxy.keyconfig.label "KeyConfig">
<!ENTITY foxyproxy.quickadd.desc2 "extension">
<!ENTITY foxyproxy.quickadd.label "QuickAdd">
<!ENTITY foxyproxy.quickadd.accesskey "Q">
<!ENTITY foxyproxy.quickadd.tooltip "QuickAdd">
<!ENTITY foxyproxy.quickadd.notify.label "Notify me when QuickAdd is activated">
<!ENTITY foxyproxy.quickadd.notify.accesskey "N">
<!ENTITY foxyproxy.quickadd.notify.tooltip "Display a popup when QuickAdd is activated">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.label "Notify me when QuickAdd is canceled">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.label2 "QuickAdd is automatically canceled when QuickAdd is activated through Alt-F2, and the current URL in the address bar already matches an existing proxy&apos;s whitelist pattern. In this way duplicate patterns, which can clutter your configuration, are prevented. This setting does not enable/disable cancelation; rather, it toggles notification when cancelation occurs.">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.accesskey "C">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.tooltip "Display a popup when QuickAdd is activated but canceled">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.popup.width "400px">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.popup.height "130px">
<!ENTITY foxyproxy.whatsthis "What&apos;s This?">
<!ENTITY foxyproxy.quickadd.prompt.label "Prompt for editing and confirmation before adding pattern to proxy">
<!ENTITY foxyproxy.quickadd.prompt.accesskey "P">
<!ENTITY foxyproxy.quickadd.prompt.tooltip "Prompt for editing and confirmation before adding pattern to proxy">
<!ENTITY foxyproxy.quickadd.proxy.label "Proxy to which pattern is added">
<!ENTITY foxyproxy.quickadd.proxy.accesskey "P">
<!ENTITY foxyproxy.quickadd.proxy.tooltip "Choose proxy to which pattern will be added">
<!ENTITY foxyproxy.bypasscache.label "Bypass Firefox cache when loading">
<!ENTITY foxyproxy.bypasscache.accesskey "B">
<!ENTITY foxyproxy.bypasscache.tooltip "Firefox cache is ignored">
<!ENTITY foxyproxy.advancedmenus.label "Use Advanced Menus">
<!ENTITY foxyproxy.advancedmenus.accesskey "M">
<!ENTITY foxyproxy.advancedmenus.tooltip "Use advanced menus (FoxyProxy 2.2-style)">
<!ENTITY foxyproxy.importsettings.label "Import settings">
<!ENTITY foxyproxy.importsettings.accesskey "I">
<!ENTITY foxyproxy.importsettings.tooltip "Import settings from a file">
<!ENTITY foxyproxy.exportsettings.label "Export current settings">
<!ENTITY foxyproxy.exportsettings.accesskey "E">
<!ENTITY foxyproxy.exportsettings.tooltip "Export current settings to file">
<!ENTITY foxyproxy.importlist.label "Import list of proxies">
<!ENTITY foxyproxy.importlist.accesskey "I">
<!ENTITY foxyproxy.importlist.tooltip "Import a text file list of proxies">
<!ENTITY foxyproxy.wildcard.reference.label "Wildcard Reference">
<!ENTITY foxyproxy.wildcard.reference.accesskey "W">
<!ENTITY foxyproxy.wildcard.reference.tooltip "Wildcard Reference">
<!ENTITY foxyproxy.wildcard.reference.subtitle.label "The asterisk (*) matches zero or more characters, and the question mark (?) matches any single character">
<!ENTITY foxyproxy.wildcard.reference.mistakes "Common Mistakes When Writing Wildcard Patterns">
<!ENTITY foxyproxy.wildcard.reference.goal.label "Goal">
<!ENTITY foxyproxy.wildcard.reference.goal1.label "Match all pages in MySpace&apos;s www subdomain">
<!ENTITY foxyproxy.wildcard.reference.goal2.label "Match the local PC">
<!ENTITY foxyproxy.wildcard.reference.goal3.label "Match all subdomains and pages at abc.com">
<!ENTITY foxyproxy.wildcard.reference.goal4.label "Match all pages in the a.foo.com domain but not b.foo.com">
<!ENTITY foxyproxy.wildcard.reference.correct.label "Correct">
<!ENTITY foxyproxy.wildcard.reference.correct2.label "Must be two patterns">
<!ENTITY foxyproxy.wildcard.reference.incorrect.label "Incorrect">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason.label "Reason Why It&apos;s Incorrect">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason1.label "Since there are no wildcards, only the home page is matched">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason2.label "FoxyProxy doesn&apos;t understand this kind of syntax">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason3.label "There are no wildcards">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason4.label "There are no wildcards">
<!ENTITY foxyproxy.wildcard.reference.popup.height "350px">
<!ENTITY foxyproxy.logging.noURLs.label "Do not store or display URLs">
<!ENTITY foxyproxy.logging.noURLs.accesskey "U">
<!ENTITY foxyproxy.logging.noURLs.tooltip "URLs aren&apos;t stored in RAM or on disk">
<!ENTITY foxyproxy.ok.label "OK">
<!ENTITY foxyproxy.ok.accesskey "O">
<!ENTITY foxyproxy.ok.tooltip "Close Window">
<!ENTITY foxyproxy.pattern.template.reference.label "Pattern Template Reference">
<!ENTITY foxyproxy.pattern.template.reference.accesskey "T">
<!ENTITY foxyproxy.pattern.template.reference.tooltip "Pattern Template Reference">
<!ENTITY foxyproxy.pattern.template.reference.subtitle.label "URL pattern templates define the format with which URLs are QuickAdded or AutoAdded to proxies. Templates support the following special strings which, when QuickAdded or AutoAdded are activated, are substitued with the corresponding URL component in the address bar.">
<!ENTITY foxyproxy.pattern.template.reference.specialstring.label "Special String">
<!ENTITY foxyproxy.pattern.template.reference.subststring.label "Substituted With">
<!ENTITY foxyproxy.pattern.template.reference.example.label "Example">
<!ENTITY foxyproxy.pattern.template.reference.scheme.label "protocol">
<!ENTITY foxyproxy.pattern.template.reference.username.label "username">
<!ENTITY foxyproxy.pattern.template.reference.password.label "password">
<!ENTITY foxyproxy.pattern.template.reference.userpass.label "username &amp; password with &quot;:&quot; &amp; &quot;@&quot;">
<!ENTITY foxyproxy.pattern.template.reference.host.label "host">
<!ENTITY foxyproxy.pattern.template.reference.port.label "port">
<!ENTITY foxyproxy.pattern.template.reference.hostport.label "host &amp; port with &quot;:&quot;">
<!ENTITY foxyproxy.pattern.template.reference.prepath.label "string before the path">
<!ENTITY foxyproxy.pattern.template.reference.path.label "path (includes filename)">
<!ENTITY foxyproxy.pattern.template.reference.directory.label "directory">
<!ENTITY foxyproxy.pattern.template.reference.filebasename.label "file basename">
<!ENTITY foxyproxy.pattern.template.reference.fileextension.label "file extension">
<!ENTITY foxyproxy.pattern.template.reference.filename.label "complete filename">
<!ENTITY foxyproxy.pattern.template.reference.ref.label "part after the &quot;#&quot;">
<!ENTITY foxyproxy.pattern.template.reference.query.label "part after the &quot;?&quot;">
<!ENTITY foxyproxy.pattern.template.reference.spec.label "complete URL">
<!ENTITY foxyproxy.pattern.template.reference.popup.height "400px">
<!ENTITY foxyproxy.pattern.template.reference.popup.width "800px">
<!ENTITY foxyproxy.notifications.label "Notifications">
<!ENTITY foxyproxy.notifications.accesskey "N">
<!ENTITY foxyproxy.notifications.tooltip "Notification Settings">
<!ENTITY foxyproxy.indicators.label "Indicators">
<!ENTITY foxyproxy.indicators.accesskey "I">
<!ENTITY foxyproxy.indicators.tooltip "Indicator Settings">
<!ENTITY foxyproxy.misc.label "Miscellaneous">
<!ENTITY foxyproxy.misc.accesskey "M">
<!ENTITY foxyproxy.misc.tooltip "Miscellaneous Settings">
<!ENTITY foxyproxy.animatedicons.label "Animate statusbar icon when proxies are used">
<!ENTITY foxyproxy.animatedicons.accesskey "A">
<!ENTITY foxyproxy.animatedicons.tooltip "Animate statusbar icon when proxies are used">
<!ENTITY foxyproxy.statusbaractivation.label "Statusbar Activation">
<!ENTITY foxyproxy.statusbaractivation.accesskey "S">
<!ENTITY foxyproxy.statusbaractivation.tooltip "Statusbar Activation Settings">
<!ENTITY foxyproxy.toolbaractivation.label "Toolbar Activation">
<!ENTITY foxyproxy.toolbaractivation.accesskey "T">
<!ENTITY foxyproxy.toolbaractivation.tooltip "Toolbar Activation Settings">
<!ENTITY foxyproxy.leftclicksb.label "Left-clicking FoxyProxy on statusbar">
<!ENTITY foxyproxy.leftclicksb.accesskey "L">
<!ENTITY foxyproxy.leftclicksb.tooltip "Action to take when left-clicking on FoxyProxy in statusbar">
<!ENTITY foxyproxy.middleclicksb.label "Middle-clicking FoxyProxy on statusbar">
<!ENTITY foxyproxy.middleclicksb.accesskey "M">
<!ENTITY foxyproxy.middleclicksb.tooltip "Action to take when middle-clicking on FoxyProxy in statusbar">
<!ENTITY foxyproxy.rightclicksb.label "Right-clicking FoxyProxy on statusbar">
<!ENTITY foxyproxy.rightclicksb.accesskey "R">
<!ENTITY foxyproxy.rightclicksb.tooltip "Action to take when right-clicking on FoxyProxy in statusbar">
<!ENTITY foxyproxy.leftclicktb.label "Left-clicking FoxyProxy on toolbar">
<!ENTITY foxyproxy.leftclicktb.accesskey "L">
<!ENTITY foxyproxy.leftclicktb.tooltip "Action to take when left-clicking on FoxyProxy in toolbar">
<!ENTITY foxyproxy.middleclicktb.label "Middle-clicking FoxyProxy on toolbar">
<!ENTITY foxyproxy.middleclicktb.accesskey "M">
<!ENTITY foxyproxy.middleclicktb.tooltip "Action to take when middle-clicking on FoxyProxy in toolbar">
<!ENTITY foxyproxy.rightclicktb.label "Right-clicking FoxyProxy on toolbar">
<!ENTITY foxyproxy.rightclicktb.accesskey "R">
<!ENTITY foxyproxy.rightclicktb.tooltip "Action to take when right-clicking on FoxyProxy in toolbar">
<!ENTITY foxyproxy.click.options "Shows the options dialog">
<!ENTITY foxyproxy.click.cycle "Cycles through modes">
<!ENTITY foxyproxy.click.contextmenu "Shows the context menu">
<!ENTITY foxyproxy.click.reloadcurtab "Reload current tab">
<!ENTITY foxyproxy.click.reloadtabsinbrowser "Reload all tabs in current browser">
<!ENTITY foxyproxy.click.reloadtabsinallbrowsers "Reload all tabs in all browsers">
<!ENTITY foxyproxy.click.removeallcookies "Remove all cookies">
<!ENTITY foxyproxy.includeincycle.label "Include this proxy when cycling proxies by clicking on statusbar or toolbar (Global Settings-&gt;Statusbar/Toolbar Activation-&gt;Cycle through modes must be selected)">
<!ENTITY foxyproxy.includeincycle.accesskey "I">
<!ENTITY foxyproxy.includeincycle.tooltip "Include this proxy when clicking on the statusbar/toolbar">
<!ENTITY foxyproxy.changes.msg1 "Help! Where are settings for HTTP, SSL, FTP, Gopher, and SOCKS?">
<!ENTITY foxyproxy.newGUI.popup.height "270px">
<!ENTITY foxyproxy.newGUI.popup.width "400px">
<!ENTITY foxyproxy.newGUI1.label "The old FoxyProxy Proxy Settings screen was based on and nearly identical to Firefox&apos;s Connection Settings dialog, which in turn was nearly identical to the Proxy Settings in the ancient Mosaic 2.1.1 browser from 1996. The problem with all of these screens is their limited ability to route traffic by protocol. 21st century browsers like Firefox handle many more protocols than HTTP, SSL, FTP, and GOPHER. Clearly, these old screens would be unwieldy if they attempted to include every possible protocol.">
<!ENTITY foxyproxy.newGUI2.label "Since FoxyProxy already enables traffic routing by protocol with wildcard and regular expression patterns, the listing of protocols on this screen is unnecessary. As of version 2.5, FoxyProxy has removed this protocol list from the Proxy Settings GUI. However, this does not reduce functionality. It makes for a simpler interface. If you need to route traffic by protocol, you should define whitelist and blacklist patterns with careful attention to the scheme/protocol portion of the pattern (e.g., ftp://*.yahoo.com/*, *://leahscape.com/*, etc.)">
<!ENTITY foxyproxy.newGUI4.label "Click here for more information.">
<!ENTITY foxyproxy.error.msg.label "Error Message">
<!ENTITY foxyproxy.pac.result.label "PAC Result">
<!ENTITY foxyproxy.options.width "666">
<!ENTITY foxyproxy.options.height "477">
<!ENTITY foxyproxy.torwiz.width "660">
<!ENTITY foxyproxy.torwiz.height "375">
<!ENTITY foxyproxy.addeditproxy.width "660">
<!ENTITY foxyproxy.addeditproxy.height "470">

View File

@ -0,0 +1,136 @@
extensions.foxyproxy@eric.h.jung.description=FoxyProxy
foxyproxy=FoxyProxy
tor=Tor
privoxy=Privoxy
settings.error=Erro ao ler configurações
error=Erro
welcome=Bem Vindo ao FoxyProxy!
yes=Sim
no=Não
disabled=Desabilitado
torwiz.configure=Gostaria de configurar o FoxyProxy para ser usando com o Tor?
torwiz.with.without.privoxy=Você esta usando o Tor com ou sem o Privoxy?
torwiz.with=com
torwiz.without=sem
torwiz.privoxy.not.required=Por favor leia: no Firefox 1.5, O Privoxy não é mais
torwiz.port=Please enter the port on which %S is listening. If you don't know, use the default.
torwiz.nan=Isto não é um número.
torwiz.proxy.notes=Proxy através da Tor Network - http://tor.eff.org
torwiz.google.mail=Mail do Google
torwiz.pattern=http://*mail.google.com/
torwiz.congratulations=Parabéns! O FoxyProxy foi configurado para ser usado com o Tor.
torwiz.cancelled=O Assistente do FoxyProxy para o Tor foi cancelado.
mode.patterns.label=Use proxies based on their pre-defined patterns and priorities
mode.patterns.accesskey=U
mode.patterns.tooltip=Use proxies based on their pre-defined patterns and priorities
mode.custom.label=Use proxy "%S" for all URLs
mode.custom.tooltip=Use proxy "%S" for all URLs
mode.disabled.label=Completely disable FoxyProxy
mode.disabled.accesskey=D
mode.disabled.tooltip=Completely disable FoxyProxy
more.label=Mais
more.accesskey=M
more.tooltip=Mais Opções
invalid.url=The URL specified for automatic proxy configuration is not a valid URL.
protocols.error=Please specify one or more protocols for the proxy.
noport2=A port must be specified for the host.
nohost2=A host name must be specified with the port.
nohostport=Host name and port must be specified.
torwiz.nopatterns=You didn't enter any URL patterns. This means the Tor network won't be used. Continue anyway?
months.long.1=Janeiro
months.short.1=Jan
months.long.2=Fevereiro
months.short.2=Fev
months.long.3=Março
months.short.3=Mar
months.long.4=Abril
months.short.4=Abril
months.long.5=Maio
months.short.5=Maio
months.long.6=Junho
months.short.6=Jun
months.long.7=Julho
months.short.7=Jul
months.long.8=Agosto
months.short.8=Ago
months.long.9=Setembro
months.short.9=Set
months.long.10=Outubro
months.short.10=Out
months.long.11=Novembro
months.short.11=Nov
months.long.12=Dezembro
months.short.12=Dez
days.long.1=Domingo
days.short.1=Dom
days.long.2=Segunda
days.short.2=Seg
days.long.3=Terça
days.short.3=Ter
days.long.4=Quarta
days.short.4=Qua
days.long.5=Quinta
days.short.5=Qui
days.long.6=Sexta
days.short.6=Sex
days.long.7=Sábado
days.short.7=Sab
timeformat=hh:nn:ss:zzz a/p mmm dd, yyyy
file.select=Select the file in which to store the settings
manual=Manual
auto=Automático
direct=Direct
delete.proxy.confirm=Delete proxy: are you sure?
pattern.required=A pattern is required.
pattern.invalid.regex=%S is not a valid regular expression.
proxy.error.for.url=Error determining proxy for %S
proxy.default.settings.used=FoxyProxy not used for this URL - default Firefox connection settings were used
proxy.all.urls=All URLs were configured to use this proxy
pac.status=FoxyProxy PAC Status
pac.status.loadfailure=Failed to Load PAC for Proxy "%S"
pac.status.success=Loaded PAC for Proxy "%S"
pac.status.error=Error in PAC for Proxy "%S"
error.noload=Error. Please contact the FoxyProxy development team. No private data is leaking, but the resource will not load. Exception is %S
proxy.name.required=Please enter a name for this proxy on the General Tab.
proxy.default=Default
proxy.default.notes=These are the settings that are used when no patterns match a URL.
proxy.default.match.name=All
delete.proxy.default=You cannot delete this proxy.
copy.proxy.default=You cannot copy this proxy.
logg.maxsize.change=This will clear the log. Continue?
logg.maxsize.maximum=Maximum recommended size is 9999. Higher amounts will consume more memory and may affect performance. Continue anyway?
proxy.random=Proxy was randomly selected
mode.random.label=Use random proxies for all URLs (ignore all patterns and priorities)
mode.random.accesskey=R
mode.random.tooltip=Load URLs through random proxies (ignore all patterns and priorities)
random=Random
random.applicable=This setting only applies when mode is "Use random proxies for all URLs (ignore all patterns and priorities)"
superadd.error=Configuration error: %S has been disabled.
superadd.notify=Proxy %S
superadd.url.added=%S added to Proxy "%S"
autoadd.pattern.label=Dynamic Pattern
quickadd.pattern.label=Dynamic QuickAdd Pattern
torwiz.proxydns=Would you like DNS requests to go through the Tor network? If you don't understand this question, click "yes"
superadd.verboten2=%S cannot be enabled because either no proxies are defined or all proxies are disabled.
autoadd.notice=Please note: AutoAdd affects the time in which a webpage loads. The more complex your pattern and the larger the webpage, the longer AutoAdd takes to process. If you experience significant delays, please disable AutoAdd.
autoadd.notice2=
autoconfurl.test.success=The PAC was found, loaded, and successfully parsed.
autoconfurl.test.fail=There was a problem loading, finding, or parsing the PAC:\nHTTP Status Code: %S\nException: %S
none=None
delete.settings.ask=Do you want to delete the FoxyProxy settings stored at %S?
delete.settings.confirm=%S will be deleted when all browsers are closed.
no.wildcard.characters=The pattern has no wildcard characters. This means "%S" will be matched exactly. It is unusual for FoxyProxy to be used in this manner, and this likely means there is a mistake in the pattern or you don't understand how to define FoxyProxy patterns. Continue anyway?
message.stop=Do not show this message again
log.save=Save Log
log.saved2=Log has been saved to %S. View now?
log.nourls.url=Not logged
log.scrub=Clean existing log entries of URLs?
no.white.patterns=You didn't enter any whitelisted (inclusive) URL patterns. This means the proxy won't be used. Continue anyway?
quickadd.quickadd.canceled=QuickAdd has been canceled because the current URL already matches the existing pattern named "%S" in proxy "%S"
quickadd.nourl=Unable to get current URL
cookies.allremoved=All cookies removed
route.error=Error while determining which host to use for proxying
route.exception=Exception while determinig which host to use for proxying %S
see.log=Please see log for more information.
pac.select=Select the PAC file to use
pac.files=PAC Files

View File

@ -0,0 +1,54 @@
<!-- switched from xhtml to html because of BabelZilla WTS adds extraneous html tags on locale download -->
<html>
<head>
<style type="text/css">
table {
border-width: 0px;
border-spacing: 2px;
border-style: none;
border-color: white;
border-collapse: separate;
background-color: rgb(250, 240, 230);
font-size: x-small;
font-family: verdana, sans-serif;
}
table td,table th {
border-width: 1px;
padding: 1px;
border-style: groove;
border-color: green;
background-color: rgb(250, 240, 230);
vertical-align: top;
font-size: x-small;
font-family: verdana, sans-serif;
}
p {background-color: white; font-size: x-small; font-family: verdana, sans-serif;}
body {font-family: verdana, sans-serif;}
h3 {font-size: small;}
h4 {font-size: x-small;}
</style>
</head>
<body>
<h3>Padrões de Endereço</h3>
<p>Antes do Firefox carregar uma página, o Firefox pergunta ao FoxyProxy se um proxy deve ser usado.
O FoxyProxy responde esta questão procurando por algum padrão de endereço.
A maneira mais fácil de se definir padrões de endereço é usando caracteres curingas.</p>
<h4><a name="wildcards">Os asteriscos (*)</a></h4>
</p>
<p> Regras mais avançadas para padrões são possíveis usando expressões regulares. Para detalhes, clique no botão "Conteúdo de Ajuda".</p>
<h4>Exemplos de Curingas</h4>
<table>
<thead><tr><th>Padrão de Endereço</th><th>Endereço no Padrão</th><th>Fora do Padrão</th></tr></thead>
<tr><td>*//:mail.yahoo.com/*</td><td>http://mail.yahoo.com/<br/>http://mail.yahoo.com/clownshoes/<br/>http://mail.yahoo.com/inbox/123.html<br/>ftp://mail.yahoo.com</td><td>http://maps.yahoo.com</td></tr>
<tr><td>http://digg.com/</td><td>http://digg.com/</td><td>http://digg.com<br/>http://www.digg.com/</td></tr>
<td>ftp://ftp.asimov.co.uk<br/>http://isaac.home.com/tin.php</td></tr>
<tr><td>*</td><td><i>Qualquer endereço</i></td><td>&nbsp;</td></tr>
</table>
</body>
</html></body>
</html></html></body>
</html> <tr><td>*</td><td><i>Matches everything</i></td><td>&nbsp;</td></tr>
</table>
</body>
</html></html></html></html></html></html></html></html></html></html></html>

View File

@ -0,0 +1,427 @@
<!ENTITY foxyproxy.label "FoxyProxy">
<!ENTITY foxyproxy.accesskey "F">
<!ENTITY foxyproxy.tooltip "FoxyProxy">
<!ENTITY foxyproxy.optionsdialog.label "Opções do FoxyProxy">
<!ENTITY foxyproxy.options.label "Opções">
<!ENTITY foxyproxy.options.accesskey "O">
<!ENTITY foxyproxy.options.tooltip "Abrir a janela de Opções">
<!ENTITY foxyproxy.tree.pickertooltiptext.label "Clique para seleccionar as colunas a mostrar">
<!ENTITY foxyproxy.proxy.name.label "Nome do Proxy">
<!ENTITY foxyproxy.proxy.name.accesskey "N">
<!ENTITY foxyproxy.proxy.name.tooltip "Nome do Proxy">
<!ENTITY foxyproxy.proxy.notes.label "Notas do Proxy">
<!ENTITY foxyproxy.proxy.notes.accesskey "N">
<!ENTITY foxyproxy.proxy.notes.tooltip "Notas do Proxy">
<!ENTITY foxyproxy.pattern.label "Padrão">
<!ENTITY foxyproxy.pattern.type.label "Tipo do Padrão">
<!ENTITY foxyproxy.whitelist.blacklist.label "Lista Branca (Inclusiva) ou Lista Negra (Exclusiva)">
<!ENTITY foxyproxy.pattern.name.label "Nome do Padrão">
<!ENTITY foxyproxy.pattern.name.accesskey "P">
<!ENTITY foxyproxy.pattern.name.tooltip "Nome para o padrão">
<!ENTITY foxyproxy.url.pattern.label "URL ou padrão de URL">
<!ENTITY foxyproxy.url.pattern.accesskey "U">
<!ENTITY foxyproxy.url.pattern.tooltip "URL ou padrão de URL">
<!ENTITY foxyproxy.enabled.label "Disponível">
<!ENTITY foxyproxy.enabled.accesskey "E">
<!ENTITY foxyproxy.enabled.tooltip "Mudar disponível/indisponível">
<!ENTITY foxyproxy.delete.selection.label "Apagar Selecção">
<!ENTITY foxyproxy.delete.selection.accesskey "D">
<!ENTITY foxyproxy.delete.selection.tooltip "Apagar o item actualmente seleccionado">
<!ENTITY foxyproxy.edit.selection.label "Editar a Selecção">
<!ENTITY foxyproxy.edit.selection.accesskey "E">
<!ENTITY foxyproxy.edit.selection.tooltip "Editar o item actualmente seleccionado">
<!ENTITY foxyproxy.help.label "Conteúdo da Ajuda">
<!ENTITY foxyproxy.help.accesskey "H">
<!ENTITY foxyproxy.help.tooltip "Mostrar Ajuda">
<!ENTITY foxyproxy.close.label "Fechar">
<!ENTITY foxyproxy.close.accesskey "C">
<!ENTITY foxyproxy.close.tooltip "Fechar a Janela">
<!ENTITY foxyproxy.about.label "Acerca">
<!ENTITY foxyproxy.about.accesskey "A">
<!ENTITY foxyproxy.about.tooltip "Abre a janela do Acerca">
<!ENTITY foxyproxy.online.label "FoxyProxy Online">
<!ENTITY foxyproxy.online.accesskey "O">
<!ENTITY foxyproxy.online.tooltip "Visite a página web do FoxyProxy">
<!ENTITY foxyproxy.tor.label "Tor Wizard">
<!ENTITY foxyproxy.tor.accesskey "W">
<!ENTITY foxyproxy.tor.tooltip "Tor Wizard">
<!ENTITY foxyproxy.copy.selection.label "Copiar a Selecção">
<!ENTITY foxyproxy.copy.selection.accesskey "C">
<!ENTITY foxyproxy.copy.selection.tooltip "Copia a Selecção">
<!ENTITY foxyproxy.mode.label "Modo de Selecção">
<!ENTITY foxyproxy.auto.url.label "URL da configuração automática do proxy">
<!ENTITY foxyproxy.auto.url.accesskey "A">
<!ENTITY foxyproxy.auto.url.tooltip "Introduza o URL do ficheiro PAC">
<!ENTITY foxyproxy.port.label "Porta">
<!ENTITY foxyproxy.port.accesskey "P">
<!ENTITY foxyproxy.port.tooltip "Porta">
<!ENTITY foxyproxy.socks.proxy.label "Proxy SOCKS">
<!ENTITY foxyproxy.socks.proxy.accesskey "C">
<!ENTITY foxyproxy.socks.proxy.tooltip "URL do Proxy SOCKS">
<!ENTITY foxyproxy.socks.v4 "SOCKS v4/4a">
<!ENTITY foxyproxy.socks.v5 "SOCKS v5">
<!ENTITY foxyproxy.addeditpattern.title "Adicionar/Editar Padrão">
<!ENTITY foxyproxy.wildcard.label "Meta-caracter">
<!ENTITY foxyproxy.wildcard.accesskey "W">
<!ENTITY foxyproxy.wildcard.tooltip "Especifica que o URL ou o padrão de URL usa meta-caracteres e não é uma expressão regular">
<!ENTITY foxyproxy.wildcard.example.label "Exemplo: *mail.yahoo.com/*">
<!ENTITY foxyproxy.regex.label "Expressão Regular">
<!ENTITY foxyproxy.regex.accesskey "R">
<!ENTITY foxyproxy.regex.tooltip "Especifica que o URL ou o padrão de URL é uma expressão regular">
<!ENTITY foxyproxy.regex.example.label "Exemplo: http?://.*\.mail\.yahoo\.com/.*">
<!ENTITY foxyproxy.version "Versão">
<!ENTITY foxyproxy.createdBy "Criado Por">
<!ENTITY foxyproxy.copyright "Copyright">
<!ENTITY foxyproxy.rights "Todos os Direitos Reservados.">
<!ENTITY foxyproxy.released "Disponibilizado sob licença GPL.">
<!ENTITY foxyproxy.thanks "Agradecimentos especiais para">
<!ENTITY foxyproxy.translations "Traduções">
<!ENTITY foxyproxy.tab.general.label "Geral">
<!ENTITY foxyproxy.tab.general.accesskey "G">
<!ENTITY foxyproxy.tab.general.tooltip "Gerir Configurações Gerais do Proxy">
<!ENTITY foxyproxy.tab.proxy.label "Detalhes do Proxy">
<!ENTITY foxyproxy.tab.proxy.accesskey "R">
<!ENTITY foxyproxy.tab.proxy.tooltip "Gerir Detalhes do Proxy">
<!ENTITY foxyproxy.tab.patterns.label "Padrões">
<!ENTITY foxyproxy.tab.patterns.accesskey "P">
<!ENTITY foxyproxy.tab.patterns.tooltip "Gerir padrões de URL">
<!ENTITY foxyproxy.add.title "Configurações do Proxy">
<!ENTITY foxyproxy.pattern.description "Aqui pode especificar quando este proxy é usado ou não.">
<!ENTITY foxyproxy.pattern.matchtype.label "O Padrão contém">
<!ENTITY foxyproxy.pattern.matchtype2.label "Padrão para Identificar os Sítios Bloqueados Contém">
<!ENTITY foxyproxy.pattern.template.matchtype.label "O Modelo do Padrão Contém">
<!ENTITY foxyproxy.pattern.whiteblack.label "Inclusão/Exclusão URL">
<!ENTITY foxyproxy.add.option.direct.label "Ligação Directa à internet">
<!ENTITY foxyproxy.add.option.direct.accesskey "D">
<!ENTITY foxyproxy.add.option.direct.tooltip "Não usar um proxy - usar a ligação directa à internet">
<!ENTITY foxyproxy.add.option.manual.label "Configuração Manual do Proxy">
<!ENTITY foxyproxy.add.option.manual.accesskey "M">
<!ENTITY foxyproxy.add.option.manual.tooltip "Definir Manualmente a configuração do proxy">
<!ENTITY foxyproxy.add.new.pattern.label "Adicionar um novo Padrão">
<!ENTITY foxyproxy.add.new.pattern.accesskey "A">
<!ENTITY foxyproxy.add.new.pattern.tooltip "Adicionar um novo Padrão">
<!ENTITY foxyproxy.menubar.file.label "Ficheiro">
<!ENTITY foxyproxy.menubar.file.accesskey "F">
<!ENTITY foxyproxy.menubar.file.tooltip "Abre o Menu Ficheiro">
<!ENTITY foxyproxy.menubar.help.label "Ajuda">
<!ENTITY foxyproxy.menubar.help.accesskey "H">
<!ENTITY foxyproxy.menubar.help.tooltip "Abre o Menu Ajuda">
<!ENTITY foxyproxy.mode.accesskey "M">
<!ENTITY foxyproxy.mode.tooltip "Selecciona como disponibilizar o FoxyProxy">
<!ENTITY foxyproxy.tab.proxies.label "Proxies">
<!ENTITY foxyproxy.tab.proxies.accesskey "P">
<!ENTITY foxyproxy.tab.proxies.tooltip "Gerir os Proxies">
<!ENTITY foxyproxy.tab.global.label "Configurações Globais">
<!ENTITY foxyproxy.tab.global.accesskey "G">
<!ENTITY foxyproxy.tab.global.tooltip "Gerir as Configurações Globais">
<!ENTITY foxyproxy.tab.logging.label "Registo">
<!ENTITY foxyproxy.tab.logging.accesskey "L">
<!ENTITY foxyproxy.tab.logging.tooltip "Gerir as configurações de Registo">
<!ENTITY foxyproxy.proxydns.label "Usar o proxy SOCKS para DNS lookups">
<!ENTITY foxyproxy.proxydns.accesskey "U">
<!ENTITY foxyproxy.proxydns.tooltip "Se seleccionado, os DNS lookups são encaminhados através do proxy SOCKS">
<!ENTITY foxyproxy.proxydns.notice "O Firefox deve ser reiniciado para as configurações terem efeito. Reiniciar agora?">
<!ENTITY foxyproxy.showstatusbaricon.label "Mostrar o icon na barra de estados">
<!ENTITY foxyproxy.showstatusbaricon.accesskey "S">
<!ENTITY foxyproxy.showstatusbaricon.tooltip "Se seleccionado, o icon do FoxyProxy é mostrado na barra de estados">
<!ENTITY foxyproxy.showstatusbarmode.label "Mostrar o modo (texto) na barra de estados">
<!ENTITY foxyproxy.showstatusbarmode.accesskey "S">
<!ENTITY foxyproxy.showstatusbarmode.tooltip "Se seleccionado, o modo do FoxyProxy é mostrado na barra de estados">
<!ENTITY foxyproxy.storagelocation.label "Localização das Configurações">
<!ENTITY foxyproxy.storagelocation.accesskey "S">
<!ENTITY foxyproxy.storagelocation.tooltip "Onde guardar as configurações do FoxyProxy">
<!ENTITY foxyproxy.tab.logging.timestamp.label "Timestamp">
<!ENTITY foxyproxy.tab.logging.url.label "URL">
<!ENTITY foxyproxy.host.label "Nome do Servidor">
<!ENTITY foxyproxy.host.accesskey "H">
<!ENTITY foxyproxy.host.tooltip "Nome do Servidor">
<!ENTITY foxyproxy.clear.label "Apagar">
<!ENTITY foxyproxy.clear.accesskey "C">
<!ENTITY foxyproxy.clear.tooltip "Apagar">
<!ENTITY foxyproxy.refresh.label "Refrescar">
<!ENTITY foxyproxy.refresh.accesskey "R">
<!ENTITY foxyproxy.refresh.tooltip "Refrescar">
<!ENTITY foxyproxy.save.label "Gravar">
<!ENTITY foxyproxy.save.accesskey "S">
<!ENTITY foxyproxy.save.tooltip "Gravar">
<!ENTITY foxyproxy.addnewproxy.label "Adicionar um Novo Proxy">
<!ENTITY foxyproxy.addnewproxy.accesskey "A">
<!ENTITY foxyproxy.addnewproxy.tooltip "Adiciona um novo Proxy">
<!ENTITY foxyproxy.whitelist.label "Lista Branca">
<!ENTITY foxyproxy.whitelist.accesskey "B">
<!ENTITY foxyproxy.whitelist.tooltip "Os URL que coincidam com este padrão são carregados através deste proxy">
<!ENTITY foxyproxy.whitelist.description.label "Os URL que coincidam com este padrão são carregados através deste proxy">
<!ENTITY foxyproxy.blacklist.label "Lista Negra">
<!ENTITY foxyproxy.blacklist.accesskey "B">
<!ENTITY foxyproxy.blacklist.tooltip "Os URL que coincidam com este padrão NÃO são carregados através deste proxy">
<!ENTITY foxyproxy.blacklist.description.label "Os URL que coincidam com este padrão NÃO são carregados através deste proxy">
<!ENTITY foxyproxy.whiteblack.description.label "Os padrões da Lista Negra (exclusão) têm precedência sobre os padrões da Lista Branca (inclusão): Se um URL coincidir com um padrão da Lista Branca e um da Lista Negra para o mesmo proxy, o URL é excluído de ser carregado por este proxy.">
<!ENTITY foxyproxy.usingPFF.label1 "Eu estou a usar">
<!ENTITY foxyproxy.usingPFF.label2 "Firefox Portátil">
<!ENTITY foxyproxy.usingPFF.accesskey "P">
<!ENTITY foxyproxy.usingPFF.tooltip "Verifique aqui se esté a usar o Firefox Portátil">
<!ENTITY foxyproxy.socks.version.label "Versão SOCKS">
<!ENTITY foxyproxy.autopacurl.label "URL PAC automático">
<!ENTITY foxyproxy.issocks.label "Proxy de SOCKS">
<!ENTITY foxyproxy.issocks.accesskey "S">
<!ENTITY foxyproxy.issocks.tooltip "Isto é um proxy Web ou SOCKS?">
<!ENTITY foxyproxy.chinese.simplified "Chinês (Simplificado)">
<!ENTITY foxyproxy.chinese.traditional "Chinês (Tradicional)">
<!ENTITY foxyproxy.croatian "Croata">
<!ENTITY foxyproxy.czech "Checo">
<!ENTITY foxyproxy.danish "Dinamarquês">
<!ENTITY foxyproxy.dutch "Holandês">
<!ENTITY foxyproxy.english "Inglês">
<!ENTITY foxyproxy.english.british "Inglês (UK)">
<!ENTITY foxyproxy.french "Francês">
<!ENTITY foxyproxy.german "Alemão">
<!ENTITY foxyproxy.greek "Grego">
<!ENTITY foxyproxy.hungarian "Húngaro">
<!ENTITY foxyproxy.italian "Italiano">
<!ENTITY foxyproxy.persian "Persa">
<!ENTITY foxyproxy.polish "Polaco">
<!ENTITY foxyproxy.portugese.brazilian "Português (Brazil)">
<!ENTITY foxyproxy.portugese.portugal "Português (Portugal)">
<!ENTITY foxyproxy.romanian "Romeno">
<!ENTITY foxyproxy.russian "Russo">
<!ENTITY foxyproxy.slovak "Eslovaco">
<!ENTITY foxyproxy.spanish.spain "Espanhol (Espanha)">
<!ENTITY foxyproxy.spanish.argentina "Espanhol (Argentina)">
<!ENTITY foxyproxy.swedish "Sueco">
<!ENTITY foxyproxy.thai.thailand "Tailandês (Tailandia)">
<!ENTITY foxyproxy.turkish "Turco">
<!ENTITY foxyproxy.ukrainian "Ucraniano">
<!ENTITY foxyproxy.your.language "A sua língua">
<!ENTITY foxyproxy.your.name.here "O seu nome aqui!">
<!ENTITY foxyproxy.moveup.label "Mover para cima">
<!ENTITY foxyproxy.moveup.tooltip "Aumentar a prioridade da seleccção actual">
<!ENTITY foxyproxy.moveup.accesskey "U">
<!ENTITY foxyproxy.movedown.label "Mover para Baixo">
<!ENTITY foxyproxy.movedown.tooltip "Diminuir a prioridade da selecção actual">
<!ENTITY foxyproxy.movedown.accesskey "D">
<!ENTITY foxyproxy.autoconfurl.view.label "Ver">
<!ENTITY foxyproxy.autoconfurl.view.accesskey "V">
<!ENTITY foxyproxy.autoconfurl.view.tooltip "Ver o ficheiro de auto-configuração">
<!ENTITY foxyproxy.autoconfurl.test.label "Teste">
<!ENTITY foxyproxy.autoconfurl.test.accesskey "T">
<!ENTITY foxyproxy.autoconfurl.test.tooltip "Teste o ficheiro de auto-configuração">
<!ENTITY foxyproxy.autoconfurl.reload.label "Torne a carregar o PAC a cada">
<!ENTITY foxyproxy.autoconfurl.reload.accesskey "R">
<!ENTITY foxyproxy.autoconfurl.reload.tooltip "Torna a carregar automaticamente o ficheiro PAC a cada período especificado">
<!ENTITY foxyproxy.minutes.label "minutos">
<!ENTITY foxyproxy.minutes.tooltip "minutos">
<!ENTITY foxyproxy.logging.maxsize.label "Tamanho máximo">
<!ENTITY foxyproxy.logging.maxsize.accesskey "M">
<!ENTITY foxyproxy.logging.maxsize.tooltip "Número máximo de entradas no registo antes deste voltar ao início">
<!ENTITY foxyproxy.logging.maxsize.button.label "Definir">
<!ENTITY foxyproxy.logging.maxsize.button.accesskey "S">
<!ENTITY foxyproxy.logging.maxsize.button.tooltip "Definir o número máximo de entradas no registo antes deste voltar ao início">
<!ENTITY foxyproxy.random.label "Carregar os URL através de proxies aleatórios (ignorar todos os padrões e prioridades)">
<!ENTITY foxyproxy.random.accesskey "R">
<!ENTITY foxyproxy.random.tooltip "Carregar os URL através de proxies aleatórios (ignorar todos os padrões e prioridades)">
<!ENTITY foxyproxy.random.includedirect.label "Incluir os proxies configurados como ligação directa à internet">
<!ENTITY foxyproxy.random.includedirect.accesskey "I">
<!ENTITY foxyproxy.random.includedirect.tooltip "Os proxies configurados como ligação directa à internet são incluídos na selecção aleatório de proxies">
<!ENTITY foxyproxy.random.includedisabled.label "Incluir proxies inactivos">
<!ENTITY foxyproxy.random.includedisabled.accesskey "D">
<!ENTITY foxyproxy.random.includedisabled.tooltip "Os proxies configurados como inactivos são incluídos na selecção aleatório de proxies">
<!ENTITY foxyproxy.random.settings.label "Selecção Aleatória de Proxy">
<!ENTITY foxyproxy.random.settings.accesskey "R">
<!ENTITY foxyproxy.random.settings.tooltip "Configurações que afectam a selecção aleatória de proxies">
<!ENTITY foxyproxy.tab.autoadd.label "Adicionar Automaticamente">
<!ENTITY foxyproxy.tab.autoadd.accesskey "A">
<!ENTITY foxyproxy.tab.autoadd.tooltip "Gerir Configurações do Adicionar Automaticamente">
<!ENTITY foxyproxy.autoadd.description "Especifica um padrão que identifica as páginas web que foram bloqueados. Quando um padrão é encontrado numa página, é automaticamente adicionado um padrão que corresponda ao URL dessa página web, ao proxy e recarregado opcionalmente. Isto previne que tenha que identificar proactivamente todas as páginas web bloqueadas.">
<!ENTITY foxyproxy.autoadd.pattern.label "Padrão para identificar os sítios web bloqueados">
<!ENTITY foxyproxy.autoadd.pattern.accesskey "P">
<!ENTITY foxyproxy.autoadd.pattern.tooltip "Padrão para identificar as páginas web bloqueadas">
<!ENTITY foxyproxy.autoadd.wildcard.example.label "Exemplo: *You are not authorized to view this page*">
<!ENTITY foxyproxy.autoadd.regex.example.label "Exemplo: .*Site.*has been blocked.*">
<!ENTITY foxyproxy.autoadd.proxy.label "Proxy para o qual os padrões são adicionados automaticamente">
<!ENTITY foxyproxy.autoadd.proxy.accesskey "P">
<!ENTITY foxyproxy.autoadd.proxy.tooltip "Especifica o Proxy para o qual os padrões são adicionados automaticamente">
<!ENTITY foxyproxy.pattern.template.label "Modelo de padrão de URL">
<!ENTITY foxyproxy.pattern.template.accesskey "U">
<!ENTITY foxyproxy.pattern.template.tooltip "Modelo de padrão de URL">
<!ENTITY foxyproxy.pattern.template.example.label1 "Exemplo para">
<!ENTITY foxyproxy.pattern.template.example.label2 "http://fred:secret@mail.foo.com:8080/inbox/msg102.htm#subject?style=elegant">
<!ENTITY foxyproxy.pattern.template.currenturl.label "URL actual">
<!ENTITY foxyproxy.pattern.template.currenturl.accesskey "C">
<!ENTITY foxyproxy.pattern.template.currenturl.tooltip "URL na barra de endereços">
<!ENTITY foxyproxy.pattern.template.generatedpattern.label "Padrão Gerado">
<!ENTITY foxyproxy.pattern.template.generatedpattern.accesskey "G">
<!ENTITY foxyproxy.pattern.template.generatedpattern.tooltip "Padrão Gerado dinamicamente">
<!ENTITY foxyproxy.autoadd.reload.label "Recarrega a página depois de ser adicionado ao proxy">
<!ENTITY foxyproxy.autoadd.reload.accesskey "R">
<!ENTITY foxyproxy.autoadd.reload.tooltip "Recarrega automaticamente a página depois de ser adicionada ao proxy">
<!ENTITY foxyproxy.autoadd.notify.label "Notifique-me quando o Adicionar Automaticamente é despoletado">
<!ENTITY foxyproxy.autoadd.notify.accesskey "N">
<!ENTITY foxyproxy.autoadd.notify.tooltip "Informa quando uma página é bloqueada; o padrão de URL é adicionado ao proxy">
<!ENTITY foxyproxy.graphics "Desenho gráfico e imagens por">
<!ENTITY foxyproxy.website "Página web por">
<!ENTITY foxyproxy.contributions "Contribuições por">
<!ENTITY foxyproxy.pacloadnotification.label "Notifique-me quando o ficheiro de auto-configuração do proxy esteja carregado">
<!ENTITY foxyproxy.pacloadnotification.accesskey "L">
<!ENTITY foxyproxy.pacloadnotification.tooltip "Mostrar um aviso quando o ficheiro PAC carregar">
<!ENTITY foxyproxy.pacerrornotification.label "Notifique-me acerca de erros no ficheiro de auto-configuração do proxy">
<!ENTITY foxyproxy.pacerrornotification.accesskey "E">
<!ENTITY foxyproxy.pacerrornotification.tooltip "Mostrar um aviso quando encontrar erros no ficheiro PAC">
<!ENTITY foxyproxy.toolsmenu.label "Mostrar o FoxyProxy no menu de ferramentas do Firefox">
<!ENTITY foxyproxy.toolsmenu.accesskey "T">
<!ENTITY foxyproxy.toolsmenu.tooltip "Mostrar o FoxyProxy no menu de ferramentas do Firefox">
<!ENTITY foxyproxy.tip.label "Dica">
<!ENTITY foxyproxy.pactips.popup.height "165px">
<!ENTITY foxyproxy.pactips.popup.width "400px">
<!ENTITY foxyproxy.pactip1.label "Para ficheiros PAC guardados no disco duro local, use file:// como esquema. Por exemplo, file://c:/path/proxy.pac em Windows ou file:///home/users/joe/proxy.pac em Unix/Linux/Mac.">
<!ENTITY foxyproxy.pactip2.label "Para ficheiros PAC num servidor FTP, use ftp:// como esquema. Por exemplo, ftp://leahscape.com/path/proxy.pac">
<!ENTITY foxyproxy.pactip3.label "Pode também usar http://, https:// ou outro esquema suportado.">
<!ENTITY foxyproxy.contextmenu.label "Mostrar o FoxyProxy no menu de contexto">
<!ENTITY foxyproxy.contextmenu.accesskey "C">
<!ENTITY foxyproxy.contextmenu.tooltip "Mostrar o FoxyProxy no menu de contexto">
<!ENTITY foxyproxy.quickadd.desc1 "Adicionar rápido adiciona um padrão de URL dinâmico a um proxy quando pressiona ALT-F2. É uma alternativa prática ao Adicionar Automático. Personalize o atalho ALT-F2 com o">
<!ENTITY foxyproxy.keyconfig.label "Configuração das Teclas">
<!ENTITY foxyproxy.quickadd.desc2 "extensão">
<!ENTITY foxyproxy.quickadd.label "Adicionar Rápido">
<!ENTITY foxyproxy.quickadd.accesskey "Q">
<!ENTITY foxyproxy.quickadd.tooltip "Adicionar Rápido">
<!ENTITY foxyproxy.quickadd.notify.label "Notifique-me quando o Adicionar Rápido estiver activo">
<!ENTITY foxyproxy.quickadd.notify.accesskey "N">
<!ENTITY foxyproxy.quickadd.notify.tooltip "Mostre um janela quando o Adicionar Rápido estiver activo">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.label "Notifique-me quando o Adicionar Rápido seja cancelado">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.label2 "O Adicionar Rápido é automaticamente cancelado quando é activado através de Alt-F2 e o URL actual na barra de endereços já coincide com um padrão existente como Lista Branca num proxy. Desta forma, padrões duplicados, que poderiam estragar a configuração, são prevenidos. Esta configuração não activa ou desactiva o cancelamento; ao contrário, altera a notificação quando o cancelamento ocorre.">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.accesskey "C">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.tooltip "Mostra uma notificação quando o Adicionar Rápido é activado mas cancelado">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.popup.width "400px">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.popup.height "130px">
<!ENTITY foxyproxy.whatsthis "O que é Isto?">
<!ENTITY foxyproxy.quickadd.prompt.label "Pergunte-me para editar e confirmar antes de adicionar um padrão a um proxy">
<!ENTITY foxyproxy.quickadd.prompt.accesskey "P">
<!ENTITY foxyproxy.quickadd.prompt.tooltip "Pergunte-me para editar e confirmar antes de adicionar um padrão a um proxy">
<!ENTITY foxyproxy.quickadd.proxy.label "Proxy ao qual é adicionar o padrão">
<!ENTITY foxyproxy.quickadd.proxy.accesskey "P">
<!ENTITY foxyproxy.quickadd.proxy.tooltip "Escolha o proxy ao qual o padrão será adicionado">
<!ENTITY foxyproxy.bypasscache.label "Ultrapassar a cache do Firefox quando carregar">
<!ENTITY foxyproxy.bypasscache.accesskey "B">
<!ENTITY foxyproxy.bypasscache.tooltip "A cache do Firefox é ignorada">
<!ENTITY foxyproxy.advancedmenus.label "Usar os Menus Avançados">
<!ENTITY foxyproxy.advancedmenus.accesskey "M">
<!ENTITY foxyproxy.advancedmenus.tooltip "Usar os Menus Avançados (ao estilo do FoxyProxy 2.2)">
<!ENTITY foxyproxy.importsettings.label "Importar as configurações">
<!ENTITY foxyproxy.importsettings.accesskey "I">
<!ENTITY foxyproxy.importsettings.tooltip "Importar as configurações de um ficheiro">
<!ENTITY foxyproxy.exportsettings.label "Exportar as configurações">
<!ENTITY foxyproxy.exportsettings.accesskey "E">
<!ENTITY foxyproxy.exportsettings.tooltip "Exportar as configurações para um ficheiro">
<!ENTITY foxyproxy.importlist.label "Importar a lista de proxies">
<!ENTITY foxyproxy.importlist.accesskey "I">
<!ENTITY foxyproxy.importlist.tooltip "Importar um ficheiro com a lista de proxies">
<!ENTITY foxyproxy.wildcard.reference.label "Referência de Meta-Caracteres">
<!ENTITY foxyproxy.wildcard.reference.accesskey "W">
<!ENTITY foxyproxy.wildcard.reference.tooltip "Referência de Meta-Caracteres">
<!ENTITY foxyproxy.wildcard.reference.subtitle.label "O asterisco (*) corresponde-se com zero ou mais caracteres, enquanto que o ponto de interrogação (?) corresponde-se com qualquer um caracter.">
<!ENTITY foxyproxy.wildcard.reference.mistakes "Erros Comuns Ao Escrever Padrões de Meta-Caracteres">
<!ENTITY foxyproxy.wildcard.reference.goal.label "Objectivo">
<!ENTITY foxyproxy.wildcard.reference.goal1.label "Corresponde a todas as páginas no subdomínio MySpace">
<!ENTITY foxyproxy.wildcard.reference.goal2.label "Corresponde ao PC local">
<!ENTITY foxyproxy.wildcard.reference.goal3.label "Corresponde a todos os subdomínios e páginas de abc.com">
<!ENTITY foxyproxy.wildcard.reference.goal4.label "Corresponde a todas as páginas do domínio a.foo.com mas não de b.foo.com">
<!ENTITY foxyproxy.wildcard.reference.correct.label "Correcto">
<!ENTITY foxyproxy.wildcard.reference.correct2.label "Tem que ser dois padrões">
<!ENTITY foxyproxy.wildcard.reference.incorrect.label "Incorrecto">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason.label "Razão de Estar Incorrecto">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason1.label "Uma vez que não há Meta-Caracteres, apenas a página inicial será correspondida">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason2.label "O FoxyProxy não compreende esse tipo de sintaxe">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason3.label "Não há meta-caracteres">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason4.label "Não há meta-caracteres">
<!ENTITY foxyproxy.wildcard.reference.popup.height "350px">
<!ENTITY foxyproxy.logging.noURLs.label "Não mostrar ou gravar os URLs">
<!ENTITY foxyproxy.logging.noURLs.accesskey "U">
<!ENTITY foxyproxy.logging.noURLs.tooltip "Os URLs não são guardados em memória ou disco">
<!ENTITY foxyproxy.ok.label "Ok">
<!ENTITY foxyproxy.ok.accesskey "O">
<!ENTITY foxyproxy.ok.tooltip "Fechar a janela">
<!ENTITY foxyproxy.pattern.template.reference.label "Referência de Modelos de Padrões">
<!ENTITY foxyproxy.pattern.template.reference.accesskey "T">
<!ENTITY foxyproxy.pattern.template.reference.tooltip "Referência de Modelos de Padrões">
<!ENTITY foxyproxy.pattern.template.reference.subtitle.label "Modelos de padrões de URL definem o formato com o qual os URL são Adicionados Rápida ou Automaticamente aos proxies. Os padrões suportam os seguintes comandos especiais que, quando o Adiconar Rápido ou o Adicionar Automático estão activos, são substituídos pelo componente do URL correspondente na barra de endereços.">
<!ENTITY foxyproxy.pattern.template.reference.specialstring.label "Comandos Especiais">
<!ENTITY foxyproxy.pattern.template.reference.subststring.label "Substituídos Por">
<!ENTITY foxyproxy.pattern.template.reference.example.label "Exemplo">
<!ENTITY foxyproxy.pattern.template.reference.scheme.label "Protocolo">
<!ENTITY foxyproxy.pattern.template.reference.username.label "Nome do Utilizador">
<!ENTITY foxyproxy.pattern.template.reference.password.label "Palavra-Chave">
<!ENTITY foxyproxy.pattern.template.reference.userpass.label "nome do utilizador &amp; palavra-chave com &quot;:&quot; &amp; &quot;@&quot;">
<!ENTITY foxyproxy.pattern.template.reference.host.label "Anfitrião">
<!ENTITY foxyproxy.pattern.template.reference.port.label "Porta">
<!ENTITY foxyproxy.pattern.template.reference.hostport.label "anfitrião &amp; porta com &quot;:&quot;">
<!ENTITY foxyproxy.pattern.template.reference.prepath.label "texto antes do caminho">
<!ENTITY foxyproxy.pattern.template.reference.path.label "caminho (inclui nome do ficheiro)">
<!ENTITY foxyproxy.pattern.template.reference.directory.label "directoria">
<!ENTITY foxyproxy.pattern.template.reference.filebasename.label "nome base do ficheiro">
<!ENTITY foxyproxy.pattern.template.reference.fileextension.label "extensão do ficheiro">
<!ENTITY foxyproxy.pattern.template.reference.filename.label "nome completo do ficheiro">
<!ENTITY foxyproxy.pattern.template.reference.ref.label "parte depois do &quot;#&quot;">
<!ENTITY foxyproxy.pattern.template.reference.query.label "parte depois do &quot;?&quot;">
<!ENTITY foxyproxy.pattern.template.reference.spec.label "URL completo">
<!ENTITY foxyproxy.pattern.template.reference.popup.height "400px">
<!ENTITY foxyproxy.pattern.template.reference.popup.width "800px">
<!ENTITY foxyproxy.notifications.label "Notificações">
<!ENTITY foxyproxy.notifications.accesskey "N">
<!ENTITY foxyproxy.notifications.tooltip "Configurações das Notificações">
<!ENTITY foxyproxy.indicators.label "Indicadores">
<!ENTITY foxyproxy.indicators.accesskey "I">
<!ENTITY foxyproxy.indicators.tooltip "Configurações dos Indicadores">
<!ENTITY foxyproxy.misc.label "Vários">
<!ENTITY foxyproxy.misc.accesskey "V">
<!ENTITY foxyproxy.misc.tooltip "Configurações Várias">
<!ENTITY foxyproxy.animatedicons.label "Animar o icon da barra de estados quando forem utilizados proxies">
<!ENTITY foxyproxy.animatedicons.accesskey "A">
<!ENTITY foxyproxy.animatedicons.tooltip "Animar o icon da barra de estados quando forem utilizados proxies">
<!ENTITY foxyproxy.statusbaractivation.label "Activação da Barra de Estados">
<!ENTITY foxyproxy.statusbaractivation.accesskey "S">
<!ENTITY foxyproxy.statusbaractivation.tooltip "Configurações da Activação da Barra de Estados">
<!ENTITY foxyproxy.toolbaractivation.label "Activação da Barra de Ferramentas">
<!ENTITY foxyproxy.toolbaractivation.accesskey "T">
<!ENTITY foxyproxy.toolbaractivation.tooltip "Configuração da activação da Barra de Ferramentas">
<!ENTITY foxyproxy.leftclicksb.label "Botão esquerdo do rato no FoxyProxy na Barra de Estados">
<!ENTITY foxyproxy.leftclicksb.accesskey "L">
<!ENTITY foxyproxy.leftclicksb.tooltip "Acção a ter quando carregar com o botão esquerdo do rato no FoxyProxy da Barra de Estados">
<!ENTITY foxyproxy.middleclicksb.label "Botão do meio do rato no FoxyProxy na Barra de Estados">
<!ENTITY foxyproxy.middleclicksb.accesskey "M">
<!ENTITY foxyproxy.middleclicksb.tooltip "Acção a ter quando carregar com o botão do meio do rato no FoxyProxy da Barra de Estados">
<!ENTITY foxyproxy.rightclicksb.label "Botão direito do rato no FoxyProxy na Barra de Estados">
<!ENTITY foxyproxy.rightclicksb.accesskey "R">
<!ENTITY foxyproxy.rightclicksb.tooltip "Acção a ter quando carregar com o botão direito do rato no FoxyProxy da Barra de Estados">
<!ENTITY foxyproxy.leftclicktb.label "Botão esquerdo do rato no FoxyProxy na Barra de Ferramentas">
<!ENTITY foxyproxy.leftclicktb.accesskey "L">
<!ENTITY foxyproxy.leftclicktb.tooltip "Acção a ter quando carregar com o botão esquerdo do rato no FoxyProxy da Barra de Ferramentas">
<!ENTITY foxyproxy.middleclicktb.label "Botão do meio do rato no FoxyProxy na Barra de Ferramentas">
<!ENTITY foxyproxy.middleclicktb.accesskey "M">
<!ENTITY foxyproxy.middleclicktb.tooltip "Acção a ter quando carregar com o botão do meio do rato no FoxyProxy da Barra de Ferramentas">
<!ENTITY foxyproxy.rightclicktb.label "Botão direito do rato no FoxyProxy na Barra de Ferramentas">
<!ENTITY foxyproxy.rightclicktb.accesskey "R">
<!ENTITY foxyproxy.rightclicktb.tooltip "Acção a ter quando carregar com o botão direito do rato no FoxyProxy da Barra de Ferramentas">
<!ENTITY foxyproxy.click.options "Mostra o dialogo de Opções">
<!ENTITY foxyproxy.click.cycle "Alterna entre modos">
<!ENTITY foxyproxy.click.contextmenu "Mostra o menu de contexto">
<!ENTITY foxyproxy.click.reloadcurtab "Recarrega o tabulador actual">
<!ENTITY foxyproxy.click.reloadtabsinbrowser "Recarrega todos os tabuladores no navegador actual">
<!ENTITY foxyproxy.click.reloadtabsinallbrowsers "Recarrega todos os tabuladores em todos os navegadores">
<!ENTITY foxyproxy.click.removeallcookies "Remove todos os cookies">
<!ENTITY foxyproxy.includeincycle.label "Inclui este proxy quando alternar entre proxies ao carregar na barra de estados ou de ferramentas (Configurações Gerais-&gt;Activação Barra de Estados/Barra de Ferramentas-&gt;Alternar entre modos tem que estar seleccionado)">
<!ENTITY foxyproxy.includeincycle.accesskey "I">
<!ENTITY foxyproxy.includeincycle.tooltip "Incluir este proxy ao carregar na barra de estados/ferramentas">
<!ENTITY foxyproxy.changes.msg1 "Ajuda! Onde estão as configurações para HTTP, SSL, FTP, Gopher e SOCKS?">
<!ENTITY foxyproxy.newGUI.popup.height "270px">
<!ENTITY foxyproxy.newGUI.popup.width "400px">
<!ENTITY foxyproxy.newGUI1.label "O ecrã das configurações antigas do FoxyProxy era baseado e quase idêntico ao ecrã das configurações de ligação do Firefox, que por sua vez era quase idêntico ao de configurações de Proxy do antigo Mosaic 2.1.1 de 1996. O problema com todos estes ecrãs é a sua habilidade limitada de endereçar tráfego por protocolo. Os navegadores do novo século como o Firefox lidam com mais protocolos do que o HTTP, SSL, FTP e Gopher. Os ecrãs velhos seriam inviáveis se tentassem incluir cada protocolo possível.">
<!ENTITY foxyproxy.newGUI2.label "Uma vez que o FoxyProxy estabelece tráfego endereçado por protocolo com meta-caracteres e padrões de expressões regulares, a listagem dos protocolos neste ecrã é desnecessária. A partir da versão 2.5, o FoxyProxy removeu a lista de protocolos das configurações de Proxy. No entanto, isto não diminui a fucnionalidade. Desta forma temos um ecrã mais simples. Se necessitar de endereçar tráfego por protocolo, deve definir os padrões de lista Branca/Preta com atenção ao Esquema/Protocolo (exemplo: ftp://*.yahoo.com/*, *://leahscape.com/*, etc.)">
<!ENTITY foxyproxy.newGUI4.label "Carregue aqui para mais informações">
<!ENTITY foxyproxy.error.msg.label "Mensagem de Erro">
<!ENTITY foxyproxy.pac.result.label "Resultado do PAC">
<!ENTITY foxyproxy.options.width "666">
<!ENTITY foxyproxy.options.height "477">
<!ENTITY foxyproxy.torwiz.width "660">
<!ENTITY foxyproxy.torwiz.height "375">
<!ENTITY foxyproxy.addeditproxy.width "660">
<!ENTITY foxyproxy.addeditproxy.height "470">

View File

@ -0,0 +1,136 @@
extensions.foxyproxy@eric.h.jung.description=FoxyProxy - A sua privacidade de volta!
foxyproxy=FoxyProxy
tor=Tor
privoxy=Privoxy
settings.error=Erro a ler as configurações
error=Erro
welcome=Benvindo ao FoxyProxy
yes=Sim
no=Não
disabled=Inactivo
torwiz.configure=Quer configurar o FoxyProxy para usar a rede Tor?
torwiz.with.without.privoxy=Está a usar a rede Tor com ou sem Privoxy?
torwiz.with=Com
torwiz.without=Sem
torwiz.privoxy.not.required=Por favor note: a partir do Firefox 1.5, o Privoxy não é mais necessário para usar o Firefox com a rede Tor. O Privoxy adiciona características como filtros de conteúdos, mas não é de todo necessário para usar com o Firefox 1.5+ e a rede Tor. Sendo assim, ainda quer que o Firefox use a rede Tor via Privoxy?
torwiz.port=Por favor introduza a porta na qual %S está à escuta. Se não souber, use o valor por defeito.
torwiz.nan=Isso não é um número.
torwiz.proxy.notes=Proxy através da rede Tor - http://tor.eff.org
torwiz.google.mail=Mail do Google
torwiz.pattern=http://*mail.google.com/*
torwiz.congratulations=Parabéns! O FoxyProxy foi configurado para ser usado com a rede Tor. Por favor, assegure-se que a rede Tor está em execução antes de visitar URL que utilizem a rede. Adicionalmente, se configurou o FoxyProxy para usar o Privoxy, assegure-se que também este está a ser executado.
torwiz.cancelled=O Wizard para a rede Tor do FoxyProxy foi cancelado.
mode.patterns.label=Utilizar proxies baseados nos seus padrões e prioridades pré-definidas.
mode.patterns.accesskey=U
mode.patterns.tooltip=Utilizar proxies baseados nos seus padrões e prioridades pré-definidas.
mode.custom.label=Utilizar o proxy "%S" para todos os URL
mode.custom.tooltip=Utilizar o proxy "%S" para todos os URL
mode.disabled.label=Desligar completamente o FoxyProxy
mode.disabled.accesskey=D
mode.disabled.tooltip=Desligar completamente o FoxyProxy
more.label=Mais
more.accesskey=M
more.tooltip=Mais Opções
invalid.url=O URL especificado para a configuração automática do proxy não é válido.
protocols.error=Por favor, especifique um ou mais protocolos para o proxy.
noport2=Uma porta tem que ser especificada para o servidor
nohost2=O nome do servidor tem que ser especificado com a porta
nohostport=O nome do servidor e a porta têm que ser especificados
torwiz.nopatterns=Não introduziu nenhum padrão de URL na Lista Branca (Inclusiva). Isto significa que a rede Tor não será usada. Deseja continuar mesmo assim?
months.long.1=Janeiro
months.short.1=Jan
months.long.2=Fevereiro
months.short.2=Fev
months.long.3=Março
months.short.3=Mar
months.long.4=Abril
months.short.4=Abr
months.long.5=Maio
months.short.5=Mai
months.long.6=Junho
months.short.6=Jun
months.long.7=Julho
months.short.7=Jul
months.long.8=Agosto
months.short.8=Ago
months.long.9=Setembro
months.short.9=Set
months.long.10=Outubro
months.short.10=Out
months.long.11=Novembro
months.short.11=Nov
months.long.12=Dezembro
months.short.12=Dez
days.long.1=Domingo
days.short.1=Dom
days.long.2=Segunda
days.short.2=Seg
days.long.3=Terça
days.short.3=Ter
days.long.4=Quarta
days.short.4=Qua
days.long.5=Quinta
days.short.5=Qui
days.long.6=Sexta
days.short.6=Sex
days.long.7=Sábado
days.short.7=Sab
timeformat=HH:nn:ss:zzz dd mmm, yyyy
file.select=Seleccione o ficheiro no qual pretende guardar as configurações
manual=Manual
auto=Auto
direct=Directo
delete.proxy.confirm=Apagar o proxy: tem a certeza?
pattern.required=É necessário um padrão.
pattern.invalid.regex=%S não é uma expressão regular válida.
proxy.error.for.url=Erro a determinar o proxy para %S
proxy.default.settings.used=O FoxyProxy não é utilizado para este URL - foi utilizada a definição por defeito da ligação do Firefox
proxy.all.urls=Todos os URL foram configurados para utilizar este proxy
pac.status=Estado do PAC do FoxyProxy
pac.status.loadfailure=Falhou o carregamento do PAC para o Proxy "%S"
pac.status.success=Carregou o PAC para o Proxy "%S"
pac.status.error=Erro no PAC para o Proxy "%S"
error.noload=Erro. Por favor, contacte a equipa de desenvolvimento do FoxyProxy. Não estão a sair nenhuns dados privados, no entanto o recurso não será carregado. A excepção é %S
proxy.name.required=Por favor introduza um nome para este proxy no tabulador Geral
proxy.default=Defeito
proxy.default.notes=Estas são as configurações que irão ser utilizadas quando não encontrar um padrão que coincida com um URL.
proxy.default.match.name=Todos
delete.proxy.default=Não pode apagar este proxy.
copy.proxy.default=Não pode copiar este proxy.
logg.maxsize.change=Irá apagar o registo. Continuar?
logg.maxsize.maximum=O número máximo recomendado é 9999. Valores maiores irão consumir muita memória e afectar o desempenho. Continuar mesmo assim?
proxy.random=Foi seleccionado aleatoriamente um proxy
mode.random.label=Utilizar proxies aleatórios para todos os URL (ignorar todos os padrões e prioridades)
mode.random.accesskey=R
mode.random.tooltip=Carregar os URL através de proxies aleatórios (ignorar todos os padrões e prioridades)
random=Aleatório
random.applicable=Esta configuração apenas se aplica quando o modo é "Utilizar proxies aleatórios para todos os URL (ignorar todos os padrões e prioridades)"
superadd.error=Erro de configuração. %S foi desactivado.
superadd.notify=Proxy %S
superadd.url.added=%S foi adicionado ao Proxy "%S"
autoadd.pattern.label=Padrão dinámico
quickadd.pattern.label=Adicionar rapido Padrão Dinámico
torwiz.proxydns=Deseja que os pedidos de DSN sejam enviados através da rede Tor? Se não entendeu esta pergunta, selecciona "Sim".
superadd.verboten2=%S não pode ser activado devido a não usar proxies ou a todos os proxies estarem desactivados
autoadd.notice=Por favor repare: O Adicionar Automático afecta o tempo que demora a carregar uma página. Quanto mais complexo for o padrão e quanto maior for a página, mais tempo demorará o Adicionar Automático a processar. Se a demora for significativa, por favor, desligue o Adicionar Automático.
autoadd.notice2=
autoconfurl.test.success=O PAC foi encontrado, carregador e formatado com sucesso.
autoconfurl.test.fail=Houve um problema a carregar, encontrar ou a formatar o PAC:\nHTTP Código de Estado: %S\nExcepção: %S
none=Nenhum
delete.settings.ask=Quer apagar as configurações do FoxyProxy guardadas em %S?
delete.settings.confirm=%S será apagado quando todos os browsers forem fechados.
no.wildcard.characters=O padrão não contém caracteres de substituição. Isto significa que "%S" será procurado tal como é. Não é normal que o FoxyProxy seja usado desta forma e na maior parte dos casos significa que há um erro no padrão ou que não compreendeu como definir os padrões do FoxyProxy. Deseja continuar mesmo assim?
message.stop=Não mostrar esta mensagem novamente
log.save=Gravar o Registo
log.saved2=O Registo foi gravado para %S. Deseja vê-lo agora?
log.nourls.url=Não guardar registo
log.scrub=Apagar as entradas no Registo dos URLs?
no.white.patterns=Não introduziu nenhum padrão de URL na Lista Branca (Inclusiva). Isto significa que o proxy não será usado. Deseja continuar mesmo assim?
quickadd.quickadd.canceled=O adicionar rápido foi cancelado devido ao URL actual já coincidir com o padrão existente chamado "%S" do proxy "%S"
quickadd.nourl=Não foi possível recuperar o URL actual
cookies.allremoved=Todos os cookies foram removidos
route.error=Erro enquanto tentava determinar que servidor usar para servir de proxy
route.exception=Ocorreu uma excepção ao determinar que servidor usar para servir de proxy %S
see.log=Por favor, consulte o registo para mais informações
pac.select=Seleccione um ficheiro PAC para utilizar
pac.files=Ficheiros PAC

View File

@ -0,0 +1,55 @@
<!-- switched from xhtml to html because of BabelZilla WTS adds extraneous html tags on locale download -->
<html>
<head>
<style type="text/css">
table {
border-width: 0px;
border-spacing: 2px;
border-style: none;
border-color: white;
border-collapse: separate;
background-color: rgb(250, 240, 230);
font-size: x-small;
font-family: verdana, sans-serif;
}
table td,table th {
border-width: 1px;
padding: 1px;
border-style: groove;
border-color: green;
background-color: rgb(250, 240, 230);
vertical-align: top;
font-size: x-small;
font-family: verdana, sans-serif;
}
p {background-color: white; font-size: x-small; font-family: verdana, sans-serif;}
body {font-family: verdana, sans-serif;}
h3 {font-size: small;}
h4 {font-size: x-small;}
</style>
</head>
<body>
<h3>Padrões de URL</h3>
<p>Antes do Firefox carregar um URL, pergunta ao FoxyProxy qual o proxy que deverá ser usado.
O FoxyProxy responde a essa questão através da tentativa de corresponder o URL actual com todos os padrões de URL definidos am baixo.
A forma mais simples de especificar padrões de URL é através da utilização de meta-caracteres.</p>
<h4><a name="wildcards">Meta-caracteres</a></h4>
<p>Os meta-caracteres são largamente utilizados em computação; Provavelmente já os utilizou ou viu antes.
O asterisco (*) é substituído por um conjunto de zero ou mais caracteres e o ponto de interrogação (?) é substituído
por qualquer um caracter.
</p>
<p>É possível definir regras de correspondência mais avançadas através da utilização de expressões regulares. Para mais informação carregue no botão de "Conteúdo da Ajuda".</p>
<h4>Exemplos de Meta-caracteres</h4>
<table>
<thead><tr><th>Padrão de URL</th><th>Algumas correspondências</th><th>Algumas não-correspondências</th></tr></thead>
<tr><td>*://*.yahoo.com/*</td><td>Tudo no domínio do Yahoo</td><td>http://mail.google.com/</td></tr>
<tr><td>*://mail.yahoo.com/*</td><td>http://mail.yahoo.com/<br/>http://mail.yahoo.com/clownshoes/<br/>http://mail.yahoo.com/inbox/123.html<br/>ftp://mail.yahoo.com</td><td>http://maps.yahoo.com</td></tr>
<tr><td>http://??.wikipedia.org/wiki/Clown</td><td>http://en.wikipedia.org/wiki/Clown<br/>http://de.wikipedia.org/wiki/Clown<br/>http://cs.wikipedia.org/wiki/Clown</td><td>https://en.wikipedia.org/wiki/Clown<br/>http://de.wikipedia.org/wiki/Clown/<br/>ftp://en.wikipedia.org/wiki/Clown</td></tr>
<tr><td>http://digg.com/</td><td>http://digg.com/</td><td>http://digg.com<br/>http://www.digg.com/</td></tr>
<tr><td>*://*.asimov.???/*</td><td>ftp://ftp.asimov.net/<br/>ftp://ftp.asimov.com/theory.html<br/>http://bear.asimov.net/mom/<br/>https://isaac.asimov.org/hercules<br/>gopher://asimov.net/</td>
<td>ftp://ftp.asimov.co.uk<br/>http://isaac.home.com/tin.php</td></tr>
<tr><td>*</td><td><i>Corresponde com tudo</i></td><td>&nbsp;</td></tr>
</table>
</body>
</html>

View File

@ -0,0 +1,427 @@
<!ENTITY foxyproxy.label "FoxyProxy">
<!ENTITY foxyproxy.accesskey "F">
<!ENTITY foxyproxy.tooltip "FoxyProxy">
<!ENTITY foxyproxy.optionsdialog.label "Настройка FoxyProxy">
<!ENTITY foxyproxy.options.label "Настройки">
<!ENTITY foxyproxy.options.accesskey "O">
<!ENTITY foxyproxy.options.tooltip "Запустить процедуру настройки">
<!ENTITY foxyproxy.tree.pickertooltiptext.label "Кликнуть по столбцу, который надо отобразить">
<!ENTITY foxyproxy.proxy.name.label "Имя прокси">
<!ENTITY foxyproxy.proxy.name.accesskey "И">
<!ENTITY foxyproxy.proxy.name.tooltip "Имя прокси">
<!ENTITY foxyproxy.proxy.notes.label "Примечания прокси">
<!ENTITY foxyproxy.proxy.notes.accesskey "П">
<!ENTITY foxyproxy.proxy.notes.tooltip "Примечания прокси">
<!ENTITY foxyproxy.pattern.label "Шаблон">
<!ENTITY foxyproxy.pattern.type.label "Тип шаблона">
<!ENTITY foxyproxy.whitelist.blacklist.label "&quot;Белый&quot; список (разрешения) или &quot;чёрный&quot; список (запрещения)">
<!ENTITY foxyproxy.pattern.name.label "Название шаблона">
<!ENTITY foxyproxy.pattern.name.accesskey "Ш">
<!ENTITY foxyproxy.pattern.name.tooltip "Имя для шаблона">
<!ENTITY foxyproxy.url.pattern.label "Шаблон URL">
<!ENTITY foxyproxy.url.pattern.accesskey "U">
<!ENTITY foxyproxy.url.pattern.tooltip "Шаблон URL">
<!ENTITY foxyproxy.enabled.label "Включено">
<!ENTITY foxyproxy.enabled.accesskey "В">
<!ENTITY foxyproxy.enabled.tooltip "Вкл/Выкл">
<!ENTITY foxyproxy.delete.selection.label "Удалить">
<!ENTITY foxyproxy.delete.selection.accesskey "У">
<!ENTITY foxyproxy.delete.selection.tooltip "Удалить отмеченные элементы">
<!ENTITY foxyproxy.edit.selection.label "Изменить">
<!ENTITY foxyproxy.edit.selection.accesskey "И">
<!ENTITY foxyproxy.edit.selection.tooltip "Изменить отмеченный элемент">
<!ENTITY foxyproxy.help.label "Подсказка">
<!ENTITY foxyproxy.help.accesskey "П">
<!ENTITY foxyproxy.help.tooltip "Показать подсказку">
<!ENTITY foxyproxy.close.label "Выйти">
<!ENTITY foxyproxy.close.accesskey "В">
<!ENTITY foxyproxy.close.tooltip "Закрыть окно">
<!ENTITY foxyproxy.about.label "Справка">
<!ENTITY foxyproxy.about.accesskey "С">
<!ENTITY foxyproxy.about.tooltip "Открыть справку">
<!ENTITY foxyproxy.online.label "FoxyProxy в Интернет">
<!ENTITY foxyproxy.online.accesskey "И">
<!ENTITY foxyproxy.online.tooltip "Посетить сайт проекта FoxyProxy">
<!ENTITY foxyproxy.tor.label "Мастер настройки взаимодействия с Tor-сетью">
<!ENTITY foxyproxy.tor.accesskey "М">
<!ENTITY foxyproxy.tor.tooltip "Мастер настройки взаимодействия с Tor-сетью">
<!ENTITY foxyproxy.copy.selection.label "Копировать">
<!ENTITY foxyproxy.copy.selection.accesskey "К">
<!ENTITY foxyproxy.copy.selection.tooltip "Скопировать отмеченное">
<!ENTITY foxyproxy.mode.label "Режим выбора">
<!ENTITY foxyproxy.auto.url.label "URL автоматической настройки прокси">
<!ENTITY foxyproxy.auto.url.accesskey "A">
<!ENTITY foxyproxy.auto.url.tooltip "Ввести алдрес PAC-файла">
<!ENTITY foxyproxy.port.label "Порт">
<!ENTITY foxyproxy.port.accesskey "П">
<!ENTITY foxyproxy.port.tooltip "Порт">
<!ENTITY foxyproxy.socks.proxy.label "SOCKS-прокси">
<!ENTITY foxyproxy.socks.proxy.accesskey "C">
<!ENTITY foxyproxy.socks.proxy.tooltip "адрес SOCKS-прокси">
<!ENTITY foxyproxy.socks.v4 "SOCKS v4/4a">
<!ENTITY foxyproxy.socks.v5 "SOCKS v5">
<!ENTITY foxyproxy.addeditpattern.title "Добавить/Изменить шаблон">
<!ENTITY foxyproxy.wildcard.label "Метасимволы">
<!ENTITY foxyproxy.wildcard.accesskey "W">
<!ENTITY foxyproxy.wildcard.tooltip "Для определения шаблона URL использовать метасимволы (не регулярное выражение)">
<!ENTITY foxyproxy.wildcard.example.label "Например: *mail.yahoo.com/*">
<!ENTITY foxyproxy.regex.label "Регулярное выражение">
<!ENTITY foxyproxy.regex.accesskey "Р">
<!ENTITY foxyproxy.regex.tooltip "Для определения шаблона URL использовать регулярное выражение">
<!ENTITY foxyproxy.regex.example.label "Например: http?://.*\.mail\.yahoo\.com/.*">
<!ENTITY foxyproxy.version "Версия:">
<!ENTITY foxyproxy.createdBy "Автор:">
<!ENTITY foxyproxy.copyright "Copyright">
<!ENTITY foxyproxy.rights "Все права защищены.">
<!ENTITY foxyproxy.released "Реализовано под лицензией GPL.">
<!ENTITY foxyproxy.thanks "Особая благодарность:">
<!ENTITY foxyproxy.translations "Перевод интерфейса:">
<!ENTITY foxyproxy.tab.general.label "Общие">
<!ENTITY foxyproxy.tab.general.accesskey "О">
<!ENTITY foxyproxy.tab.general.tooltip "Управление основными настройками прокси">
<!ENTITY foxyproxy.tab.proxy.label "Настройки соединения">
<!ENTITY foxyproxy.tab.proxy.accesskey "Н">
<!ENTITY foxyproxy.tab.proxy.tooltip "Управление настройками соединения">
<!ENTITY foxyproxy.tab.patterns.label "Шаблоны">
<!ENTITY foxyproxy.tab.patterns.accesskey "Ш">
<!ENTITY foxyproxy.tab.patterns.tooltip "Управление шаблонами URL">
<!ENTITY foxyproxy.add.title "Параметры прокси">
<!ENTITY foxyproxy.pattern.description "Определяется когда использовать этот прокси, а когда нет.">
<!ENTITY foxyproxy.pattern.matchtype.label "Содержание шаблона">
<!ENTITY foxyproxy.pattern.matchtype2.label "Шаблон для определения блокированных веб-сайтов содержит">
<!ENTITY foxyproxy.pattern.template.matchtype.label "Образец шаблон содержит">
<!ENTITY foxyproxy.pattern.whiteblack.label "URL соответствия/исключения">
<!ENTITY foxyproxy.add.option.direct.label "Прямое подключение к Интернету">
<!ENTITY foxyproxy.add.option.direct.accesskey "П">
<!ENTITY foxyproxy.add.option.direct.tooltip "Без прокси - использовать прямое соединения с Интернет">
<!ENTITY foxyproxy.add.option.manual.label "Настройка прокси вручную">
<!ENTITY foxyproxy.add.option.manual.accesskey "В">
<!ENTITY foxyproxy.add.option.manual.tooltip "Настройка конфигурации прокси вручную">
<!ENTITY foxyproxy.add.new.pattern.label "Добавить шаблон">
<!ENTITY foxyproxy.add.new.pattern.accesskey "Д">
<!ENTITY foxyproxy.add.new.pattern.tooltip "Добавить шаблон">
<!ENTITY foxyproxy.menubar.file.label "Файл">
<!ENTITY foxyproxy.menubar.file.accesskey "Ф">
<!ENTITY foxyproxy.menubar.file.tooltip "Открытие меню &quot;Файл&quot;">
<!ENTITY foxyproxy.menubar.help.label "Помощь">
<!ENTITY foxyproxy.menubar.help.accesskey "П">
<!ENTITY foxyproxy.menubar.help.tooltip "Открытие меню &quot;Подсказка&quot;">
<!ENTITY foxyproxy.mode.accesskey "М">
<!ENTITY foxyproxy.mode.tooltip "Выбрать способ включения FoxyProxy">
<!ENTITY foxyproxy.tab.proxies.label "Прокси">
<!ENTITY foxyproxy.tab.proxies.accesskey "П">
<!ENTITY foxyproxy.tab.proxies.tooltip "Управление прокси">
<!ENTITY foxyproxy.tab.global.label "Общие настройки">
<!ENTITY foxyproxy.tab.global.accesskey "О">
<!ENTITY foxyproxy.tab.global.tooltip "Управление общими настройками">
<!ENTITY foxyproxy.tab.logging.label "Журналирование">
<!ENTITY foxyproxy.tab.logging.accesskey "Ж">
<!ENTITY foxyproxy.tab.logging.tooltip "Управление параметрами журналирования">
<!ENTITY foxyproxy.proxydns.label "Использовать SOCKS-прокси для DNS-запросов">
<!ENTITY foxyproxy.proxydns.accesskey "U">
<!ENTITY foxyproxy.proxydns.tooltip "Если отмечено, тогда DNS-запросы отправляются через SOCKS-прокси">
<!ENTITY foxyproxy.proxydns.notice "Новые настройки вступят в силу после перезагрузки браузера. Перезагрузить?">
<!ENTITY foxyproxy.showstatusbaricon.label "Отобразить иконку в строке состояния">
<!ENTITY foxyproxy.showstatusbaricon.accesskey "С">
<!ENTITY foxyproxy.showstatusbaricon.tooltip "Если отмечено, тогда иконка FoxyProxy отображается в строке состояния">
<!ENTITY foxyproxy.showstatusbarmode.label "Отобразить режим (название) в строке состояния">
<!ENTITY foxyproxy.showstatusbarmode.accesskey "С">
<!ENTITY foxyproxy.showstatusbarmode.tooltip "Если отмечено, тогда режим FoxyProxy отображается в строке состояния">
<!ENTITY foxyproxy.storagelocation.label "Расположение файла настроек">
<!ENTITY foxyproxy.storagelocation.accesskey "Р">
<!ENTITY foxyproxy.storagelocation.tooltip "Расположение файла настроек FoxyProxy">
<!ENTITY foxyproxy.tab.logging.timestamp.label "Метка">
<!ENTITY foxyproxy.tab.logging.url.label "URL">
<!ENTITY foxyproxy.host.label "Имя хоста">
<!ENTITY foxyproxy.host.accesskey "И">
<!ENTITY foxyproxy.host.tooltip "Имя хоста">
<!ENTITY foxyproxy.clear.label "Очистить">
<!ENTITY foxyproxy.clear.accesskey "О">
<!ENTITY foxyproxy.clear.tooltip "Очистить">
<!ENTITY foxyproxy.refresh.label "Обновить">
<!ENTITY foxyproxy.refresh.accesskey "б">
<!ENTITY foxyproxy.refresh.tooltip "Обновить">
<!ENTITY foxyproxy.save.label "Сохранить">
<!ENTITY foxyproxy.save.accesskey "С">
<!ENTITY foxyproxy.save.tooltip "Сохранить">
<!ENTITY foxyproxy.addnewproxy.label "Добавить прокси">
<!ENTITY foxyproxy.addnewproxy.accesskey "Д">
<!ENTITY foxyproxy.addnewproxy.tooltip "Добавить прокси">
<!ENTITY foxyproxy.whitelist.label "&quot;Белый&quot; список">
<!ENTITY foxyproxy.whitelist.accesskey "Б">
<!ENTITY foxyproxy.whitelist.tooltip "Адреса, соответствующие этому шаблону, будут загружаться через данный прокси">
<!ENTITY foxyproxy.whitelist.description.label "Адреса, соответствующие этому шаблону, будут загружаться через данный прокси">
<!ENTITY foxyproxy.blacklist.label "&quot;Чёрный&quot; список">
<!ENTITY foxyproxy.blacklist.accesskey "Ч">
<!ENTITY foxyproxy.blacklist.tooltip "Адреса, НЕ соответствующие этому шаблону, будут загружаться через данный прокси">
<!ENTITY foxyproxy.blacklist.description.label "Адреса, НЕ соответствующие этому шаблону, будут загружаться через данный прокси">
<!ENTITY foxyproxy.whiteblack.description.label "Шаблоны из &quot;чёрного&quot; списка имеют более высокий приоритет по сравнению с шаблонами из &quot;белого&quot; списка. Т.е. если URL-адрес совпадает как с шаблоном из &quot;белого&quot; списка, так и с шаблоном из &quot;чёрного&quot; списка для того же прокси, тогда URL исключается из разрешённых к загрузке через данный прокси.">
<!ENTITY foxyproxy.usingPFF.label1 "Используется с">
<!ENTITY foxyproxy.usingPFF.label2 "Portable Firefox">
<!ENTITY foxyproxy.usingPFF.accesskey "P">
<!ENTITY foxyproxy.usingPFF.tooltip "Отметьте, если используете расширение с Portable Firefox">
<!ENTITY foxyproxy.socks.version.label "Версия SOCKS">
<!ENTITY foxyproxy.autopacurl.label "Auto PAC URL">
<!ENTITY foxyproxy.issocks.label "SOCKS-прокси?">
<!ENTITY foxyproxy.issocks.accesskey "S">
<!ENTITY foxyproxy.issocks.tooltip "Это веб- или SOCKS-прокси?">
<!ENTITY foxyproxy.chinese.simplified "Китайский (упрощенный)">
<!ENTITY foxyproxy.chinese.traditional "Китайский (традиционный)">
<!ENTITY foxyproxy.croatian "Хорватский">
<!ENTITY foxyproxy.czech "Чешский">
<!ENTITY foxyproxy.danish "Датский">
<!ENTITY foxyproxy.dutch "Голландский">
<!ENTITY foxyproxy.english "Английский">
<!ENTITY foxyproxy.english.british "Английский (Британия)">
<!ENTITY foxyproxy.french "Французский">
<!ENTITY foxyproxy.german "Немецкий">
<!ENTITY foxyproxy.greek "Греческий">
<!ENTITY foxyproxy.hungarian "Венгерский">
<!ENTITY foxyproxy.italian "Итальянский">
<!ENTITY foxyproxy.persian "Персидский">
<!ENTITY foxyproxy.polish "Польский">
<!ENTITY foxyproxy.portugese.brazilian "Португальский (Бразилия)">
<!ENTITY foxyproxy.portugese.portugal "Португальский (Португалия)">
<!ENTITY foxyproxy.romanian "Румынский">
<!ENTITY foxyproxy.russian "Русский">
<!ENTITY foxyproxy.slovak "Словацкий">
<!ENTITY foxyproxy.spanish.spain "Испанский (Испания)">
<!ENTITY foxyproxy.spanish.argentina "Испанский (Аргентина)">
<!ENTITY foxyproxy.swedish "Шведский">
<!ENTITY foxyproxy.thai.thailand "Тайский (Таиланд)">
<!ENTITY foxyproxy.turkish "Турецкий">
<!ENTITY foxyproxy.ukrainian "Украинский">
<!ENTITY foxyproxy.your.language "Ваш язык">
<!ENTITY foxyproxy.your.name.here "Ваше имя здесь!">
<!ENTITY foxyproxy.moveup.label "Вверх">
<!ENTITY foxyproxy.moveup.tooltip "Повысить приоритет отмеченного прокси">
<!ENTITY foxyproxy.moveup.accesskey "В">
<!ENTITY foxyproxy.movedown.label "Вниз">
<!ENTITY foxyproxy.movedown.tooltip "Понизить приоритет отмеченного прокси">
<!ENTITY foxyproxy.movedown.accesskey "н">
<!ENTITY foxyproxy.autoconfurl.view.label "Показать">
<!ENTITY foxyproxy.autoconfurl.view.accesskey "П">
<!ENTITY foxyproxy.autoconfurl.view.tooltip "Отобразить файл автоматической конфигурации прокси">
<!ENTITY foxyproxy.autoconfurl.test.label "Проверить">
<!ENTITY foxyproxy.autoconfurl.test.accesskey "П">
<!ENTITY foxyproxy.autoconfurl.test.tooltip "Проверить файл автоматической конфигурации прокси">
<!ENTITY foxyproxy.autoconfurl.reload.label "Перезагрузить PAC-файл">
<!ENTITY foxyproxy.autoconfurl.reload.accesskey "П">
<!ENTITY foxyproxy.autoconfurl.reload.tooltip "Автоматически загружать PAC-файл через заданный период">
<!ENTITY foxyproxy.minutes.label "мин">
<!ENTITY foxyproxy.minutes.tooltip "мин">
<!ENTITY foxyproxy.logging.maxsize.label "Максимальный размер">
<!ENTITY foxyproxy.logging.maxsize.accesskey "М">
<!ENTITY foxyproxy.logging.maxsize.tooltip "Максимальное количество записей перед тем как журнал начнёт перезаписываться сначала">
<!ENTITY foxyproxy.logging.maxsize.button.label "Установить">
<!ENTITY foxyproxy.logging.maxsize.button.accesskey "У">
<!ENTITY foxyproxy.logging.maxsize.button.tooltip "Установить максимальное количество записей перед тем как журнал начнёт перезаписываться сначала">
<!ENTITY foxyproxy.random.label "Загружать URL через случайно выбранные прокси (игнорировать любые шаблоны и приоритеты)">
<!ENTITY foxyproxy.random.accesskey "С">
<!ENTITY foxyproxy.random.tooltip "Загружать URL через случайно выбранные прокси (игнорировать любые шаблоны и приоритеты)">
<!ENTITY foxyproxy.random.includedirect.label "Включить прокси, настроенные как прямое подключение к Интернет">
<!ENTITY foxyproxy.random.includedirect.accesskey "п">
<!ENTITY foxyproxy.random.includedirect.tooltip "Прокси, настроенные как прямое подключение к Интернет, использовать при случайном выборе прокси">
<!ENTITY foxyproxy.random.includedisabled.label "Включить отключённые прокси">
<!ENTITY foxyproxy.random.includedisabled.accesskey "В">
<!ENTITY foxyproxy.random.includedisabled.tooltip "Отключённые прокси включены в список случайно выбираемых">
<!ENTITY foxyproxy.random.settings.label "Случайный выбор прокси">
<!ENTITY foxyproxy.random.settings.accesskey "С">
<!ENTITY foxyproxy.random.settings.tooltip "Параметры, которые используются при случайном выборе прокси">
<!ENTITY foxyproxy.tab.autoadd.label "Автодобавление">
<!ENTITY foxyproxy.tab.autoadd.accesskey "А">
<!ENTITY foxyproxy.tab.autoadd.tooltip "Управление параметрами автодобавления">
<!ENTITY foxyproxy.autoadd.description "Определите шаблон, который сигнализирует о блокировании вебсайтов. Когда на странице найден данный контекст, тогда шаблон, которому соответствует URL вебсайта автоматически добавляется к прокси и возможно повторно загружает страницу. Это предотвращает предварительное определение всех блокированных вебсайтов.">
<!ENTITY foxyproxy.autoadd.pattern.label "Шаблон для идентификации блокированных сайтов">
<!ENTITY foxyproxy.autoadd.pattern.accesskey "Ш">
<!ENTITY foxyproxy.autoadd.pattern.tooltip "Шаблон, по которому определяется что вебсайты блокированы">
<!ENTITY foxyproxy.autoadd.wildcard.example.label "Например: *You are not authorized to view this page*">
<!ENTITY foxyproxy.autoadd.regex.example.label "Например: .*Site.*has been blocked.*">
<!ENTITY foxyproxy.autoadd.proxy.label "Прокси, к которому автоматически добавляются шаблоны">
<!ENTITY foxyproxy.autoadd.proxy.accesskey "П">
<!ENTITY foxyproxy.autoadd.proxy.tooltip "Задаётся прокси, к которому автоматически добавляются URL">
<!ENTITY foxyproxy.pattern.template.label "Заготовка шаблона URL">
<!ENTITY foxyproxy.pattern.template.accesskey "U">
<!ENTITY foxyproxy.pattern.template.tooltip "Заготовка шаблона URL">
<!ENTITY foxyproxy.pattern.template.example.label1 "Пример для">
<!ENTITY foxyproxy.pattern.template.example.label2 "http://fred:secret@mail.foo.com:8080/inbox/msg102.htm#subject?style=elegant">
<!ENTITY foxyproxy.pattern.template.currenturl.label "Текущий URL">
<!ENTITY foxyproxy.pattern.template.currenturl.accesskey "Т">
<!ENTITY foxyproxy.pattern.template.currenturl.tooltip "URL в адресной строке">
<!ENTITY foxyproxy.pattern.template.generatedpattern.label "Сгенерированный шаблон">
<!ENTITY foxyproxy.pattern.template.generatedpattern.accesskey "г">
<!ENTITY foxyproxy.pattern.template.generatedpattern.tooltip "Динамически сгененрированный шаблон">
<!ENTITY foxyproxy.autoadd.reload.label "Повторно загрузить страницу после добавления сайта к прокси">
<!ENTITY foxyproxy.autoadd.reload.accesskey "П">
<!ENTITY foxyproxy.autoadd.reload.tooltip "Автоматически повторно загрузить страницу после того как она была довалена к прокси">
<!ENTITY foxyproxy.autoadd.notify.label "Уведомлять когда используется Автодобавление">
<!ENTITY foxyproxy.autoadd.notify.accesskey "У">
<!ENTITY foxyproxy.autoadd.notify.tooltip "Информировать когда страница блокирована и шаблон URL добавлен к прокси">
<!ENTITY foxyproxy.graphics "Графический дизайн и картинки">
<!ENTITY foxyproxy.website "Вебсайт:">
<!ENTITY foxyproxy.contributions "Участники проекта:">
<!ENTITY foxyproxy.pacloadnotification.label "Предупреждать когда для прокси используется файл автоконфигурации">
<!ENTITY foxyproxy.pacloadnotification.accesskey "А">
<!ENTITY foxyproxy.pacloadnotification.tooltip "При загрузке PAC-файла показать всплывающее окно">
<!ENTITY foxyproxy.pacerrornotification.label "Предупреждать об ошибках в файле автоконфигурации прокси">
<!ENTITY foxyproxy.pacerrornotification.accesskey "о">
<!ENTITY foxyproxy.pacerrornotification.tooltip "Когда PAC-файл содержит ошибки показать всплывающее окно">
<!ENTITY foxyproxy.toolsmenu.label "Включить FoxyProxy в меню &quot;Инструменты&quot;">
<!ENTITY foxyproxy.toolsmenu.accesskey "И">
<!ENTITY foxyproxy.toolsmenu.tooltip "Включить FoxyProxy в меню &quot;Инструменты&quot;">
<!ENTITY foxyproxy.tip.label "Tip">
<!ENTITY foxyproxy.pactips.popup.height "165px">
<!ENTITY foxyproxy.pactips.popup.width "400px">
<!ENTITY foxyproxy.pactip1.label "Для PAC-файлов, сохранённых на локальном диске, необходимо использовать протокол file://. Например, file://c:/path/proxy.pac в Windows или file:///home/users/joe/proxy.pac в Unix/Linux/Mac.">
<!ENTITY foxyproxy.pactip2.label "Для PAC-файлов, сохранённых на ftp-сервере, необходимо использовать протокол ftp://. Например, ftp://leahscape.com/path/proxy.pac">
<!ENTITY foxyproxy.pactip3.label "Возможно использование http://, https:// и любых других протоколов.">
<!ENTITY foxyproxy.contextmenu.label "Включить FoxyProxy в контекстное меню">
<!ENTITY foxyproxy.contextmenu.accesskey "к">
<!ENTITY foxyproxy.contextmenu.tooltip "Включить FoxyProxy в контекстное меню">
<!ENTITY foxyproxy.quickadd.desc1 "QuickAdd добавляет к прокси динамический шаблон URL когда вы нажимаете Alt-F2. Это альтернатива для АвтоДобавления. Определите Alt-F2 клавиатурное сокращение с">
<!ENTITY foxyproxy.keyconfig.label "Конфигурация клавиш">
<!ENTITY foxyproxy.quickadd.desc2 "расширение">
<!ENTITY foxyproxy.quickadd.label "Оперативное добавление (QuickAdd)">
<!ENTITY foxyproxy.quickadd.accesskey "Q">
<!ENTITY foxyproxy.quickadd.tooltip "Управление настройками QuickAdd">
<!ENTITY foxyproxy.quickadd.notify.label "Предупреждать когда активируется QuickAdd">
<!ENTITY foxyproxy.quickadd.notify.accesskey "П">
<!ENTITY foxyproxy.quickadd.notify.tooltip "Уведомлять когда активизируется QuickAdd">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.label "Уведомить когда Быстрое добавление отключено">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.label2 "Быстрое добавление автоматически отменяется если оно активировано через Alt-F2, и текущий URL в строке состояния уже соответствует &quot;белому&quot; списку для существующего прокси. Таким образом предотвращается дублирование шаблонов.">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.accesskey "о">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.tooltip "Отобразить информер когда Быстрое добавление активировано, но отменено">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.popup.width "400px">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.popup.height "130px">
<!ENTITY foxyproxy.whatsthis "Что это?">
<!ENTITY foxyproxy.quickadd.prompt.label "Запрашивать для изменения и подтверждения перед добавлением шаблона к прокси">
<!ENTITY foxyproxy.quickadd.prompt.accesskey "З">
<!ENTITY foxyproxy.quickadd.prompt.tooltip "Запрашивать для изменения и подтверждения перед добавлением шаблона к прокси">
<!ENTITY foxyproxy.quickadd.proxy.label "Прокси, к которому добавляется шаблон">
<!ENTITY foxyproxy.quickadd.proxy.accesskey "П">
<!ENTITY foxyproxy.quickadd.proxy.tooltip "Выбор прокси, к которым будет добавлен шаблон">
<!ENTITY foxyproxy.bypasscache.label "При загрузке не использовать кэш Firefox">
<!ENTITY foxyproxy.bypasscache.accesskey "B">
<!ENTITY foxyproxy.bypasscache.tooltip "Кэш Firefox игнорируется">
<!ENTITY foxyproxy.advancedmenus.label "Использовать меню дополнительных настроек">
<!ENTITY foxyproxy.advancedmenus.accesskey "M">
<!ENTITY foxyproxy.advancedmenus.tooltip "Использовать меню дополнительных настроек (в стиле FoxyProxy 2.2)">
<!ENTITY foxyproxy.importsettings.label "Импортировать настройки">
<!ENTITY foxyproxy.importsettings.accesskey "I">
<!ENTITY foxyproxy.importsettings.tooltip "Импорт настроек из файла">
<!ENTITY foxyproxy.exportsettings.label "Экспортировать настройки">
<!ENTITY foxyproxy.exportsettings.accesskey "E">
<!ENTITY foxyproxy.exportsettings.tooltip "Экспорт текущих настроек в файл">
<!ENTITY foxyproxy.importlist.label "Импортировать список прокси">
<!ENTITY foxyproxy.importlist.accesskey "I">
<!ENTITY foxyproxy.importlist.tooltip "Импорт текстового файла со списком прокси-серверов">
<!ENTITY foxyproxy.wildcard.reference.label "Wildcard Reference">
<!ENTITY foxyproxy.wildcard.reference.accesskey "W">
<!ENTITY foxyproxy.wildcard.reference.tooltip "Wildcard Reference">
<!ENTITY foxyproxy.wildcard.reference.subtitle.label "Звёздочка (*) соответствует 0 или большему любых символов, а вопросительный знак (?) соответствует любому одиночному символу">
<!ENTITY foxyproxy.wildcard.reference.mistakes "Общие ошибки при создании шаблонов с метасимволами">
<!ENTITY foxyproxy.wildcard.reference.goal.label "Цель">
<!ENTITY foxyproxy.wildcard.reference.goal1.label "Соответствует всем страницам в поддомене MySpace">
<!ENTITY foxyproxy.wildcard.reference.goal2.label "Соответствует локальному ПК">
<!ENTITY foxyproxy.wildcard.reference.goal3.label "Соответствует всем поддоменам и страницам адреса &quot;abc.com&quot;">
<!ENTITY foxyproxy.wildcard.reference.goal4.label "Соответствует всем страницам в домене &quot;a.foo.com&quot;, но не в домене &quot;b.foo.com&quot;">
<!ENTITY foxyproxy.wildcard.reference.correct.label "Верный">
<!ENTITY foxyproxy.wildcard.reference.correct2.label "Должно быть два шаблона">
<!ENTITY foxyproxy.wildcard.reference.incorrect.label "Неверный">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason.label "Пояснения почему это неверно">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason1.label "Т.к. нет метасимволов, соответствие только основной странице">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason2.label "Для FoxyProxy такой синтаксис неизвестен">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason3.label "Нет никаких метасимволов">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason4.label "Нет никаких метасимволов">
<!ENTITY foxyproxy.wildcard.reference.popup.height "350px">
<!ENTITY foxyproxy.logging.noURLs.label "Не сохранять и не отображать URL-адреса">
<!ENTITY foxyproxy.logging.noURLs.accesskey "U">
<!ENTITY foxyproxy.logging.noURLs.tooltip "URL-адреса не записаны в ОЗУ или на диск">
<!ENTITY foxyproxy.ok.label "ОК">
<!ENTITY foxyproxy.ok.accesskey "О">
<!ENTITY foxyproxy.ok.tooltip "Закрыть окно">
<!ENTITY foxyproxy.pattern.template.reference.label "Ссылка заготовки шаблона">
<!ENTITY foxyproxy.pattern.template.reference.accesskey "з">
<!ENTITY foxyproxy.pattern.template.reference.tooltip "Ссылка заготовки шаблона">
<!ENTITY foxyproxy.pattern.template.reference.subtitle.label "Заготовки шаблонов URL определяют формат URL для прокси, которые используют QuickAdd или Автодобавление. Заготовки поддерживают следующие специальные строки, которые при активизации QuickAdd или Автодобавления заменяются в панели адреса соответствующими компонентами URL.">
<!ENTITY foxyproxy.pattern.template.reference.specialstring.label "Специальная строка">
<!ENTITY foxyproxy.pattern.template.reference.subststring.label "Заменить на">
<!ENTITY foxyproxy.pattern.template.reference.example.label "Пример">
<!ENTITY foxyproxy.pattern.template.reference.scheme.label "протокол">
<!ENTITY foxyproxy.pattern.template.reference.username.label "имя">
<!ENTITY foxyproxy.pattern.template.reference.password.label "пароль">
<!ENTITY foxyproxy.pattern.template.reference.userpass.label "имя &amp; пароль с &quot;:&quot; &amp; &quot;@&quot;">
<!ENTITY foxyproxy.pattern.template.reference.host.label "хост">
<!ENTITY foxyproxy.pattern.template.reference.port.label "порт">
<!ENTITY foxyproxy.pattern.template.reference.hostport.label "хост &amp; порт с &quot;:&quot;">
<!ENTITY foxyproxy.pattern.template.reference.prepath.label "строка перед &quot;тропой&quot;">
<!ENTITY foxyproxy.pattern.template.reference.path.label "&quot;тропа&quot; (включая имя файла)">
<!ENTITY foxyproxy.pattern.template.reference.directory.label "каталог">
<!ENTITY foxyproxy.pattern.template.reference.filebasename.label "только имя файла">
<!ENTITY foxyproxy.pattern.template.reference.fileextension.label "расширение файла">
<!ENTITY foxyproxy.pattern.template.reference.filename.label "полное имя файла">
<!ENTITY foxyproxy.pattern.template.reference.ref.label "часть после &quot;#&quot;">
<!ENTITY foxyproxy.pattern.template.reference.query.label "часть после &quot;?&quot;">
<!ENTITY foxyproxy.pattern.template.reference.spec.label "полный URL">
<!ENTITY foxyproxy.pattern.template.reference.popup.height "400px">
<!ENTITY foxyproxy.pattern.template.reference.popup.width "800px">
<!ENTITY foxyproxy.notifications.label "Уведомления">
<!ENTITY foxyproxy.notifications.accesskey "У">
<!ENTITY foxyproxy.notifications.tooltip "Параметры уведомления">
<!ENTITY foxyproxy.indicators.label "Индикаторы">
<!ENTITY foxyproxy.indicators.accesskey "И">
<!ENTITY foxyproxy.indicators.tooltip "Параметры индикатора">
<!ENTITY foxyproxy.misc.label "Другое">
<!ENTITY foxyproxy.misc.accesskey "Д">
<!ENTITY foxyproxy.misc.tooltip "Другие параметры">
<!ENTITY foxyproxy.animatedicons.label "Анимировать иконку при использовании прокси">
<!ENTITY foxyproxy.animatedicons.accesskey "A">
<!ENTITY foxyproxy.animatedicons.tooltip "Анимировать иконку при использовании прокси (Основные настройки-&gt;Анимация должна быть отмечена)">
<!ENTITY foxyproxy.statusbaractivation.label "Активация строки состояния">
<!ENTITY foxyproxy.statusbaractivation.accesskey "с">
<!ENTITY foxyproxy.statusbaractivation.tooltip "Настройки активации строки состояния">
<!ENTITY foxyproxy.toolbaractivation.label "Активация панели инструментов">
<!ENTITY foxyproxy.toolbaractivation.accesskey "и">
<!ENTITY foxyproxy.toolbaractivation.tooltip "Настройки активации панели инструментов">
<!ENTITY foxyproxy.leftclicksb.label "Клик левой кнопкой на строке состояния">
<!ENTITY foxyproxy.leftclicksb.accesskey "л">
<!ENTITY foxyproxy.leftclicksb.tooltip "Действие выполняется при клике на строке состояния левой кнопкой">
<!ENTITY foxyproxy.middleclicksb.label "Клик средней кнопкой на строке состояния">
<!ENTITY foxyproxy.middleclicksb.accesskey "с">
<!ENTITY foxyproxy.middleclicksb.tooltip "Действие выполняется при клике на строке состояния средней кнопкой">
<!ENTITY foxyproxy.rightclicksb.label "Клик правой кнопкой на строке состояния">
<!ENTITY foxyproxy.rightclicksb.accesskey "п">
<!ENTITY foxyproxy.rightclicksb.tooltip "Действие выполняется при клике на строке состояния правой кнопкой">
<!ENTITY foxyproxy.leftclicktb.label "Клик левой кнопкой на инструментальной панели">
<!ENTITY foxyproxy.leftclicktb.accesskey "л">
<!ENTITY foxyproxy.leftclicktb.tooltip "Действие выполняется при клике на инструментальной панели левой кнопкой">
<!ENTITY foxyproxy.middleclicktb.label "Клик средней кнопкой на инструментальной панели">
<!ENTITY foxyproxy.middleclicktb.accesskey "с">
<!ENTITY foxyproxy.middleclicktb.tooltip "Действие выполняется при клике на инструментальной панели средней кнопкой">
<!ENTITY foxyproxy.rightclicktb.label "Клик правой кнопкой на инструментальной панели">
<!ENTITY foxyproxy.rightclicktb.accesskey "п">
<!ENTITY foxyproxy.rightclicktb.tooltip "Действие выполняется при клике на инструментальной панели правой кнопкой">
<!ENTITY foxyproxy.click.options "Показать настройку опций">
<!ENTITY foxyproxy.click.cycle "Цикл по режимам">
<!ENTITY foxyproxy.click.contextmenu "Показать контекстное меню">
<!ENTITY foxyproxy.click.reloadcurtab "Перезагрузить текущую вкладку">
<!ENTITY foxyproxy.click.reloadtabsinbrowser "Перезагрузить все вкладки в текущем окне">
<!ENTITY foxyproxy.click.reloadtabsinallbrowsers "Перезагрузить все вкладки во всех окнах">
<!ENTITY foxyproxy.click.removeallcookies "Удалить все куки">
<!ENTITY foxyproxy.includeincycle.label "Включить этот прокси во время цикличного перебора прокси при кликах на строке состояния и панели инструментов (должно быть отмечено: Общие настройки-&gt;Активация строки состояния/панели инструментов-&gt;Цикл по режимам)">
<!ENTITY foxyproxy.includeincycle.accesskey "В">
<!ENTITY foxyproxy.includeincycle.tooltip "Включить этот прокси когда клик в строке состояния или панели инструментов">
<!ENTITY foxyproxy.changes.msg1 "Внимание - нет настроек для HTTP, SSL, FTP, Gopher и SOCKS!">
<!ENTITY foxyproxy.newGUI.popup.height "270px">
<!ENTITY foxyproxy.newGUI.popup.width "400px">
<!ENTITY foxyproxy.newGUI1.label "The old FoxyProxy Proxy Settings screen was based on and nearly identical to Firefox&apos;s Connection Settings dialog, which in turn was nearly identical to the Proxy Settings in the ancient Mosaic 2.1.1 browser from 1996. The problem with all of these screens is their limited ability to route traffic by protocol. 21st century browsers like Firefox handle many more protocols than HTTP, SSL, FTP, and GOPHER. Clearly, these old screens would be unwieldy if they attempted to include every possible protocol.">
<!ENTITY foxyproxy.newGUI2.label "Since FoxyProxy already enables traffic routing by protocol with wildcard and regular expression patterns, the listing of protocols on this screen is unnecessary. As of version 2.5, FoxyProxy has removed this protocol list from the Proxy Settings GUI. However, this does not reduce functionality. It makes for a simpler interface. If you need to route traffic by protocol, you should define whitelist and blacklist patterns with careful attention to the scheme/protocol portion of the pattern (e.g., ftp://*.yahoo.com/*, *://leahscape.com/*, etc.)">
<!ENTITY foxyproxy.newGUI4.label "Кликнуть для подробностей">
<!ENTITY foxyproxy.error.msg.label "Сообщение об ошибке">
<!ENTITY foxyproxy.pac.result.label "Результат PAC-файла">
<!ENTITY foxyproxy.options.width "666">
<!ENTITY foxyproxy.options.height "477">
<!ENTITY foxyproxy.torwiz.width "660">
<!ENTITY foxyproxy.torwiz.height "375">
<!ENTITY foxyproxy.addeditproxy.width "660">
<!ENTITY foxyproxy.addeditproxy.height "470">

View File

@ -0,0 +1,136 @@
extensions.foxyproxy@eric.h.jung.description=FoxyProxy - верни себе конфиденциальность!
foxyproxy=FoxyProxy
tor=Tor
privoxy=Privoxy
settings.error=Ошибка при чтении настроек
error=Ошибка
welcome=Приветствуем в FoxyProxy!
yes=Да
no=Нет
disabled=Отключено
torwiz.configure=Сконфигурировать FoxyProxy для взаимодействия с Tor?
torwiz.with.without.privoxy=Использовать Tor с Privoxy или без него?
torwiz.with=с
torwiz.without=без
torwiz.privoxy.not.required=Примечание: начиная с версии Firefox 1.5, Privoxy больше ненужен для того чтобы использовать Firefox с Tor. Всё равно использовать Tor через Privoxy?
torwiz.port=Ввести порт, который слушает %S. Оставить значение по-умолчанию, если порт не известен.
torwiz.nan=Это не число.
torwiz.proxy.notes=Прокси-доступ через сеть Tor - http://tor.eff.org
torwiz.google.mail=GMail
torwiz.pattern=http*://mail.google.com/mail/*
torwiz.congratulations=Успех! FoxyProxy сконфигурирован для взаимодействия с Tor. Перед посещением сайтов убедитесь, что включён доступ к сети Tor. И если FoxyProxy сконфигурирован для работы Privoxy, убедитесь что он также запущен.
torwiz.cancelled=Работа Мастера настройки FoxyProxy для взаимодействия с сетью Tor была отменена.
mode.patterns.label=Использовать прокси, основанные на шаблонах
mode.patterns.accesskey=И
mode.patterns.tooltip=Использовать прокси, основанные на шаблонах
mode.custom.label=Использовать "%S" для всех адресов
mode.custom.tooltip=Использовать "%S" для всех адресов
mode.disabled.label=Полностью отключить FoxyProxy
mode.disabled.accesskey=о
mode.disabled.tooltip=Полностью отключить FoxyProxy
more.label=Дополнительно
more.accesskey=Д
more.tooltip=Другие настройки
invalid.url=Неверно указан URL для автоматической настройки прокси.
protocols.error=Для прокси необходимо задать не менее одного протокола.
noport2=Для хоста должен быть определён порт.
nohost2=Имя хоста должно быть задано с портом.
nohostport=Должны быть заданы имя хоста и порт.
torwiz.nopatterns=Не определены шаблоны адресов, для которых разрешён доступ. Поэтому Tor-сеть использоваться не будет. Продолжить?
months.long.1=Январь
months.short.1=Янв
months.long.2=Февраль
months.short.2=Фев
months.long.3=Март
months.short.3=Мар
months.long.4=Апрель
months.short.4=Апр
months.long.5=Май
months.short.5=Май
months.long.6=Июнь
months.short.6=Июн
months.long.7=Июль
months.short.7=Июл
months.long.8=Август
months.short.8=Авг
months.long.9=Сентябрь
months.short.9=Сен
months.long.10=Октябрь
months.short.10=Окт
months.long.11=Ноябрь
months.short.11=Ноя
months.long.12=Декабрь
months.short.12=Дек
days.long.1=Воскресенье
days.short.1=Вс
days.long.2=Понедельник
days.short.2=Пн
days.long.3=Вторник
days.short.3=Вт
days.long.4=Среда
days.short.4=Ср
days.long.5=Четверг
days.short.5=Чт
days.long.6=Пятница
days.short.6=Пт
days.long.7=Суббота
days.short.7=Сб
timeformat=hh:nn:ss:zzz a/p dd mmm yyyy
file.select=Для сохранения настроек необходимо указать файл
manual=Вручную
auto=Авто
direct=Без прокси
delete.proxy.confirm=Действительно удалить прокси?
pattern.required=Необходим шаблон.
pattern.invalid.regex=%S неверное регулярное выражение.
proxy.error.for.url=Ошибка определения прокси для %S
proxy.default.settings.used=Для этого URL использовались настройки Firefox по-умолчанию, а не настройки FoxyProxy
proxy.all.urls=Данный прокси сконфигурирован так, чтобы использовать для всех URL
pac.status=Состояние FoxyProxy PAC
pac.status.loadfailure=Неудачная загрузка PAC для прокси "%S"
pac.status.success=Загружен PAC для прокси "%S"
pac.status.error=Ошибка в файле PAC для прокси "%S"
error.noload=Ошибка. Пожалуйста известите о проблеме команду разработчиков FoxyProxy. Не будет никакой утечки частных данных. Исключение - %S
proxy.name.required=В основной вкладке необходимо ввести имя для прокси.
proxy.default=По-умолчанию
proxy.default.notes=Данные параметры используются если не подошёл ни один из шаблонов URL.
proxy.default.match.name=Все
delete.proxy.default=Нельзя удалить этот прокси.
copy.proxy.default=Нельзя копировать этот прокси.
logg.maxsize.change=Журнал будет очищен. Продолжить?
logg.maxsize.maximum=Максимально рекомендованный размер - 9999. Большие значения приведут к большему потреблению памяти и снижению быстродействия. Продолжить?
proxy.random=Прокси будет выбран случайным образом
mode.random.label=Использовать случайно выбранные прокси для всех адресов (игнорировать все шаблоны и приоритеты)
mode.random.accesskey=с
mode.random.tooltip=Загружать URL через случайно выбранные прокси (игнорировать все шаблоны и приоритеты)
random=Случайно
random.applicable=Эти настройки будут применены в режиме "Использовать случайно выбранные прокси для всех адресов (игнорировать все шаблоны и приоритеты)"
superadd.error=Ошибка конфигурации. %S был отключён.
superadd.notify=Прокси %S
superadd.url.added=%S добавлен к прокси "%S"
autoadd.pattern.label=Динамический шаблон
quickadd.pattern.label=Динамический шаблон для QuickAdd (быстрого добавления)
torwiz.proxydns=Посылать DNS-запросы через сеть Tor? Если вопрос не понятен ответьте согласием
superadd.verboten2=%S не может быть включен, т.к. не определено ни одного прокси или все прокси отключены.
autoadd.notice=Примечание: Автодобавление оказывает влияние на время загрузки страниц. Более сложный образец и больший размер вебстраницы удлиняют процесс Автодобавления. Если возникнут неприемлемые задержки - отключите Автодобавление.
autoadd.notice2=
autoconfurl.test.success=PAC-файл найден, загружен и успешно применён.
autoconfurl.test.fail=Возникли проблемы при поиске, загрузке и применению PAC-файла: %S\nИсключение: %S
none=Ничего
delete.settings.ask=Удалить настройки FoxyProxy, сохранённые в %S?
delete.settings.confirm=%S будет удален после закрытия браузера.
no.wildcard.characters=Шаблон не содержит метасимволов. Это оначает точное соответствие "%S". Это необычное использование FoxyProxy, вероятно ошибка в определении шаблона или неверное представление того как использовать шаблоны FoxyProxy. Продолжить?
message.stop=Не показывать это сообщение повторно
log.save=Сохранить журнал
log.saved2=Журнал был сохранён в %S. Отобразить?
log.nourls.url=Не журналировать
log.scrub=Очистить существующий журнал адресов?
no.white.patterns=Не задано ни одного URL-шаблона для "белого" списка (соответствия). Этот прокси никогда не будет применён. Продолжить?
quickadd.quickadd.canceled=QuickAdd has been canceled because the current URL already matches the existing pattern named "%S" in proxy "%S"
quickadd.nourl=Невозможно получить текущий URL
cookies.allremoved=Все куки удалены
route.error=Произошла ошибка во время определения какой прокси использовать
route.exception=Исключение в момент определения какой прокси используется для хоста %S
see.log=Подробности в журнале.
pac.select=Выбор PAC-файла для использования
pac.files=PAC-файлы

View File

@ -0,0 +1,51 @@
<!-- switched from xhtml to html because of BabelZilla WTS adds extraneous html tags on locale download -->
<html>
<head>
<style type="text/css">
table {
border-width: 0px;
border-spacing: 2px;
border-style: none;
border-color: white;
border-collapse: separate;
background-color: rgb(250, 240, 230);
font-size: x-small;
font-family: verdana, sans-serif;
}
table td,table th {
border-width: 1px;
padding: 1px;
border-style: groove;
border-color: green;
background-color: rgb(250, 240, 230);
vertical-align: top;
font-size: x-small;
font-family: verdana, sans-serif;
}
p {background-color: white; font-size: x-small; font-family: verdana, sans-serif;}
body {font-family: verdana, sans-serif;}
h3 {font-size: small;}
h4 {font-size: x-small;}
</style>
</head>
<body>
<h3>URL образцы</h3>
<p>Перед загрузкой страницы (URL) Firefox выясняет у FoxyProxy должен ли использоваться прокси.
FoxyProxy отвечает на запрос попыткой найти соответствие между текущим URL и теми URL-шаблонами, которые определены ниже.
Самый простой способ создать шаблон - использовать метасимволы (wildcards).</p>
<h4><a name="wildcards">Метасимволы</a></h4>
</p>
<p>Используя регулярные выражения можно составить более сложные правила. Нужны подробности - нажмите кнопку "Помощь".
</p>
<h4>Примеры использования метасимволов</h4>
<table>
<thead><tr><th>URL шаблон</th><th>Адрес соответствует шаблону</th><th>Адрес не соответствует шаблону</th></tr></thead>
<tr><td>*//:mail.yahoo.com/*</td><td>http://mail.yahoo.com/<br/>http://mail.yahoo.com/clownshoes/<br/>http://mail.yahoo.com/inbox/123.html<br/>ftp://mail.yahoo.com</td><td>http://maps.yahoo.com</td></tr>
<tr><td>http://digg.com/</td><td>http://digg.com/</td><td>http://digg.com<br/>http://www.digg.com/</td></tr>
<tr><td>*://*.asimov.???/*</td><td>ftp://ftp.asimov.net/<br/>ftp://ftp.asimov.com/theory.html<br/>http://bear.asimov.net/mom/<br/>https://isaac.asimov.org/hercules<br/>gopher://asimov.net/</td>
<td>ftp://ftp.asimov.co.uk<br/>http://isaac.home.com/tin.php</td></tr>
<tr><td>*</td><td><i>Matches everything</i></td><td>&nbsp;</td></tr>
</table>
</body>
</html>

427
src/locale/sk/foxyproxy.dtd Normal file
View File

@ -0,0 +1,427 @@
<!ENTITY foxyproxy.label "FoxyProxy">
<!ENTITY foxyproxy.accesskey "F">
<!ENTITY foxyproxy.tooltip "FoxyProxy">
<!ENTITY foxyproxy.optionsdialog.label "FoxyProxy - Možnosti">
<!ENTITY foxyproxy.options.label "Možnosti">
<!ENTITY foxyproxy.options.accesskey "M">
<!ENTITY foxyproxy.options.tooltip "Otvorí dialógové okno nastavení">
<!ENTITY foxyproxy.tree.pickertooltiptext.label "Vyberte, ktoré stĺpce chcete zobraziť">
<!ENTITY foxyproxy.proxy.name.label "Názov proxy servera">
<!ENTITY foxyproxy.proxy.name.accesskey "N">
<!ENTITY foxyproxy.proxy.name.tooltip "Názov proxy servera">
<!ENTITY foxyproxy.proxy.notes.label "Poznámky proxy servera">
<!ENTITY foxyproxy.proxy.notes.accesskey "P">
<!ENTITY foxyproxy.proxy.notes.tooltip "Poznámky proxy servera">
<!ENTITY foxyproxy.pattern.label "Vzor">
<!ENTITY foxyproxy.pattern.type.label "Typ vzoru">
<!ENTITY foxyproxy.whitelist.blacklist.label "Biela alebo čierna listina">
<!ENTITY foxyproxy.pattern.name.label "Názov vzoru">
<!ENTITY foxyproxy.pattern.name.accesskey "V">
<!ENTITY foxyproxy.pattern.name.tooltip "Názov vzoru">
<!ENTITY foxyproxy.url.pattern.label "URL alebo vzor URL">
<!ENTITY foxyproxy.url.pattern.accesskey "U">
<!ENTITY foxyproxy.url.pattern.tooltip "URL alebo vzor URL">
<!ENTITY foxyproxy.enabled.label "Povolené">
<!ENTITY foxyproxy.enabled.accesskey "P">
<!ENTITY foxyproxy.enabled.tooltip "Prepína povolené/zakázané">
<!ENTITY foxyproxy.delete.selection.label "Odstrániť">
<!ENTITY foxyproxy.delete.selection.accesskey "O">
<!ENTITY foxyproxy.delete.selection.tooltip "Odstráni aktuálne vybratú položku">
<!ENTITY foxyproxy.edit.selection.label "Upraviť">
<!ENTITY foxyproxy.edit.selection.accesskey "U">
<!ENTITY foxyproxy.edit.selection.tooltip "Otvorí okno na úpravu aktuálnej položky">
<!ENTITY foxyproxy.help.label "Obsah Pomocníka">
<!ENTITY foxyproxy.help.accesskey "O">
<!ENTITY foxyproxy.help.tooltip "Zobrazí Pomocníka">
<!ENTITY foxyproxy.close.label "Zavrieť">
<!ENTITY foxyproxy.close.accesskey "Z">
<!ENTITY foxyproxy.close.tooltip "Zavrie okno">
<!ENTITY foxyproxy.about.label "O rozšírení...">
<!ENTITY foxyproxy.about.accesskey "r">
<!ENTITY foxyproxy.about.tooltip "Otvorí okno s informáciami o rozšírení">
<!ENTITY foxyproxy.online.label "FoxyProxy online">
<!ENTITY foxyproxy.online.accesskey "o">
<!ENTITY foxyproxy.online.tooltip "Navštíviť stránku FoxyProxy">
<!ENTITY foxyproxy.tor.label "Sprievodca pre Tor">
<!ENTITY foxyproxy.tor.accesskey "T">
<!ENTITY foxyproxy.tor.tooltip "Otvorí sprievodcu pre Tor">
<!ENTITY foxyproxy.copy.selection.label "Kopírovať">
<!ENTITY foxyproxy.copy.selection.accesskey "K">
<!ENTITY foxyproxy.copy.selection.tooltip "Skopíruje aktuálne vybratú položku">
<!ENTITY foxyproxy.mode.label "Vyberte režim">
<!ENTITY foxyproxy.auto.url.label "URL pre automatické nastavenie proxy serverov">
<!ENTITY foxyproxy.auto.url.accesskey "a">
<!ENTITY foxyproxy.auto.url.tooltip "Zadajte URL PAC súboru">
<!ENTITY foxyproxy.port.label "Port">
<!ENTITY foxyproxy.port.accesskey "P">
<!ENTITY foxyproxy.port.tooltip "Port">
<!ENTITY foxyproxy.socks.proxy.label "SOCKS Proxy">
<!ENTITY foxyproxy.socks.proxy.accesskey "C">
<!ENTITY foxyproxy.socks.proxy.tooltip "URL SOCKS Proxy">
<!ENTITY foxyproxy.socks.v4 "SOCKS v4/4a">
<!ENTITY foxyproxy.socks.v5 "SOCKS v5">
<!ENTITY foxyproxy.addeditpattern.title "Pridať/upraviť vzor">
<!ENTITY foxyproxy.wildcard.label "Zástupné znaky">
<!ENTITY foxyproxy.wildcard.accesskey "Z">
<!ENTITY foxyproxy.wildcard.tooltip "Určuje, že URL alebo vzor URL používa zástupné znaky a nie je regulárnym výrazom (RegEx)">
<!ENTITY foxyproxy.wildcard.example.label "Príklad: *mail.yahoo.com/*">
<!ENTITY foxyproxy.regex.label "Regulárny výraz (RegEx)">
<!ENTITY foxyproxy.regex.accesskey "R">
<!ENTITY foxyproxy.regex.tooltip "Určuje, že URL alebo vzor URL je regulárnym výrazom (RegEx)">
<!ENTITY foxyproxy.regex.example.label "Príklad: http?:.*\.mail\.yahoo\.com/.*">
<!ENTITY foxyproxy.version "Verzia">
<!ENTITY foxyproxy.createdBy "Vytvoril:">
<!ENTITY foxyproxy.copyright "Autorské práva">
<!ENTITY foxyproxy.rights "Všetky práva vyhradené.">
<!ENTITY foxyproxy.released "Vydané pod GPL licenciou.">
<!ENTITY foxyproxy.thanks "Špeciálne poďakovanie:">
<!ENTITY foxyproxy.translations "Preklady">
<!ENTITY foxyproxy.tab.general.label "Všeobecné">
<!ENTITY foxyproxy.tab.general.accesskey "V">
<!ENTITY foxyproxy.tab.general.tooltip "Spravuje všeobecné nastavenia Proxy">
<!ENTITY foxyproxy.tab.proxy.label "Podrobnosti Proxy">
<!ENTITY foxyproxy.tab.proxy.accesskey "r">
<!ENTITY foxyproxy.tab.proxy.tooltip "Spravuje podrobnosti Proxy">
<!ENTITY foxyproxy.tab.patterns.label "Vzory">
<!ENTITY foxyproxy.tab.patterns.accesskey "V">
<!ENTITY foxyproxy.tab.patterns.tooltip "Spravuje vzory URL">
<!ENTITY foxyproxy.add.title "Nastavenia Proxy">
<!ENTITY foxyproxy.pattern.description "Tu môžete pridať alebo odstrániť URL, pre ktoré je toto Proxy použité.">
<!ENTITY foxyproxy.pattern.matchtype.label "Vzor obsahuje">
<!ENTITY foxyproxy.pattern.matchtype2.label "Vzor na určenie blokovaných stránok obsahuje">
<!ENTITY foxyproxy.pattern.template.matchtype.label "Šablóna vzoru obsahuje">
<!ENTITY foxyproxy.pattern.whiteblack.label "Zahrnuté/vylúčené URL">
<!ENTITY foxyproxy.add.option.direct.label "Priame pripojenie na Internet">
<!ENTITY foxyproxy.add.option.direct.accesskey "P">
<!ENTITY foxyproxy.add.option.direct.tooltip "Nepoužije Proxy - použije priame pripojenie na Internet">
<!ENTITY foxyproxy.add.option.manual.label "Ručné nastavenie proxy serverov">
<!ENTITY foxyproxy.add.option.manual.accesskey "R">
<!ENTITY foxyproxy.add.option.manual.tooltip "Ručne určiť nastavenie Proxy">
<!ENTITY foxyproxy.add.new.pattern.label "Pridať nový vzor">
<!ENTITY foxyproxy.add.new.pattern.accesskey "n">
<!ENTITY foxyproxy.add.new.pattern.tooltip "Pridá nový vzor">
<!ENTITY foxyproxy.menubar.file.label "Súbor">
<!ENTITY foxyproxy.menubar.file.accesskey "S">
<!ENTITY foxyproxy.menubar.file.tooltip "Otvorí ponuku Súbor">
<!ENTITY foxyproxy.menubar.help.label "Pomocník">
<!ENTITY foxyproxy.menubar.help.accesskey "P">
<!ENTITY foxyproxy.menubar.help.tooltip "Otvorí ponuku Pomocník">
<!ENTITY foxyproxy.mode.accesskey "r">
<!ENTITY foxyproxy.mode.tooltip "Vyberte režim FoxyProxy">
<!ENTITY foxyproxy.tab.proxies.label "Proxy">
<!ENTITY foxyproxy.tab.proxies.accesskey "P">
<!ENTITY foxyproxy.tab.proxies.tooltip "Správa Proxy">
<!ENTITY foxyproxy.tab.global.label "Všeobecné nastavenia">
<!ENTITY foxyproxy.tab.global.accesskey "V">
<!ENTITY foxyproxy.tab.global.tooltip "Správa všeobecných nastavení">
<!ENTITY foxyproxy.tab.logging.label "Protokol">
<!ENTITY foxyproxy.tab.logging.accesskey "l">
<!ENTITY foxyproxy.tab.logging.tooltip "Správa nastavenia protokolu">
<!ENTITY foxyproxy.proxydns.label "Použiť SOCKS Proxy pre vyhľadávanie DNS záznamov">
<!ENTITY foxyproxy.proxydns.accesskey "P">
<!ENTITY foxyproxy.proxydns.tooltip "Ak je označené, DNS hľadania sú smerované cez SOCKS Proxy">
<!ENTITY foxyproxy.proxydns.notice "Musíte reštartovať Firefox, aby sa prejavili zmeny. Reštartovať teraz?">
<!ENTITY foxyproxy.showstatusbaricon.label "Zobraziť ikonu v stavovom riadku">
<!ENTITY foxyproxy.showstatusbaricon.accesskey "S">
<!ENTITY foxyproxy.showstatusbaricon.tooltip "Ak je táto voľba začiarknutá, v stavovom riadku je zobrazená ikona FoxyProxy">
<!ENTITY foxyproxy.showstatusbarmode.label "Zobraziť režim (text) v stavovom riadku">
<!ENTITY foxyproxy.showstatusbarmode.accesskey "Z">
<!ENTITY foxyproxy.showstatusbarmode.tooltip "Ak je táto voľba začiarknutá, v stavovom riadku je zobrazený režim FoxyProxy">
<!ENTITY foxyproxy.storagelocation.label "Umiestnenie nastavení">
<!ENTITY foxyproxy.storagelocation.accesskey "S">
<!ENTITY foxyproxy.storagelocation.tooltip "Miesto, kde sú uložené nastavenia FoxyProxy">
<!ENTITY foxyproxy.tab.logging.timestamp.label "Časová známka">
<!ENTITY foxyproxy.tab.logging.url.label "URL">
<!ENTITY foxyproxy.host.label "Názov servera">
<!ENTITY foxyproxy.host.accesskey "N">
<!ENTITY foxyproxy.host.tooltip "Názov servera">
<!ENTITY foxyproxy.clear.label "Vymazať">
<!ENTITY foxyproxy.clear.accesskey "V">
<!ENTITY foxyproxy.clear.tooltip "Vymazať">
<!ENTITY foxyproxy.refresh.label "Obnoviť">
<!ENTITY foxyproxy.refresh.accesskey "O">
<!ENTITY foxyproxy.refresh.tooltip "Obnoviť">
<!ENTITY foxyproxy.save.label "Uložiť">
<!ENTITY foxyproxy.save.accesskey "U">
<!ENTITY foxyproxy.save.tooltip "Uložiť">
<!ENTITY foxyproxy.addnewproxy.label "Pridať nové Proxy">
<!ENTITY foxyproxy.addnewproxy.accesskey "P">
<!ENTITY foxyproxy.addnewproxy.tooltip "Pridá nový proxy server">
<!ENTITY foxyproxy.whitelist.label "Biela listina">
<!ENTITY foxyproxy.whitelist.accesskey "B">
<!ENTITY foxyproxy.whitelist.tooltip "URL zhodujúca sa s týmto vzorom bude načítaná cez toto Proxy">
<!ENTITY foxyproxy.whitelist.description.label "URL adresy zhodujúce sa s týmto vzorom budú načítané cez toto Proxy">
<!ENTITY foxyproxy.blacklist.label "Čierna listina">
<!ENTITY foxyproxy.blacklist.accesskey "n">
<!ENTITY foxyproxy.blacklist.tooltip "URL adresy zhodujúce sa s týmto vzorom NEbudú načítané cez toto Proxy">
<!ENTITY foxyproxy.blacklist.description.label "URL adresy zhodujúce sa s týmto vzorom NEbudú načítané cez toto Proxy">
<!ENTITY foxyproxy.whiteblack.description.label "Čierna listina (vylúčenie) vzorov má prednosť pred bielou listinou (zahrnutie) vzorov: ak sa URL nachádza na bielej aj čiernej listine pre rovnaké Proxy, tak URL nebude načítaná pomocou tohto Proxy.">
<!ENTITY foxyproxy.usingPFF.label1 "Používam">
<!ENTITY foxyproxy.usingPFF.label2 "Portable Firefox">
<!ENTITY foxyproxy.usingPFF.accesskey "P">
<!ENTITY foxyproxy.usingPFF.tooltip "Označte, ak používate Portable Firefox">
<!ENTITY foxyproxy.socks.version.label "Verzia SOCKS">
<!ENTITY foxyproxy.autopacurl.label "Auto PAC URL">
<!ENTITY foxyproxy.issocks.label "SOCKS proxy server">
<!ENTITY foxyproxy.issocks.accesskey "S">
<!ENTITY foxyproxy.issocks.tooltip "Je toto webový alebo SOCKS proxy server?">
<!ENTITY foxyproxy.chinese.simplified "Čínština (Zjednodušená)">
<!ENTITY foxyproxy.chinese.traditional "Čínština (Tradičná)">
<!ENTITY foxyproxy.croatian "Chorvátčina">
<!ENTITY foxyproxy.czech "Čeština">
<!ENTITY foxyproxy.danish "Dánčina">
<!ENTITY foxyproxy.dutch "Holandčina">
<!ENTITY foxyproxy.english "Angličtina">
<!ENTITY foxyproxy.english.british "Angličtina (Britská)">
<!ENTITY foxyproxy.french "Francúzština">
<!ENTITY foxyproxy.german "Nemčina">
<!ENTITY foxyproxy.greek "Grečtina">
<!ENTITY foxyproxy.hungarian "Maďarčina">
<!ENTITY foxyproxy.italian "Taliančina">
<!ENTITY foxyproxy.persian "Perština">
<!ENTITY foxyproxy.polish "Poľština">
<!ENTITY foxyproxy.portugese.brazilian "Portugalčina (Brazílska)">
<!ENTITY foxyproxy.portugese.portugal "Portugalčina (Portugalská)">
<!ENTITY foxyproxy.romanian "Rumunčina">
<!ENTITY foxyproxy.russian "Ruština">
<!ENTITY foxyproxy.slovak "Slovenčina">
<!ENTITY foxyproxy.spanish.spain "Španielčina">
<!ENTITY foxyproxy.spanish.argentina "Španielčina (Argentína)">
<!ENTITY foxyproxy.swedish "Švédština">
<!ENTITY foxyproxy.thai.thailand "Thajčina">
<!ENTITY foxyproxy.turkish "Turečtina">
<!ENTITY foxyproxy.ukrainian "Ukrainčina">
<!ENTITY foxyproxy.your.language "Váš jazyk">
<!ENTITY foxyproxy.your.name.here "Vaše meno">
<!ENTITY foxyproxy.moveup.label "Posunúť hore">
<!ENTITY foxyproxy.moveup.tooltip "Zvýši prioritu výberu">
<!ENTITY foxyproxy.moveup.accesskey "h">
<!ENTITY foxyproxy.movedown.label "Posunúť dole">
<!ENTITY foxyproxy.movedown.tooltip "Zníži prioritu výberu">
<!ENTITY foxyproxy.movedown.accesskey "d">
<!ENTITY foxyproxy.autoconfurl.view.label "Zobraziť">
<!ENTITY foxyproxy.autoconfurl.view.accesskey "Z">
<!ENTITY foxyproxy.autoconfurl.view.tooltip "Zobrazí súbor automatickej konfigurácie">
<!ENTITY foxyproxy.autoconfurl.test.label "Test">
<!ENTITY foxyproxy.autoconfurl.test.accesskey "T">
<!ENTITY foxyproxy.autoconfurl.test.tooltip "Testuje súbor automatického nastavenia">
<!ENTITY foxyproxy.autoconfurl.reload.label "Znovunačítať PAC každých">
<!ENTITY foxyproxy.autoconfurl.reload.accesskey "Z">
<!ENTITY foxyproxy.autoconfurl.reload.tooltip "Automaticky načíta súbor PAC v zvolenej časovej perióde">
<!ENTITY foxyproxy.minutes.label "minút">
<!ENTITY foxyproxy.minutes.tooltip "minút">
<!ENTITY foxyproxy.logging.maxsize.label "Maximálna veľkosť">
<!ENTITY foxyproxy.logging.maxsize.accesskey "M">
<!ENTITY foxyproxy.logging.maxsize.tooltip "Maximálny počet záznamov predtým, než protokol skočí na začiatok">
<!ENTITY foxyproxy.logging.maxsize.button.label "Nastaviť">
<!ENTITY foxyproxy.logging.maxsize.button.accesskey "N">
<!ENTITY foxyproxy.logging.maxsize.button.tooltip "Nastavuje maximálny počet záznamov predtým, než protokol skočí na začiatok">
<!ENTITY foxyproxy.random.label "Načítať URL cez náhodné Proxy (ignorovať všetky vzory a priority)">
<!ENTITY foxyproxy.random.accesskey "n">
<!ENTITY foxyproxy.random.tooltip "Načíta URL cez náhodné Proxy (ignoruje všetky vzory a priority)">
<!ENTITY foxyproxy.random.includedirect.label "Zahrnúť Proxy nastavené ako priame pripojenie k Internetu">
<!ENTITY foxyproxy.random.includedirect.accesskey "I">
<!ENTITY foxyproxy.random.includedirect.tooltip "Proxy nastavené ako priame pripojenie k Internetu sú zahrnuté v náhodnom výbere Proxy">
<!ENTITY foxyproxy.random.includedisabled.label "Zahrnúť zakázané proxy servery">
<!ENTITY foxyproxy.random.includedisabled.accesskey "z">
<!ENTITY foxyproxy.random.includedisabled.tooltip "Proxy nastavené ako zakázané sú zahrnuté v náhodnom výbere Proxy">
<!ENTITY foxyproxy.random.settings.label "Náhodný výber Proxy">
<!ENTITY foxyproxy.random.settings.accesskey "N">
<!ENTITY foxyproxy.random.settings.tooltip "Nastavenie určí náhodný výber Proxy">
<!ENTITY foxyproxy.tab.autoadd.label "Automatické priradenie">
<!ENTITY foxyproxy.tab.autoadd.accesskey "A">
<!ENTITY foxyproxy.tab.autoadd.tooltip "Spravuje nastavenie automatického priradenia">
<!ENTITY foxyproxy.autoadd.description "Určte vzor, ktorý identifikuje blokované stránky. Keď sa nájde vzor na stránke, tak je vzor zhodujúcej sa URL stránky automaticky priradený k Proxy a stránka je voliteľne obnovená. Toto zabraňuje potrebe proaktívne identifikovať všetky blokované stránky">
<!ENTITY foxyproxy.autoadd.pattern.label "Vzor na identifikáciu blokovaných webových stránok">
<!ENTITY foxyproxy.autoadd.pattern.accesskey "V">
<!ENTITY foxyproxy.autoadd.pattern.tooltip "Vzor, ktorý identifikuje blokované stránky">
<!ENTITY foxyproxy.autoadd.wildcard.example.label "Príklad: *Nemáte dostatočné práva na zobrazenie tejto stránky*">
<!ENTITY foxyproxy.autoadd.regex.example.label "Príklad: .*Stránka.*bola zablokovaná.*">
<!ENTITY foxyproxy.autoadd.proxy.label "Proxy, ku ktorému sú vzory automaticky priradené">
<!ENTITY foxyproxy.autoadd.proxy.accesskey "P">
<!ENTITY foxyproxy.autoadd.proxy.tooltip "Určuje Proxy, ku ktorému sú URL automaticky priradené.">
<!ENTITY foxyproxy.pattern.template.label "Šablóna URL vzoru">
<!ENTITY foxyproxy.pattern.template.accesskey "U">
<!ENTITY foxyproxy.pattern.template.tooltip "Šablóna URL vzoru">
<!ENTITY foxyproxy.pattern.template.example.label1 "Príklad pre">
<!ENTITY foxyproxy.pattern.template.example.label2 "http://fred:secret@mail.foo.com:8080/inbox/msg102.htm#subject?style=elegant">
<!ENTITY foxyproxy.pattern.template.currenturl.label "Aktuálna adresa">
<!ENTITY foxyproxy.pattern.template.currenturl.accesskey "A">
<!ENTITY foxyproxy.pattern.template.currenturl.tooltip "Adresa v paneli Adresa">
<!ENTITY foxyproxy.pattern.template.generatedpattern.label "Vygenerovaný vzor">
<!ENTITY foxyproxy.pattern.template.generatedpattern.accesskey "g">
<!ENTITY foxyproxy.pattern.template.generatedpattern.tooltip "Dynamicky vygenerovaný vzor">
<!ENTITY foxyproxy.autoadd.reload.label "Obnoviť stránku po priradení k Proxy">
<!ENTITY foxyproxy.autoadd.reload.accesskey "O">
<!ENTITY foxyproxy.autoadd.reload.tooltip "Automaticky obnoví stránku, keď sa priradí k Proxy">
<!ENTITY foxyproxy.autoadd.notify.label "Informovať, keď sa vykoná automatické priradenie">
<!ENTITY foxyproxy.autoadd.notify.accesskey "I">
<!ENTITY foxyproxy.autoadd.notify.tooltip "Informuje vás, keď je stránka blokovaná a URL vzor je pridaný k Proxy">
<!ENTITY foxyproxy.graphics "Grafický dizajn a obrázky">
<!ENTITY foxyproxy.website "Webová stránka">
<!ENTITY foxyproxy.contributions "Príspevky">
<!ENTITY foxyproxy.pacloadnotification.label "Informovať ma o načítaní súboru automatického nastavenia Proxy">
<!ENTITY foxyproxy.pacloadnotification.accesskey "n">
<!ENTITY foxyproxy.pacloadnotification.tooltip "Zobrazí vyskakovacie okno, keď sa načíta PAC súbor">
<!ENTITY foxyproxy.pacerrornotification.label "Informovať ma o chybách súborov automatického nastavenia Proxy">
<!ENTITY foxyproxy.pacerrornotification.accesskey "e">
<!ENTITY foxyproxy.pacerrornotification.tooltip "Zobrazí vyskakovacie okno, keď nastanú chyby v PAC súbore">
<!ENTITY foxyproxy.toolsmenu.label "Zobraziť FoxyProxy v ponuke Nástroje">
<!ENTITY foxyproxy.toolsmenu.accesskey "N">
<!ENTITY foxyproxy.toolsmenu.tooltip "Zobrazí FoxyProxy v ponuke Nástroje">
<!ENTITY foxyproxy.tip.label "Tip">
<!ENTITY foxyproxy.pactips.popup.height "165px">
<!ENTITY foxyproxy.pactips.popup.width "400px">
<!ENTITY foxyproxy.pactip1.label "Ak chcete použiť súbory PAC uložené na disku počítača, použite predponu file://. Na príklad file://c:/path/proxy.pac pre Windows alebo file:///home/users/joe/proxy.pac pre Unix/Linux/Mac.">
<!ENTITY foxyproxy.pactip2.label "Ak chcete použiť súbory PAC uložené na ftp serveri, použite predponu ftp://. Napríklad ftp://leahscape.com/path/proxy.pac.">
<!ENTITY foxyproxy.pactip3.label "Môžete tiež použiť http://, https://, prípadne ďalšie.">
<!ENTITY foxyproxy.contextmenu.label "Zobraziť FoxyProxy v kontextovej ponuke">
<!ENTITY foxyproxy.contextmenu.accesskey "k">
<!ENTITY foxyproxy.contextmenu.tooltip "Zobrazí FoxyProxy v kontextovej ponuke">
<!ENTITY foxyproxy.quickadd.desc1 "Rýchle priradenie pridáva dynamické URL vzor pre proxy, keď stlačíte klávesovú skratku Alt-F2. Je to praktické identické s Automatickým priradením. Klávesovú skratku si môžete prispôsobiť pomocou rozšírenia">
<!ENTITY foxyproxy.keyconfig.label "KeyConfig">
<!ENTITY foxyproxy.quickadd.desc2 ".">
<!ENTITY foxyproxy.quickadd.label "Rýchle priradenie">
<!ENTITY foxyproxy.quickadd.accesskey "R">
<!ENTITY foxyproxy.quickadd.tooltip "Nastavenia pre Rýchle priradenie">
<!ENTITY foxyproxy.quickadd.notify.label "Upozorniť ma pri aktivácii Rýchleho priradenia">
<!ENTITY foxyproxy.quickadd.notify.accesskey "U">
<!ENTITY foxyproxy.quickadd.notify.tooltip "Zobrazí vyskakovacie okne pri aktivovaní Rýchleho priradenia">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.label "Upozorniť ma pri zrušení rýchleho priradenia">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.label2 "Rýchle priradenie je automaticky zrušené, ak je aktivované prostredníctvom klávesovej skratky Alt-F2 a aktuálna adresa zadaná v paneli Adresa súhlasí so vzorom na bielej listine proxy serverov. V tomto prípade je zabránené duplikácii vzorov a poškodeniu vašej konfigurácie. Toto nastavenie nezapína/nevypína zrušenie, len nastavuje notifikáciu v prípade, že Rýchle priradenie bolo zrušené.">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.accesskey "c">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.tooltip "Zobraziť vyskakovacie okno, ak je Rýchle priradenie aktivované, ale bolo zrušené">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.popup.width "400px">
<!ENTITY foxyproxy.quickadd.notify.whencanceled.popup.height "130px">
<!ENTITY foxyproxy.whatsthis "Čo je toto?">
<!ENTITY foxyproxy.quickadd.prompt.label "Opýtať sa pri úprave alebo pred pridaním vzoru pre proxy">
<!ENTITY foxyproxy.quickadd.prompt.accesskey "p">
<!ENTITY foxyproxy.quickadd.prompt.tooltip "Opýtať sa pri úprave alebo pred pridaním vzoru pre proxy">
<!ENTITY foxyproxy.quickadd.proxy.label "Proxy, ku ktorému bude vzor priradený">
<!ENTITY foxyproxy.quickadd.proxy.accesskey "P">
<!ENTITY foxyproxy.quickadd.proxy.tooltip "Vyberte proxy server, ktorému bude vzor priradený">
<!ENTITY foxyproxy.bypasscache.label "Obísť vyrovnávaciu pamäť Firefoxu pri načítavaní">
<!ENTITY foxyproxy.bypasscache.accesskey "b">
<!ENTITY foxyproxy.bypasscache.tooltip "Vyrovnávacia pamäť Firefoxu je ignorovaná">
<!ENTITY foxyproxy.advancedmenus.label "Použiť rozšírené ponuky">
<!ENTITY foxyproxy.advancedmenus.accesskey "p">
<!ENTITY foxyproxy.advancedmenus.tooltip "Použije rozšírené ponuky (štýl FoxyProxy 2.2)">
<!ENTITY foxyproxy.importsettings.label "Importovať nastavenia">
<!ENTITY foxyproxy.importsettings.accesskey "I">
<!ENTITY foxyproxy.importsettings.tooltip "Importovať nastavenia zo súboru">
<!ENTITY foxyproxy.exportsettings.label "Exportovať aktuálne nastavenia">
<!ENTITY foxyproxy.exportsettings.accesskey "E">
<!ENTITY foxyproxy.exportsettings.tooltip "Exportovať aktuálne nastavenia do súboru">
<!ENTITY foxyproxy.importlist.label "Importovať zoznam proxy serverov">
<!ENTITY foxyproxy.importlist.accesskey "I">
<!ENTITY foxyproxy.importlist.tooltip "Importovať textový súbor so zoznamom proxy serverov">
<!ENTITY foxyproxy.wildcard.reference.label "Príručka pre zástupné znaky">
<!ENTITY foxyproxy.wildcard.reference.accesskey "Z">
<!ENTITY foxyproxy.wildcard.reference.tooltip "Príručka pre zástupné znaky">
<!ENTITY foxyproxy.wildcard.reference.subtitle.label "Hviezdička (*) zastupuje žiadny alebo niekoľko znakov, otáznik (?) práve jeden znak">
<!ENTITY foxyproxy.wildcard.reference.mistakes "Časté chyby pri písaní vzorov pomocou zástupných znakov">
<!ENTITY foxyproxy.wildcard.reference.goal.label "Cieľ">
<!ENTITY foxyproxy.wildcard.reference.goal1.label "Zahrnúť všetky stránky v poddoméne MySpace">
<!ENTITY foxyproxy.wildcard.reference.goal2.label "Zahrnúť lokálne PC">
<!ENTITY foxyproxy.wildcard.reference.goal3.label "Zahrnúť všetky poddomény a stránky servera abc.com">
<!ENTITY foxyproxy.wildcard.reference.goal4.label "Zahrnúť všetky stránky v doméne a.foo.com, ale nie v b.foo.com">
<!ENTITY foxyproxy.wildcard.reference.correct.label "Správne">
<!ENTITY foxyproxy.wildcard.reference.correct2.label "Musia byť dva vzory">
<!ENTITY foxyproxy.wildcard.reference.incorrect.label "Nesprávne">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason.label "Dôvod, prečo je to nesprávne">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason1.label "Pretože neobsahuje žiadne zástupné znaky zahŕňa iba domovskú stránku">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason2.label "FoxyProxy nerozumie tomuto typu syntaxe">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason3.label "Chýbajú zástupné znaky">
<!ENTITY foxyproxy.wildcard.reference.incorrect.reason4.label "Chýbajú zástupné znaky">
<!ENTITY foxyproxy.wildcard.reference.popup.height "400px">
<!ENTITY foxyproxy.logging.noURLs.label "Neukladať alebo nezobrazovať URL adresy">
<!ENTITY foxyproxy.logging.noURLs.accesskey "U">
<!ENTITY foxyproxy.logging.noURLs.tooltip "URL adresy nie sú uložené v RAM alebo na disku">
<!ENTITY foxyproxy.ok.label "OK">
<!ENTITY foxyproxy.ok.accesskey "O">
<!ENTITY foxyproxy.ok.tooltip "Zavrieť okno">
<!ENTITY foxyproxy.pattern.template.reference.label "Príručka pre šablónu vzoru">
<!ENTITY foxyproxy.pattern.template.reference.accesskey "a">
<!ENTITY foxyproxy.pattern.template.reference.tooltip "Príručka pre šablónu vzoru">
<!ENTITY foxyproxy.pattern.template.reference.subtitle.label "Šablóny pre URL vzory definujú formát, v ktorom sú adresy priraďované proxy serverom. Šablóny podporujú nasledujúce špeciálne znaky, ktoré sú pri aktivovaní Rýchleho alebo Automatického priradenia nahradené v adresnom riadku príslušným komponentom.">
<!ENTITY foxyproxy.pattern.template.reference.specialstring.label "Špeciálny reťazec">
<!ENTITY foxyproxy.pattern.template.reference.subststring.label "Nahradený s">
<!ENTITY foxyproxy.pattern.template.reference.example.label "Príklad">
<!ENTITY foxyproxy.pattern.template.reference.scheme.label "protokol">
<!ENTITY foxyproxy.pattern.template.reference.username.label "používateľské meno">
<!ENTITY foxyproxy.pattern.template.reference.password.label "heslo">
<!ENTITY foxyproxy.pattern.template.reference.userpass.label "používateľské meno &amp; heslo s &quot;:&quot; &amp; &quot;@&quot;">
<!ENTITY foxyproxy.pattern.template.reference.host.label "hostiteľ">
<!ENTITY foxyproxy.pattern.template.reference.port.label "port">
<!ENTITY foxyproxy.pattern.template.reference.hostport.label "hostiteľ &amp; port s &quot;:&quot;">
<!ENTITY foxyproxy.pattern.template.reference.prepath.label "reťazec pred cestou">
<!ENTITY foxyproxy.pattern.template.reference.path.label "cesta (zahŕňa názov súboru)">
<!ENTITY foxyproxy.pattern.template.reference.directory.label "priečinok">
<!ENTITY foxyproxy.pattern.template.reference.filebasename.label "názov súboru">
<!ENTITY foxyproxy.pattern.template.reference.fileextension.label "prípona súboru">
<!ENTITY foxyproxy.pattern.template.reference.filename.label "kompletný názov súboru">
<!ENTITY foxyproxy.pattern.template.reference.ref.label "časť po znaku &quot;#&quot;">
<!ENTITY foxyproxy.pattern.template.reference.query.label "časť po znaku &quot;?&quot;">
<!ENTITY foxyproxy.pattern.template.reference.spec.label "kompletná URL adresa">
<!ENTITY foxyproxy.pattern.template.reference.popup.height "400px">
<!ENTITY foxyproxy.pattern.template.reference.popup.width "800px">
<!ENTITY foxyproxy.notifications.label "Notifikácie">
<!ENTITY foxyproxy.notifications.accesskey "N">
<!ENTITY foxyproxy.notifications.tooltip "Nastavenie notifikácie">
<!ENTITY foxyproxy.indicators.label "Indikátory">
<!ENTITY foxyproxy.indicators.accesskey "I">
<!ENTITY foxyproxy.indicators.tooltip "Nastavenia indikátora">
<!ENTITY foxyproxy.misc.label "Rôzne">
<!ENTITY foxyproxy.misc.accesskey "R">
<!ENTITY foxyproxy.misc.tooltip "Rôzne nastavenia">
<!ENTITY foxyproxy.animatedicons.label "Animovať ikony, ak sa tento proxy server práve používa">
<!ENTITY foxyproxy.animatedicons.accesskey "A">
<!ENTITY foxyproxy.animatedicons.tooltip "Animovať ikony, ak je tento proxy server aktívny (voľba Globálne nastavenia-&gt;Animácie musí byť začiarknutá)">
<!ENTITY foxyproxy.statusbaractivation.label "Aktivácia stavového riadku">
<!ENTITY foxyproxy.statusbaractivation.accesskey "s">
<!ENTITY foxyproxy.statusbaractivation.tooltip "Nastavenia aktivácie stavového riadku">
<!ENTITY foxyproxy.toolbaractivation.label "Aktivácia panela s nástrojmi">
<!ENTITY foxyproxy.toolbaractivation.accesskey "p">
<!ENTITY foxyproxy.toolbaractivation.tooltip "Nastavenia aktivácie panela s nástrojmi">
<!ENTITY foxyproxy.leftclicksb.label "Kliknutie ľavým tlačidlom myši na ikonu FoxyProxy v stavovom riadku">
<!ENTITY foxyproxy.leftclicksb.accesskey "l">
<!ENTITY foxyproxy.leftclicksb.tooltip "Akcia, ktorá sa vykoná po kliknutí ľavým tlačidlom na ikonu FoxyProxy v stavovom riadku">
<!ENTITY foxyproxy.middleclicksb.label "Kliknutie stredným tlačidlom myši na ikonu FoxyProxy v stavovom riadku">
<!ENTITY foxyproxy.middleclicksb.accesskey "m">
<!ENTITY foxyproxy.middleclicksb.tooltip "Akcia, ktorá sa vykoná po kliknutí stredným tlačidlom na ikonu FoxyProxy v stavovom riadku">
<!ENTITY foxyproxy.rightclicksb.label "Kliknutie pravým tlačidlom myši na ikonu FoxyProxy v stavovom riadku">
<!ENTITY foxyproxy.rightclicksb.accesskey "r">
<!ENTITY foxyproxy.rightclicksb.tooltip "Akcia, ktorá sa vykoná po kliknutí pravým tlačidlom na ikonu FoxyProxy v stavovom riadku">
<!ENTITY foxyproxy.leftclicktb.label "Kliknutie ľavým tlačidlom myši na ikonu FoxyProxy na paneli nástrojov">
<!ENTITY foxyproxy.leftclicktb.accesskey "l">
<!ENTITY foxyproxy.leftclicktb.tooltip "Akcia, ktorá sa vykoná po kliknutí ľavým tlačidlom na ikonu FoxyProxy na paneli nástrojov">
<!ENTITY foxyproxy.middleclicktb.label "Kliknutie stredným tlačidlom myši na ikonu FoxyProxy na paneli nástrojov">
<!ENTITY foxyproxy.middleclicktb.accesskey "m">
<!ENTITY foxyproxy.middleclicktb.tooltip "Akcia, ktorá sa vykoná po kliknutí stredným tlačidlom na ikonu FoxyProxy na paneli nástrojov">
<!ENTITY foxyproxy.rightclicktb.label "Kliknutie pravým tlačidlom myši na ikonu FoxyProxy na paneli nástrojov">
<!ENTITY foxyproxy.rightclicktb.accesskey "r">
<!ENTITY foxyproxy.rightclicktb.tooltip "Akcia, ktorá sa vykoná po kliknutí pravým tlačidlom na ikonu FoxyProxy na paneli nástrojov">
<!ENTITY foxyproxy.click.options "Zobrazí okno s nastaveniami">
<!ENTITY foxyproxy.click.cycle "Prepína medzi režimami">
<!ENTITY foxyproxy.click.contextmenu "Zobrazí kontextovú ponuku">
<!ENTITY foxyproxy.click.reloadcurtab "Znovunačíta obsah aktuálnej karty">
<!ENTITY foxyproxy.click.reloadtabsinbrowser "Znovunačíta obsah všetkých kariet okna">
<!ENTITY foxyproxy.click.reloadtabsinallbrowsers "Znovunačíta obsah všetkých kariet vo všetkých oknách">
<!ENTITY foxyproxy.click.removeallcookies "Odstráni všetky cookies.">
<!ENTITY foxyproxy.includeincycle.label "Zahrnúť proxy server pri prepínaní medzi proxy servermi po kliknutí na ikonu v stavovom riadku alebo paneli nástrojov (voľba Globálne nastavenia -&gt; Aktivácia stavového riadku/panela s nástrojmi-&gt;Prepínať medzi režimami musí byť začiarknutá)">
<!ENTITY foxyproxy.includeincycle.accesskey "i">
<!ENTITY foxyproxy.includeincycle.tooltip "Zahrnúť tento proxy server pri kliknutí na ikonu na stavový riadok a panel nástrojov">
<!ENTITY foxyproxy.changes.msg1 "Pomoc! Kde sú nastavenia pre HTTP, SSL, FTP, Gopher a SOCKS?">
<!ENTITY foxyproxy.newGUI.popup.height "300px">
<!ENTITY foxyproxy.newGUI.popup.width "400px">
<!ENTITY foxyproxy.newGUI1.label "Staré okno nastavení proxy serverov rozšírenia FoxyProxy bolo založené a bolo takmer identické s oknom nastavení pripojenia Firefoxu, ktoré bolo takmer identické s oknom nastavení staručkého prehliadača Mosaic 2.1.1 z roku 1996. Problémom týchto okien bola limitovaná možnosť smerovať prenos dát podľa jednotlivých protokolov. Prehliadača 21. storočia ako Firefox spracovávajú viac protokolov ako len HTTP, SSL, FTP a GOPHER. Očividne sú tieto okná v prípade, že chcete spravovať všetky podporované protokoly, už nepoužiteľné.">
<!ENTITY foxyproxy.newGUI2.label "Keďže rozšírenie FoxyProxy podporuje správu smerovania dát cez protokoly prostredníctvom zástupných znakov a regulárnych výrazov, zoznam protokolov už nie je potrebný. Od verzie 2.5 je preto tento zoznam z nastavení odstránený. Ale bez obmedzenia funkcionality. Zjednodušilo sa tým používateľské rozhranie. Ak chcete nastaviť smerovanie nejakého protokolu, mali by ste definovať vzory pre bielu a čiernu listinu a dávať si pozor pri definovaní protokolov (napr., ftp://*.yahoo.com/*, *://leahscape.com/* atď.)">
<!ENTITY foxyproxy.newGUI4.label "Ak chcete viac informácií, kliknite sem.">
<!ENTITY foxyproxy.error.msg.label "Chybová správa">
<!ENTITY foxyproxy.pac.result.label "Výsledok PAC">
<!ENTITY foxyproxy.options.width "1000">
<!ENTITY foxyproxy.options.height "477">
<!ENTITY foxyproxy.torwiz.width "660">
<!ENTITY foxyproxy.torwiz.height "375">
<!ENTITY foxyproxy.addeditproxy.width "660">
<!ENTITY foxyproxy.addeditproxy.height "470">

View File

@ -0,0 +1,136 @@
extensions.foxyproxy@eric.h.jung.description=FoxyProxy - Vezmite späť vaše súkromie!
foxyproxy=FoxyProxy
tor=Tor
privoxy=Privoxy
settings.error=Chyba pri načítaní nastavení
error=Chyba
welcome=Vitajte vo FoxyProxy!
yes=Áno
no=Nie
disabled=Zakázané
torwiz.configure=Chcete nastaviť FoxyProxy na použitie s Tor?
torwiz.with.without.privoxy=Používate Tor s Privoxy alebo bez Privoxy?
torwiz.with=S Privoxy
torwiz.without=Bez Privoxy
torwiz.privoxy.not.required=Poznámka: S prehliadačom Firefox 1.5 už Privoxy nie je potrebné. Chcete aj napriek tomu použiť Privoxy?
torwiz.port=Zadajte port, na ktorom počúva %S. Ak neviete, použite predvolený.
torwiz.nan=Toto nie je číslo.
torwiz.proxy.notes=Proxy cez sieť Tor - http://tor.eff.org
torwiz.google.mail=Google Mail
torwiz.pattern=http://*mail.google.com/*
torwiz.congratulations=Blahoželáme. FoxyProxy je prispôsobený tak, aby používal aplikáciu Tor. Skôr než navštívite stránky používané v rámci siete Tor, presvedčte sa, že je aplikácia Tor spustená. Rovnako tak skontrolujte, či je spustená aplikácia Privoxy, ak ste nastavili rozšírenie FoxyProxy, aby požíval túto aplikáciu.
torwiz.cancelled=FoxyProxy sprievodca pre Tor bol zrušený.
mode.patterns.label=Použiť Proxy podľa preddefinovaných vzorov a priorít
mode.patterns.accesskey=P
mode.patterns.tooltip=Použije Proxy podľa preddefinovaných vzorov
mode.custom.label=Použiť Proxy "%S" pre všetky URL
mode.custom.tooltip=Použije Proxy "%S" pre všetky URL
mode.disabled.label=Úplne zakázať FoxyProxy
mode.disabled.accesskey=p
mode.disabled.tooltip=Úplne zakáže FoxyProxy
more.label=Viac
more.accesskey=V
more.tooltip=Viac možností
invalid.url=URL určená na automatické nastavenie proxy serverov nie je správna.
protocols.error=Určte jeden alebo viac protokolov pre Proxy.
noport2=Pre server musí byť definovaný port.
nohost2=Názov servera musí byť definovaný aj s portom.
nohostport=Názov servera a port musia byť definované.
torwiz.nopatterns=Nezadali ste žiadne vzory URL. To znamená, že sieť Tor nebude použitá. Chcete napriek tomu pokračovať?
months.long.1=Január
months.short.1=Jan
months.long.2=Február
months.short.2=Feb
months.long.3=Marec
months.short.3=Mar
months.long.4=Apríl
months.short.4=Apr
months.long.5=Máj
months.short.5=Máj
months.long.6=Jún
months.short.6=Jún
months.long.7=Júl
months.short.7=Júl
months.long.8=August
months.short.8=Aug
months.long.9=September
months.short.9=Sep
months.long.10=Október
months.short.10=Okt
months.long.11=November
months.short.11=Nov
months.long.12=December
months.short.12=Dec
days.long.1=Nedeľa
days.short.1=Ned
days.long.2=Pondelok
days.short.2=Pon
days.long.3=Utorok
days.short.3=Uto
days.long.4=Streda
days.short.4=Str
days.long.5=Štvrtok
days.short.5=Štv
days.long.6=Piatok
days.short.6=Pia
days.long.7=Sobota
days.short.7=Sob
timeformat=dd.mm.yyyy HH:nn:ss,zzz a/p
file.select=Vyberte súbor, do ktorého sa uložia nastavenia
manual=Manuálne
auto=Automaticky
direct=Priamo
delete.proxy.confirm=Naozaj chcete odstrániť Proxy?
pattern.required=Je požadovaný vzor.
pattern.invalid.regex=%S nie je správny regulárny výraz (RegEx).
proxy.error.for.url=Chyba stanovenia Proxy pre %S
proxy.default.settings.used=FoxyProxy nebolo použité pre túto URL - bolo použité štandardné nastavenie spojenia prehliadača Firefox
proxy.all.urls=Všetky URL sú nastavené na použitie s týmto Proxy
pac.status=FoxyProxy PAC stav
pac.status.loadfailure=Zlyhalo načítanie PAC pre Proxy "%S"
pac.status.success=Načítané PAC pre Proxy "%S"
pac.status.error=Chyba v PAC pre Proxy "%S"
error.noload=Chyba. Prosím, kontaktujte vývojársky tím FoxyProxy. Neunikajú žiadne súkromné údaje, ale nič sa nenačíta. Výnimka %S
proxy.name.required=Prosím, na karte Všeobecné zadajte meno pre tento proxy server.
proxy.default=Implicitné
proxy.default.notes=Toto sú nastavenia, ktoré sa použijú, keď sa žiadne vzory nezhodujú s URL.
proxy.default.match.name=Všetko
delete.proxy.default=Nemôžete zmazať toto Proxy.
copy.proxy.default=Nemôžete skopírovať toto Proxy.
logg.maxsize.change=Toto vymaže protokol. Pokračovať?
logg.maxsize.maximum=Maximálna odporúčaná veľkosť je 9999. Väčšie množstvá spotrebujú viac pamäte, čo môže ovplyvniť výkon. Chcete napriek tomu pokračovať?
proxy.random=Proxy bolo náhodne vybrané
mode.random.label=Použiť náhodné proxy pre všetky URL (ignorovať všetky vzory a priority)
mode.random.accesskey=n
mode.random.tooltip=Načíta URL cez náhodné Proxy (ignoruje všetky vzory a priority)
random=Náhodné
random.applicable=Toto nastavenie sa použije v režime "Použiť náhodné proxy pre všetky URL (ignorovať všetky vzory a priority)"
superadd.error=Chyba konfigurácie: %S bol zakázaný.
superadd.notify=Proxy %S
superadd.url.added=Vzor %S pridaný do Proxy "%S"
autoadd.pattern.label=Dynamický vzor pre automatické priradenie
quickadd.pattern.label=Dynamický vzor pre rýchle priradenie
torwiz.proxydns=Chcete, aby boli DNS požiadavky vykonávané cez sieť Tor? Ak nerozumiete tejto otázke, tak stlačte "Áno"
superadd.verboten2=%S nemôže byť povolený, pretože nie sú definované žiadne servery alebo sú všetky zakázané.
autoadd.notice=Poznámka: Automatické priradenie ovplyvňuje čas za ktorý sa načíta webová stránka. Čím zložitejší je váš vzor a čím väčšia je webová stránka, tým dlhšie trvá spracovanie automatickému priradeniu. Ak pociťujete značné oneskorenie, tak zakážte automatické priradenie.\n\nOdporúča sa použiť Rýchle priradenie namiesto Automatického priradenia.
autoadd.notice2=
autoconfurl.test.success=PAC bolo nájdené, načítané a úspešne aplikované.
autoconfurl.test.fail=Nastala chyba pri načítaní, hľadaní, alebo aplikovaní PAC:\nHTTP stavový kód: %S\nVýnimka: %S
none=Nič
delete.settings.ask=Naozaj chcete odstrániť nastavenia FoxyProxy uložené v %S?
delete.settings.confirm=% bude odstránený po zatvorení všetkých prehliadačov.
no.wildcard.characters=Vzor neobsahuje zástupné znaky. To znamená, že "%S" sa musí presne zhodovať. Nie je zvykom používať FoxyProxy týmto spôsobom a pravdepodobne to znamená, že vzor obsahuje chybu alebo neviete, ako nadefinovať vzory pre FoxyProxy. Aj tak pokračovať?
message.stop=Túto správu už nezobrazovať.
log.save=Uložiť protokol
log.saved2=Protokol bol uložený do %S. Zobraziť?
log.nourls.url=Bez záznamu
log.scrub=Vymazať existujúce záznamy URL adries?
no.white.patterns=Nezadali ste žiadne vzory pre adresy na bielej listine. To znamená, že proxy server nebude použitý. Pokračovať?
quickadd.quickadd.canceled=Rýchle priradenie bolo zrušené, pretože aktuálna adresa súhlasí so vzorom pomenovaným "%S" pre proxy "%S"
quickadd.nourl=Nepodarilo sa získať aktuálnu adresu.
cookies.allremoved=Všetky cookies odstránené
route.error=Chyba pri zisťovaní, ktorý server použiť ako proxy.
route.exception=Výnimka pri zisťovaní, ktorý server použiť ako proxy pre %S.
see.log=Ak sa chcete dozvedieť viac informácií, pozrite si súbor log.
pac.select=Vyberte súbor PAC, ktorý chcete použiť
pac.files=Súbory PAC

Some files were not shown because too many files have changed in this diff Show More