tor-commits
Threads by month
- ----- 2025 -----
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- 213386 discussions

[vidalia/alpha] Add first draft of the plugin framework documentation
by chiiph@torproject.org 02 Jul '11
by chiiph@torproject.org 02 Jul '11
02 Jul '11
commit 5bed9056139a2d33042995f1f0e7838fb43c9a3d
Author: Tomas Touceda <chiiph(a)gentoo.org>
Date: Tue May 17 13:50:31 2011 -0300
Add first draft of the plugin framework documentation
---
doc/plugin-framework.txt | 153 ++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 153 insertions(+), 0 deletions(-)
diff --git a/doc/plugin-framework.txt b/doc/plugin-framework.txt
new file mode 100644
index 0000000..e00ab8c
--- /dev/null
+++ b/doc/plugin-framework.txt
@@ -0,0 +1,153 @@
+Plugin Framework specification
+
+1. Directory structure:
+
+ Each plugin will live inside its own directory, separated from all the
+ other plugins.
+ The directory will contain the following:
+ info.xml *
+ <file>.js **
+ <subdir>/ ***
+
+ * The plugin description will live inside an XML file named info.xml,
+ its specification will be specified later.
+
+ ** Each source code file that the plugin uses will have a "js"
+ extension. The plugin may contain any other kind of files, along with
+ other source code files.
+
+ *** The plugin may contain any sort of directory dispositions. The
+ developer can reference files within subdirectories freely. The main
+ file can live anywhere within the plugin directory, as long as its
+ relative path is specified correctly in the info.xml file.
+
+2. Definition file:
+
+ The definition file for a plugin will be a XML file with the following DTD:
+
+ <!DOCTYPE VidaliaPlugin [
+ <!ENTITY name (#CDATA)>
+ <!ENTITY date (#CDATA)>
+ <!ENTITY author (#CDATA)>
+ <!ENTITY type (EMPTY)>
+ <!ATTLIST type persistent CDATA "false">
+ <!ATTLIST type gui CDATA "false">
+ <!ENTITY files (file+)>
+ <!ENTITY file (#CDATA)>
+ <!ENTITY namespace (#CDATA)>
+ ]>
+
+ Short description:
+ - Name, date and author are self explanatory.
+ - Type:
+ - Persistent: A plugin is persistent if it starts when Vidalia starts,
+ and it doesn't matter if the GUI (if it has one) is visible or not, the
+ plugin code is in execution.
+ - GUI: True if the plugin has a GUI.
+ - Files: Plugins may contain several source code files. The different
+ functions that must be implemented for it to work may be divided into
+ several files, or just one. Whatever the case may be, the files that the
+ plugin engine has to load must be specified in here. The plugin may use
+ other files, which don't need to be listed.
+ - Namespace: Each plugin will have its own namespace to avoid function
+ name collisions (the main functions will be named the same)
+
+3. Plugin functions:
+
+ Each plugin must implement the following functions:
+ start() : void
+ stop() : void
+ buildGUI() : VidaliaTab *
+
+ If the plugin isn't a GUI one, a default implementation will be added
+ that returns QScriptValue::NullValue.
+ Plugins may use several different files to implement its functionality.
+ To include files within other files use:
+
+ include("path/to/file.js")
+
+ This will be implemented by Vidalia's engine, it's not a native include
+ call. Another possibility would be to just list the file in the info.xml
+ file, and the engine will load it automatically and in order.
+
+4. Building an interface for a class to be used in a plugin:
+
+ To provide any class to be used in a plugin, there are two main parts to
+ implement: the constructor, and the prototype:
+ - Constructor: each constructable object in a plugin need to have
+ a static constructor function implemented with the following
+ signature:
+
+ QScriptValue f(QScriptContext *, QScriptEngine *)
+
+ - Prototype: A prototype is a wrapper for a metatype's methods. This
+ methods are what will be visible inside the plugin for a given
+ object.
+
+ The prototype class must inherit from QObject and QScriptable.
+ All types used in the plugin must be handled this way, and must be
+ declared as a Qt Metatype. Each interface must handle the metatype
+ declaration.
+
+5. Settings:
+
+ For specifying where the plugins live, there will be a new item in
+ Vidalia's configuration file: PluginPath. Which will contain the absolute
+ path of the plugins.
+
+6. Plugin engine:
+
+ All plugins will leave in the same environment (QScriptEngine). When
+ Vidalia starts, it starts the plugin engine.
+ Here's a bit of pseudo-code to get an idea of the loading process.
+
+ 6.1. Startup:
+
+ foreach provided_class: (1)
+ load_prototype (2)
+ load_constructor (3)
+
+ scan_plugin_directory (4)
+ foreach directory:
+ info = load_info_file (5)
+ wrapper = plugin_wrapper(info) (6)
+ if info.persistent:
+ wrapper.start() (7)
+ if info.gui:
+ plugin_menu.addAction(wrapper.menu_action()) (8)
+
+ (1) This loop will be probably hardcoded, since there isn't any way to
+ iterate through every class that we want to provide for the plugins.
+ (2) First we need to load the prototype for the given metatype.
+ (3) Then we can add a constructor for the metatype as a function of the
+ global script engine interpreter.
+ (4) Scan the PluginPath for directories that contain the info.xml
+ file.
+ (5) Interpret the info file to see what kind of plugin we are dealing
+ with.
+ (6) A plugin wrapper is an object that abstracts the actual calls to
+ the methods we know the plugin must implement with its corresponding
+ namespace.
+ (7) If it's a persistent plugin, then start it.
+ (8) If it's a gui plugin, add the entry to the plugin menu. If the
+ plugin is also persistent, then the menu action will be linked to
+ a show() function instead of the start(), since the plugin will be
+ already loaded.
+
+ 6.2. Quit:
+
+ foreach plugin:
+ wrapper.stop()
+
+7. Things to consider:
+
+ - Will the fact that all the plugins live in the same environment affect
+ in terms of security? or at least the workflow of each individual
+ plugin?
+ Possible solution: One instance of QScriptEngine for each plugin (kind
+ of a sandbox). But what will be the performance drawbacks to this?
+ - Is there the need to connect signals emitted from the plugin to
+ Vidalia? If so, this seems to be a nice implementation:
+ http://gitorious.org/qtscriptsignalhandler
+ - Do we want to have all files listed in the info.xml file too? May be we
+ can use that to have some kind of sanity check.
1
0

r24855: {website} Update website with new torbutton version. (in website/trunk: include torbutton)
by Mike Perry 02 Jul '11
by Mike Perry 02 Jul '11
02 Jul '11
Author: mikeperry
Date: 2011-07-02 01:09:57 +0000 (Sat, 02 Jul 2011)
New Revision: 24855
Modified:
website/trunk/include/versions.wmi
website/trunk/torbutton/update.rdf
Log:
Update website with new torbutton version.
Modified: website/trunk/include/versions.wmi
===================================================================
--- website/trunk/include/versions.wmi 2011-07-01 22:45:37 UTC (rev 24854)
+++ website/trunk/include/versions.wmi 2011-07-02 01:09:57 UTC (rev 24855)
@@ -84,8 +84,8 @@
<define-tag file-source-alpha whitespace=delete>tor-<version-alpha>.tar.gz</define-tag>
<define-tag package-source-alpha whitespace=delete>/dist/<file-source-alpha></define-tag>
-<define-tag version-torbutton whitespace=delete>1.2.5 (08 April 2010)</define-tag>
-<define-tag version-hash-torbutton whitespace=delete>sha1:e84592877593ad6119e829ac7199fd19333e101e</define-tag>
+<define-tag version-torbutton whitespace=delete>1.4.0 (30 June 2011)</define-tag>
+<define-tag version-hash-torbutton whitespace=delete>sha1:4df99e70b2991bb51ea70d0c217961174b24a98e</define-tag>
-<define-tag version-torbutton-alpha whitespace=delete>1.3.3-alpha (01 May 2011)</define-tag>
+<define-tag version-torbutton-alpha whitespace=delete>None</define-tag>
<define-tag version-hash-torbutton-alpha whitespace=delete>sha1:c7323cd408ebee28ee23b6a91fe056d59de668f5</define-tag>
Modified: website/trunk/torbutton/update.rdf
===================================================================
(Binary files differ)
1
0

02 Jul '11
commit 1696ed4d94cf4f4f6b62f5cb0024b58bd1247a09
Author: Mike Perry <mikeperry-git(a)fscked.org>
Date: Fri Jul 1 14:01:07 2011 -0700
Changelog entry for Tails name change.
---
src/CHANGELOG | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/src/CHANGELOG b/src/CHANGELOG
index 6961cef..2e09080 100644
--- a/src/CHANGELOG
+++ b/src/CHANGELOG
@@ -17,6 +17,7 @@
* misc: Squelch exception from app launcher in error console.
* misc: Make DuckDuckGo the default Google Captcha redirect destination.
* misc: Make it harder to accidentally toggle torbutton.
+ * misc: T(A)ILS was renamed to Tails.
1.3.3-alpha
01 May 2011
1
0

02 Jul '11
commit 67d177b7eaf60b6b66ed40813edc461da7fe46ef
Author: intrigeri <intrigeri(a)boum.org>
Date: Sun Jun 19 23:05:01 2011 +0200
T(A)ILS was renamed to Tails a while ago.
---
src/chrome/locale/af/torbutton.properties | 2 +-
src/chrome/locale/ak/torbutton.properties | 2 +-
src/chrome/locale/am/torbutton.properties | 2 +-
src/chrome/locale/ar/torbutton.properties | 2 +-
src/chrome/locale/arn/torbutton.properties | 2 +-
src/chrome/locale/ast/torbutton.properties | 2 +-
src/chrome/locale/az/torbutton.properties | 2 +-
src/chrome/locale/be/torbutton.properties | 2 +-
src/chrome/locale/bg/torbutton.properties | 2 +-
src/chrome/locale/bn-IN/torbutton.properties | 2 +-
src/chrome/locale/bn/torbutton.properties | 2 +-
src/chrome/locale/bo/torbutton.properties | 2 +-
src/chrome/locale/br/torbutton.properties | 2 +-
src/chrome/locale/bs/torbutton.properties | 2 +-
src/chrome/locale/ca/torbutton.properties | 2 +-
src/chrome/locale/cs/torbutton.properties | 2 +-
src/chrome/locale/csb/torbutton.properties | 2 +-
src/chrome/locale/cy/torbutton.properties | 2 +-
src/chrome/locale/da/torbutton.properties | 2 +-
src/chrome/locale/de/torbutton.properties | 2 +-
src/chrome/locale/dz/torbutton.properties | 2 +-
src/chrome/locale/el/torbutton.properties | 2 +-
src/chrome/locale/en/torbutton.properties | 2 +-
src/chrome/locale/eo/torbutton.properties | 2 +-
src/chrome/locale/es/torbutton.properties | 2 +-
src/chrome/locale/et/torbutton.properties | 2 +-
src/chrome/locale/eu/torbutton.properties | 2 +-
src/chrome/locale/fa/torbutton.properties | 2 +-
src/chrome/locale/fi/torbutton.properties | 2 +-
src/chrome/locale/fil/torbutton.properties | 2 +-
src/chrome/locale/fo/torbutton.properties | 2 +-
src/chrome/locale/fr/torbutton.properties | 2 +-
src/chrome/locale/fur/torbutton.properties | 2 +-
src/chrome/locale/fy/torbutton.properties | 2 +-
src/chrome/locale/ga/torbutton.properties | 2 +-
src/chrome/locale/gl/torbutton.properties | 2 +-
src/chrome/locale/gu/torbutton.properties | 2 +-
src/chrome/locale/gun/torbutton.properties | 2 +-
src/chrome/locale/ha/torbutton.properties | 2 +-
src/chrome/locale/he/torbutton.properties | 2 +-
src/chrome/locale/hi/torbutton.properties | 2 +-
src/chrome/locale/hr/torbutton.properties | 2 +-
src/chrome/locale/ht/torbutton.properties | 2 +-
src/chrome/locale/hu/torbutton.properties | 2 +-
src/chrome/locale/hy/torbutton.properties | 2 +-
src/chrome/locale/id/torbutton.properties | 2 +-
src/chrome/locale/is/torbutton.properties | 2 +-
src/chrome/locale/it/torbutton.properties | 2 +-
src/chrome/locale/ja/torbutton.properties | 2 +-
src/chrome/locale/jv/torbutton.properties | 2 +-
src/chrome/locale/ka/torbutton.properties | 2 +-
src/chrome/locale/km/torbutton.properties | 2 +-
src/chrome/locale/kn/torbutton.properties | 2 +-
src/chrome/locale/ko/torbutton.properties | 2 +-
src/chrome/locale/ku/torbutton.properties | 2 +-
src/chrome/locale/kw/torbutton.properties | 2 +-
src/chrome/locale/ky/torbutton.properties | 2 +-
src/chrome/locale/lb/torbutton.properties | 2 +-
src/chrome/locale/lg/torbutton.properties | 2 +-
src/chrome/locale/ln/torbutton.properties | 2 +-
src/chrome/locale/lo/torbutton.properties | 2 +-
src/chrome/locale/lt/torbutton.properties | 2 +-
src/chrome/locale/lv/torbutton.properties | 2 +-
src/chrome/locale/mg/torbutton.properties | 2 +-
src/chrome/locale/mi/torbutton.properties | 2 +-
src/chrome/locale/mk/torbutton.properties | 2 +-
src/chrome/locale/ml/torbutton.properties | 2 +-
src/chrome/locale/mn/torbutton.properties | 2 +-
src/chrome/locale/mr/torbutton.properties | 2 +-
src/chrome/locale/ms/torbutton.properties | 2 +-
src/chrome/locale/mt/torbutton.properties | 2 +-
src/chrome/locale/my/torbutton.properties | 2 +-
src/chrome/locale/nah/torbutton.properties | 2 +-
src/chrome/locale/nap/torbutton.properties | 2 +-
src/chrome/locale/nb/torbutton.properties | 2 +-
src/chrome/locale/ne/torbutton.properties | 2 +-
src/chrome/locale/nl/torbutton.properties | 2 +-
src/chrome/locale/nn/torbutton.properties | 2 +-
src/chrome/locale/nso/torbutton.properties | 2 +-
src/chrome/locale/oc/torbutton.properties | 2 +-
src/chrome/locale/or/torbutton.properties | 2 +-
src/chrome/locale/pa/torbutton.properties | 2 +-
src/chrome/locale/pap/torbutton.properties | 2 +-
src/chrome/locale/pl/torbutton.properties | 2 +-
src/chrome/locale/pms/torbutton.properties | 2 +-
src/chrome/locale/ps/torbutton.properties | 2 +-
src/chrome/locale/pt-BR/torbutton.properties | 2 +-
src/chrome/locale/pt/torbutton.properties | 2 +-
src/chrome/locale/ro/torbutton.properties | 2 +-
src/chrome/locale/ru/torbutton.properties | 2 +-
src/chrome/locale/sco/torbutton.properties | 2 +-
src/chrome/locale/sk/torbutton.properties | 2 +-
src/chrome/locale/sl/torbutton.properties | 2 +-
src/chrome/locale/so/torbutton.properties | 2 +-
src/chrome/locale/son/torbutton.properties | 2 +-
src/chrome/locale/sq/torbutton.properties | 2 +-
src/chrome/locale/sr/torbutton.properties | 2 +-
src/chrome/locale/st/torbutton.properties | 2 +-
src/chrome/locale/su/torbutton.properties | 2 +-
src/chrome/locale/sv/torbutton.properties | 2 +-
src/chrome/locale/sw/torbutton.properties | 2 +-
src/chrome/locale/ta/torbutton.properties | 2 +-
src/chrome/locale/te/torbutton.properties | 2 +-
src/chrome/locale/tg/torbutton.properties | 2 +-
src/chrome/locale/th/torbutton.properties | 2 +-
src/chrome/locale/ti/torbutton.properties | 2 +-
src/chrome/locale/tk/torbutton.properties | 2 +-
src/chrome/locale/tr/torbutton.properties | 2 +-
src/chrome/locale/uk/torbutton.properties | 2 +-
src/chrome/locale/ur/torbutton.properties | 2 +-
src/chrome/locale/ve/torbutton.properties | 2 +-
src/chrome/locale/vi/torbutton.properties | 2 +-
src/chrome/locale/wa/torbutton.properties | 2 +-
src/chrome/locale/wo/torbutton.properties | 2 +-
src/chrome/locale/zh-CN/torbutton.properties | 2 +-
src/chrome/locale/zh-HK/torbutton.properties | 2 +-
src/chrome/locale/zh-TW/torbutton.properties | 2 +-
src/chrome/locale/zu/torbutton.properties | 2 +-
118 files changed, 118 insertions(+), 118 deletions(-)
diff --git a/src/chrome/locale/af/torbutton.properties b/src/chrome/locale/af/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/af/torbutton.properties
+++ b/src/chrome/locale/af/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/ak/torbutton.properties b/src/chrome/locale/ak/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/ak/torbutton.properties
+++ b/src/chrome/locale/ak/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/am/torbutton.properties b/src/chrome/locale/am/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/am/torbutton.properties
+++ b/src/chrome/locale/am/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/ar/torbutton.properties b/src/chrome/locale/ar/torbutton.properties
index 503819b..4d1ac15 100644
--- a/src/chrome/locale/ar/torbutton.properties
+++ b/src/chrome/locale/ar/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (أساسي)
torbutton.popup.external.title = تحميل محتوى خارجي؟
torbutton.popup.external.app = هناك حاجة لاستخدام تطبيق خارجي للتعامل مع:\n\n
torbutton.popup.external.note = \n\nملاحظة: التطبيقات الخارجية ليست آمنة مع تور بشكل افتراضي ويمكن أن تكشف هويتك!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = إطلاق التطبيق
torbutton.popup.cancel = إلغاء
torbutton.popup.dontask = دائماً أطلق التطبيقات ابتداءً من الآن
diff --git a/src/chrome/locale/arn/torbutton.properties b/src/chrome/locale/arn/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/arn/torbutton.properties
+++ b/src/chrome/locale/arn/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/ast/torbutton.properties b/src/chrome/locale/ast/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/ast/torbutton.properties
+++ b/src/chrome/locale/ast/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/az/torbutton.properties b/src/chrome/locale/az/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/az/torbutton.properties
+++ b/src/chrome/locale/az/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/be/torbutton.properties b/src/chrome/locale/be/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/be/torbutton.properties
+++ b/src/chrome/locale/be/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/bg/torbutton.properties b/src/chrome/locale/bg/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/bg/torbutton.properties
+++ b/src/chrome/locale/bg/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/bn-IN/torbutton.properties b/src/chrome/locale/bn-IN/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/bn-IN/torbutton.properties
+++ b/src/chrome/locale/bn-IN/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/bn/torbutton.properties b/src/chrome/locale/bn/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/bn/torbutton.properties
+++ b/src/chrome/locale/bn/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/bo/torbutton.properties b/src/chrome/locale/bo/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/bo/torbutton.properties
+++ b/src/chrome/locale/bo/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/br/torbutton.properties b/src/chrome/locale/br/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/br/torbutton.properties
+++ b/src/chrome/locale/br/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/bs/torbutton.properties b/src/chrome/locale/bs/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/bs/torbutton.properties
+++ b/src/chrome/locale/bs/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/ca/torbutton.properties b/src/chrome/locale/ca/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/ca/torbutton.properties
+++ b/src/chrome/locale/ca/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/cs/torbutton.properties b/src/chrome/locale/cs/torbutton.properties
index 1652ad1..082bc04 100644
--- a/src/chrome/locale/cs/torbutton.properties
+++ b/src/chrome/locale/cs/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/csb/torbutton.properties b/src/chrome/locale/csb/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/csb/torbutton.properties
+++ b/src/chrome/locale/csb/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/cy/torbutton.properties b/src/chrome/locale/cy/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/cy/torbutton.properties
+++ b/src/chrome/locale/cy/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/da/torbutton.properties b/src/chrome/locale/da/torbutton.properties
index 5f837a9..7b218d3 100644
--- a/src/chrome/locale/da/torbutton.properties
+++ b/src/chrome/locale/da/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (afgørende)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/de/torbutton.properties b/src/chrome/locale/de/torbutton.properties
index 010b7dc..856a572 100644
--- a/src/chrome/locale/de/torbutton.properties
+++ b/src/chrome/locale/de/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (kritisch)
torbutton.popup.external.title = Externen Inhalt laden?
torbutton.popup.external.app = Eine externe Applikation wird benötigt, um mit dem folgenden Objekt umzugehen:\n\n
torbutton.popup.external.note = \n\nAnmerkung: Externe Applikationen sind im Allgemeinen NICHT Tor gesichert und können Sie verraten!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Applikation starten
torbutton.popup.cancel = Abbrechen
torbutton.popup.dontask = Von nun an immer Applikationen laden
diff --git a/src/chrome/locale/dz/torbutton.properties b/src/chrome/locale/dz/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/dz/torbutton.properties
+++ b/src/chrome/locale/dz/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/el/torbutton.properties b/src/chrome/locale/el/torbutton.properties
index 44f50a7..ef6916c 100644
--- a/src/chrome/locale/el/torbutton.properties
+++ b/src/chrome/locale/el/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (κρισιμο)
torbutton.popup.external.title = Να φορτωθεί εξωτερικό περιεχόμενο;
torbutton.popup.external.app = Μια εξωτερική εφαρμογή είναι απαραίτητη για τον σωστό χειρισμό:\n\n
torbutton.popup.external.note = \n\nΣΗΜΕΙΩΣΗ: Οι εξωτερικές εφαρμογές ΔΕΝ είναι εξορισμού ασφαλής για το Tor και μπορούν να σας αποκαλύψουν!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Εκτέλεση εφαρμογής
torbutton.popup.cancel = Άκυρον
torbutton.popup.dontask = Από τώρα και στο εξής να εκτελούνται πάντοτε εφαρμογές
diff --git a/src/chrome/locale/en/torbutton.properties b/src/chrome/locale/en/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/en/torbutton.properties
+++ b/src/chrome/locale/en/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/eo/torbutton.properties b/src/chrome/locale/eo/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/eo/torbutton.properties
+++ b/src/chrome/locale/eo/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/es/torbutton.properties b/src/chrome/locale/es/torbutton.properties
index bbcfbc5..4f10dfc 100644
--- a/src/chrome/locale/es/torbutton.properties
+++ b/src/chrome/locale/es/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Cargar contenido externo?
torbutton.popup.external.app = Una aplicación externa es necesaria para manejar:\n\n
torbutton.popup.external.note = \n\nNOTA: Las aplicaciones externasa NO son de uso seguro para Tor por defecto y podrían desenmascararlo!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Iniciar la aplicación
torbutton.popup.cancel = Cancelar
torbutton.popup.dontask = A partir de ahora, siempre iniciar la aplicación
diff --git a/src/chrome/locale/et/torbutton.properties b/src/chrome/locale/et/torbutton.properties
index 738c69d..dd55b46 100644
--- a/src/chrome/locale/et/torbutton.properties
+++ b/src/chrome/locale/et/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (ülioluline)
torbutton.popup.external.title = Lae välist sisu?
torbutton.popup.external.app = Välist rakendust on vaja, et käsitseda:\n\n
torbutton.popup.external.note = \n\nTeadaanne: välised rakendused ei ole vaikimisi Toriga koos kasutades turvalised ning võivad sind paljastada.\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Käivita rakendus
torbutton.popup.cancel = Katkesta
torbutton.popup.dontask = Alati käivita rakendusi edaspidi
diff --git a/src/chrome/locale/eu/torbutton.properties b/src/chrome/locale/eu/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/eu/torbutton.properties
+++ b/src/chrome/locale/eu/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/fa/torbutton.properties b/src/chrome/locale/fa/torbutton.properties
index 28253c3..7f3c630 100644
--- a/src/chrome/locale/fa/torbutton.properties
+++ b/src/chrome/locale/fa/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (بسيار مهم)
torbutton.popup.external.title = محتویات خارجی بارگزاری شوند؟
torbutton.popup.external.app = یک برنامه خارجی باید وارد عمل شود:\n\n
torbutton.popup.external.note = \n\nنکته: برنامه های خارجی توسط تُر به طور پیشفرض امن نشده اند و ممکن است هویت اصلی شما را آشکار کنند!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = اجرای برنامه
torbutton.popup.cancel = لغو
torbutton.popup.dontask = از حالا به بعد هر برنامه ای را اجرا کن
diff --git a/src/chrome/locale/fi/torbutton.properties b/src/chrome/locale/fi/torbutton.properties
index c098d75..4678368 100644
--- a/src/chrome/locale/fi/torbutton.properties
+++ b/src/chrome/locale/fi/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (kriittinen)
torbutton.popup.external.title = Ladataanko ulkopuolinen sisältö?
torbutton.popup.external.app = Tarvitaan ulkoinen sovellus:\n\n
torbutton.popup.external.note = \n\nHUOM: Ulkoiset sovellukset eivät ole oletusarvoisesti Tor turvallisia ja saattavat poistaa Tor suojauksesi!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Käynnistä sovellus
torbutton.popup.cancel = Peruuta
torbutton.popup.dontask = Käynistä sovellus joka kerta tästä eteenpäin
diff --git a/src/chrome/locale/fil/torbutton.properties b/src/chrome/locale/fil/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/fil/torbutton.properties
+++ b/src/chrome/locale/fil/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/fo/torbutton.properties b/src/chrome/locale/fo/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/fo/torbutton.properties
+++ b/src/chrome/locale/fo/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/fr/torbutton.properties b/src/chrome/locale/fr/torbutton.properties
index 0189322..c2a8108 100644
--- a/src/chrome/locale/fr/torbutton.properties
+++ b/src/chrome/locale/fr/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (indispensable)
torbutton.popup.external.title = Charger un contenu externe ?
torbutton.popup.external.app = Une application externe est requise pour gérer:\n\n
torbutton.popup.external.note = \n\nNOTE: Les applicatiosn externes ne sont pas saines par défaut pour Tor et peuvent vous démasquer !\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Lancer l'application
torbutton.popup.cancel = Annuler
torbutton.popup.dontask = Toujours lancer les applications à partir de maintenant
diff --git a/src/chrome/locale/fur/torbutton.properties b/src/chrome/locale/fur/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/fur/torbutton.properties
+++ b/src/chrome/locale/fur/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/fy/torbutton.properties b/src/chrome/locale/fy/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/fy/torbutton.properties
+++ b/src/chrome/locale/fy/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/ga/torbutton.properties b/src/chrome/locale/ga/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/ga/torbutton.properties
+++ b/src/chrome/locale/ga/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/gl/torbutton.properties b/src/chrome/locale/gl/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/gl/torbutton.properties
+++ b/src/chrome/locale/gl/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/gu/torbutton.properties b/src/chrome/locale/gu/torbutton.properties
index 9397f4d..467b240 100644
--- a/src/chrome/locale/gu/torbutton.properties
+++ b/src/chrome/locale/gu/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = કાર્યક્રમ શરુ કરો
torbutton.popup.cancel = રદ્ કરો
torbutton.popup.dontask = હવે પછી હંમેશા કાર્યક્રમ શરુ કરો
diff --git a/src/chrome/locale/gun/torbutton.properties b/src/chrome/locale/gun/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/gun/torbutton.properties
+++ b/src/chrome/locale/gun/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/ha/torbutton.properties b/src/chrome/locale/ha/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/ha/torbutton.properties
+++ b/src/chrome/locale/ha/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/he/torbutton.properties b/src/chrome/locale/he/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/he/torbutton.properties
+++ b/src/chrome/locale/he/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/hi/torbutton.properties b/src/chrome/locale/hi/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/hi/torbutton.properties
+++ b/src/chrome/locale/hi/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/hr/torbutton.properties b/src/chrome/locale/hr/torbutton.properties
index 5f91488..54d853f 100644
--- a/src/chrome/locale/hr/torbutton.properties
+++ b/src/chrome/locale/hr/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/ht/torbutton.properties b/src/chrome/locale/ht/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/ht/torbutton.properties
+++ b/src/chrome/locale/ht/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/hu/torbutton.properties b/src/chrome/locale/hu/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/hu/torbutton.properties
+++ b/src/chrome/locale/hu/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/hy/torbutton.properties b/src/chrome/locale/hy/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/hy/torbutton.properties
+++ b/src/chrome/locale/hy/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/id/torbutton.properties b/src/chrome/locale/id/torbutton.properties
index a15f1c3..206c8a9 100644
--- a/src/chrome/locale/id/torbutton.properties
+++ b/src/chrome/locale/id/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (krusial)
torbutton.popup.external.title = Muat konten eksternal?
torbutton.popup.external.app = Sebuah aplikasi eksternal butuh untuk ditangani:\n\n
torbutton.popup.external.note = \n\nCATATAN: secara default, aplikasi eksternal tidaklah aman untuk Tor dan dapat membuka penyamaran Anda!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Luncurkan aplikasi.
torbutton.popup.cancel = Batal
torbutton.popup.dontask = Selalu luncurkan aplikasi mulai dari sekarang
diff --git a/src/chrome/locale/is/torbutton.properties b/src/chrome/locale/is/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/is/torbutton.properties
+++ b/src/chrome/locale/is/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/it/torbutton.properties b/src/chrome/locale/it/torbutton.properties
index cb5c1b6..d852b5c 100644
--- a/src/chrome/locale/it/torbutton.properties
+++ b/src/chrome/locale/it/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (essenziale)
torbutton.popup.external.title = Caricare il contenuto esterno?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Lanciare l'applicazione
torbutton.popup.cancel = Annulla
torbutton.popup.dontask = Da adesso lanciare sempre le applicazioni
diff --git a/src/chrome/locale/ja/torbutton.properties b/src/chrome/locale/ja/torbutton.properties
index b3686bc..4741521 100644
--- a/src/chrome/locale/ja/torbutton.properties
+++ b/src/chrome/locale/ja/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (重要)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = アプリケーション起動
torbutton.popup.cancel = キャンセル
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/jv/torbutton.properties b/src/chrome/locale/jv/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/jv/torbutton.properties
+++ b/src/chrome/locale/jv/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/ka/torbutton.properties b/src/chrome/locale/ka/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/ka/torbutton.properties
+++ b/src/chrome/locale/ka/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/km/torbutton.properties b/src/chrome/locale/km/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/km/torbutton.properties
+++ b/src/chrome/locale/km/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/kn/torbutton.properties b/src/chrome/locale/kn/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/kn/torbutton.properties
+++ b/src/chrome/locale/kn/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/ko/torbutton.properties b/src/chrome/locale/ko/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/ko/torbutton.properties
+++ b/src/chrome/locale/ko/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/ku/torbutton.properties b/src/chrome/locale/ku/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/ku/torbutton.properties
+++ b/src/chrome/locale/ku/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/kw/torbutton.properties b/src/chrome/locale/kw/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/kw/torbutton.properties
+++ b/src/chrome/locale/kw/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/ky/torbutton.properties b/src/chrome/locale/ky/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/ky/torbutton.properties
+++ b/src/chrome/locale/ky/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/lb/torbutton.properties b/src/chrome/locale/lb/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/lb/torbutton.properties
+++ b/src/chrome/locale/lb/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/lg/torbutton.properties b/src/chrome/locale/lg/torbutton.properties
index f991f5a..6ccd278 100644
--- a/src/chrome/locale/lg/torbutton.properties
+++ b/src/chrome/locale/lg/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/ln/torbutton.properties b/src/chrome/locale/ln/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/ln/torbutton.properties
+++ b/src/chrome/locale/ln/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/lo/torbutton.properties b/src/chrome/locale/lo/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/lo/torbutton.properties
+++ b/src/chrome/locale/lo/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/lt/torbutton.properties b/src/chrome/locale/lt/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/lt/torbutton.properties
+++ b/src/chrome/locale/lt/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/lv/torbutton.properties b/src/chrome/locale/lv/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/lv/torbutton.properties
+++ b/src/chrome/locale/lv/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/mg/torbutton.properties b/src/chrome/locale/mg/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/mg/torbutton.properties
+++ b/src/chrome/locale/mg/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/mi/torbutton.properties b/src/chrome/locale/mi/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/mi/torbutton.properties
+++ b/src/chrome/locale/mi/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/mk/torbutton.properties b/src/chrome/locale/mk/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/mk/torbutton.properties
+++ b/src/chrome/locale/mk/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/ml/torbutton.properties b/src/chrome/locale/ml/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/ml/torbutton.properties
+++ b/src/chrome/locale/ml/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/mn/torbutton.properties b/src/chrome/locale/mn/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/mn/torbutton.properties
+++ b/src/chrome/locale/mn/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/mr/torbutton.properties b/src/chrome/locale/mr/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/mr/torbutton.properties
+++ b/src/chrome/locale/mr/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/ms/torbutton.properties b/src/chrome/locale/ms/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/ms/torbutton.properties
+++ b/src/chrome/locale/ms/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/mt/torbutton.properties b/src/chrome/locale/mt/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/mt/torbutton.properties
+++ b/src/chrome/locale/mt/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/my/torbutton.properties b/src/chrome/locale/my/torbutton.properties
index 3f80a83..046400d 100644
--- a/src/chrome/locale/my/torbutton.properties
+++ b/src/chrome/locale/my/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (အေရးၾကီးပါသည္)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/nah/torbutton.properties b/src/chrome/locale/nah/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/nah/torbutton.properties
+++ b/src/chrome/locale/nah/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/nap/torbutton.properties b/src/chrome/locale/nap/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/nap/torbutton.properties
+++ b/src/chrome/locale/nap/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/nb/torbutton.properties b/src/chrome/locale/nb/torbutton.properties
index 89ca137..2789d5d 100644
--- a/src/chrome/locale/nb/torbutton.properties
+++ b/src/chrome/locale/nb/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (avgjørende)
torbutton.popup.external.title = Laste eksternt innhold?
torbutton.popup.external.app = Et eksternt program er nødvendig for å håndtere:\n\n
torbutton.popup.external.note = \n\nMERK: Eksterne program er IKKE Tor-sikker som standard og kan røpe deg!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Start program
torbutton.popup.cancel = Avbryt
torbutton.popup.dontask = Start alltid programmer fra nå av
diff --git a/src/chrome/locale/ne/torbutton.properties b/src/chrome/locale/ne/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/ne/torbutton.properties
+++ b/src/chrome/locale/ne/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/nl/torbutton.properties b/src/chrome/locale/nl/torbutton.properties
index 99839be..9409233 100644
--- a/src/chrome/locale/nl/torbutton.properties
+++ b/src/chrome/locale/nl/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (cruciaal)
torbutton.popup.external.title = Externe inhoud laden ?
torbutton.popup.external.app = Een externe toepassing is nodig voor : \n\n
torbutton.popup.external.note = \n\n Opmerking : Externe toepassingen zijn NIET veilig en kunnen U ontmaskeren.\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Toepassing starten
torbutton.popup.cancel = Annuleren
torbutton.popup.dontask = Vanaf nu steeds de toepassing starten
diff --git a/src/chrome/locale/nn/torbutton.properties b/src/chrome/locale/nn/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/nn/torbutton.properties
+++ b/src/chrome/locale/nn/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/nso/torbutton.properties b/src/chrome/locale/nso/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/nso/torbutton.properties
+++ b/src/chrome/locale/nso/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/oc/torbutton.properties b/src/chrome/locale/oc/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/oc/torbutton.properties
+++ b/src/chrome/locale/oc/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/or/torbutton.properties b/src/chrome/locale/or/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/or/torbutton.properties
+++ b/src/chrome/locale/or/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/pa/torbutton.properties b/src/chrome/locale/pa/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/pa/torbutton.properties
+++ b/src/chrome/locale/pa/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/pap/torbutton.properties b/src/chrome/locale/pap/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/pap/torbutton.properties
+++ b/src/chrome/locale/pap/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/pl/torbutton.properties b/src/chrome/locale/pl/torbutton.properties
index 4fecbca..a950dfd 100644
--- a/src/chrome/locale/pl/torbutton.properties
+++ b/src/chrome/locale/pl/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (wymagane)
torbutton.popup.external.title = Załadować zewnętrzną zawartość?
torbutton.popup.external.app = Zawnętrzna aplikacja jest wymagana, aby obsłużyć:\n\n
torbutton.popup.external.note = \n\nUWAGA: Zewnętrzne aplikacje NIE są domyślnie bezpieczne przy używaniu Tora i mogą Cię odkryć!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Uruchom aplikację
torbutton.popup.cancel = Anuluj
torbutton.popup.dontask = Od teraz zawsze uruchamiaj aplikacje
diff --git a/src/chrome/locale/pms/torbutton.properties b/src/chrome/locale/pms/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/pms/torbutton.properties
+++ b/src/chrome/locale/pms/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/ps/torbutton.properties b/src/chrome/locale/ps/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/ps/torbutton.properties
+++ b/src/chrome/locale/ps/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/pt-BR/torbutton.properties b/src/chrome/locale/pt-BR/torbutton.properties
index 099b93e..55b8769 100644
--- a/src/chrome/locale/pt-BR/torbutton.properties
+++ b/src/chrome/locale/pt-BR/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Carregar conteúdo externo?
torbutton.popup.external.app = Uma aplicação externa é necessária para manipular:\n\n
torbutton.popup.external.note = \n\nNOTA: Aplicações externas NÃO são seguras por padrão e podem desmascarar você!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Rode a aplicação
torbutton.popup.cancel = Cancelado
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/pt/torbutton.properties b/src/chrome/locale/pt/torbutton.properties
index 2aea198..5e64dbc 100644
--- a/src/chrome/locale/pt/torbutton.properties
+++ b/src/chrome/locale/pt/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Carregar conteúdo externo?
torbutton.popup.external.app = Uma aplicação externa é necessário para abrir:\n\n
torbutton.popup.external.note = \n\nNota: Aplicações externas ao Tor NÃO são seguras, e podem dar a conhecer a sua origem!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Correr aplicação
torbutton.popup.cancel = Cancelar
torbutton.popup.dontask = Sempre correr aplicações daqui para a frente
diff --git a/src/chrome/locale/ro/torbutton.properties b/src/chrome/locale/ro/torbutton.properties
index 255855c..fed7b97 100644
--- a/src/chrome/locale/ro/torbutton.properties
+++ b/src/chrome/locale/ro/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (critic)
torbutton.popup.external.title = Să încarc conținutul extern?
torbutton.popup.external.app = O aplicaţie externă este necesară să se ocupe de:\n\n
torbutton.popup.external.note = \n\nObservatie: Aplicatiile externe NU sunt sigure cu setările implicite Tor, şi vă pot demasca!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Pornește aplicația
torbutton.popup.cancel = Anulare
torbutton.popup.dontask = Întotdeauna lansează aplicaţii de acum încolo
diff --git a/src/chrome/locale/ru/torbutton.properties b/src/chrome/locale/ru/torbutton.properties
index 2f070b6..35a6c0d 100644
--- a/src/chrome/locale/ru/torbutton.properties
+++ b/src/chrome/locale/ru/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (критично)
torbutton.popup.external.title = Загрузить внешние данные?
torbutton.popup.external.app = Внешняя прикладная программа необходима для обработки:\n\n
torbutton.popup.external.note = \n\nПРИМЕЧАНИЕ: Внешние приложения НЕ ЯВЛЯЮТСЯ безопасными для Tor по умолчанию, и могут разоблачить вас!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Запустить приложение
torbutton.popup.cancel = Отменить
torbutton.popup.dontask = В будущем всегда запускать приложения
diff --git a/src/chrome/locale/sco/torbutton.properties b/src/chrome/locale/sco/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/sco/torbutton.properties
+++ b/src/chrome/locale/sco/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/sk/torbutton.properties b/src/chrome/locale/sk/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/sk/torbutton.properties
+++ b/src/chrome/locale/sk/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/sl/torbutton.properties b/src/chrome/locale/sl/torbutton.properties
index d239c1b..72a63f0 100644
--- a/src/chrome/locale/sl/torbutton.properties
+++ b/src/chrome/locale/sl/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (obvezno)
torbutton.popup.external.title = Naloži zunanje vsebine?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Zaženi program
torbutton.popup.cancel = Prekliči
torbutton.popup.dontask = Vedno zaženi program.
diff --git a/src/chrome/locale/so/torbutton.properties b/src/chrome/locale/so/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/so/torbutton.properties
+++ b/src/chrome/locale/so/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/son/torbutton.properties b/src/chrome/locale/son/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/son/torbutton.properties
+++ b/src/chrome/locale/son/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/sq/torbutton.properties b/src/chrome/locale/sq/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/sq/torbutton.properties
+++ b/src/chrome/locale/sq/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/sr/torbutton.properties b/src/chrome/locale/sr/torbutton.properties
index 5a98e20..af42627 100644
--- a/src/chrome/locale/sr/torbutton.properties
+++ b/src/chrome/locale/sr/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (пресудно)
torbutton.popup.external.title = Да ли желите да учитате спољни садржај?
torbutton.popup.external.app = Потребан је спољни програм за руковање:\n\n
torbutton.popup.external.note = \n\nНапомена: спољни програми не гарантују безбедност и могу Вас открити!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Покрени програм
torbutton.popup.cancel = Откажи
torbutton.popup.dontask = Увек покрећи програме од сада па надаље
diff --git a/src/chrome/locale/st/torbutton.properties b/src/chrome/locale/st/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/st/torbutton.properties
+++ b/src/chrome/locale/st/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/su/torbutton.properties b/src/chrome/locale/su/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/su/torbutton.properties
+++ b/src/chrome/locale/su/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/sv/torbutton.properties b/src/chrome/locale/sv/torbutton.properties
index 2758ae3..de09829 100644
--- a/src/chrome/locale/sv/torbutton.properties
+++ b/src/chrome/locale/sv/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (kritiskt)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Starta program
torbutton.popup.cancel = Avbryt
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/sw/torbutton.properties b/src/chrome/locale/sw/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/sw/torbutton.properties
+++ b/src/chrome/locale/sw/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/ta/torbutton.properties b/src/chrome/locale/ta/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/ta/torbutton.properties
+++ b/src/chrome/locale/ta/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/te/torbutton.properties b/src/chrome/locale/te/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/te/torbutton.properties
+++ b/src/chrome/locale/te/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/tg/torbutton.properties b/src/chrome/locale/tg/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/tg/torbutton.properties
+++ b/src/chrome/locale/tg/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/th/torbutton.properties b/src/chrome/locale/th/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/th/torbutton.properties
+++ b/src/chrome/locale/th/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/ti/torbutton.properties b/src/chrome/locale/ti/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/ti/torbutton.properties
+++ b/src/chrome/locale/ti/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/tk/torbutton.properties b/src/chrome/locale/tk/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/tk/torbutton.properties
+++ b/src/chrome/locale/tk/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/tr/torbutton.properties b/src/chrome/locale/tr/torbutton.properties
index f4025f8..a74fd3f 100644
--- a/src/chrome/locale/tr/torbutton.properties
+++ b/src/chrome/locale/tr/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial =
torbutton.popup.external.title =
torbutton.popup.external.app = Kullanmak için harici bir uygulama seç:\n\n
torbutton.popup.external.note = \n\nNOT: Başka bir uyguluma sizin için güvenli olmayabilir!\n\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Uygulamayı çalıştır\n
torbutton.popup.cancel = İptal\n
torbutton.popup.dontask = Şu andan itibaren uygulamayı sürekli çalıştır\r\n
diff --git a/src/chrome/locale/uk/torbutton.properties b/src/chrome/locale/uk/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/uk/torbutton.properties
+++ b/src/chrome/locale/uk/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/ur/torbutton.properties b/src/chrome/locale/ur/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/ur/torbutton.properties
+++ b/src/chrome/locale/ur/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/ve/torbutton.properties b/src/chrome/locale/ve/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/ve/torbutton.properties
+++ b/src/chrome/locale/ve/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/vi/torbutton.properties b/src/chrome/locale/vi/torbutton.properties
index 3d3b3d1..e3c6718 100644
--- a/src/chrome/locale/vi/torbutton.properties
+++ b/src/chrome/locale/vi/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (cấp thiết)
torbutton.popup.external.title = Nạp nội dung bên ngoài?
torbutton.popup.external.app = Một ứng dụng bên ngoài cần có để xử lý:\n\n
torbutton.popup.external.note = \n\nLƯU Ý: Các ứng dụng bên ngoài không an toàn cho Tor theo mặc định và có thể làm lộ chân tướng bạn!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Khởi chạy ứng dụng
torbutton.popup.cancel = Hủy bỏ
torbutton.popup.dontask = Luôn luôn khởi chạy các ứng dụng kể từ bây giờ
diff --git a/src/chrome/locale/wa/torbutton.properties b/src/chrome/locale/wa/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/wa/torbutton.properties
+++ b/src/chrome/locale/wa/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/wo/torbutton.properties b/src/chrome/locale/wo/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/wo/torbutton.properties
+++ b/src/chrome/locale/wo/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/zh-CN/torbutton.properties b/src/chrome/locale/zh-CN/torbutton.properties
index 22226db..23b1c29 100644
--- a/src/chrome/locale/zh-CN/torbutton.properties
+++ b/src/chrome/locale/zh-CN/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (重要)
torbutton.popup.external.title = 载入外部内容?
torbutton.popup.external.app = 需要外部程序来处理:\n\n
torbutton.popup.external.note = \n\n注意:Tor 不能使外部程序的访问安全,可能泄露您的身份!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = 启动程序
torbutton.popup.cancel = 取消
torbutton.popup.dontask = 此后总是启动程序
diff --git a/src/chrome/locale/zh-HK/torbutton.properties b/src/chrome/locale/zh-HK/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/zh-HK/torbutton.properties
+++ b/src/chrome/locale/zh-HK/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/zh-TW/torbutton.properties b/src/chrome/locale/zh-TW/torbutton.properties
index 6405783..0009dca 100644
--- a/src/chrome/locale/zh-TW/torbutton.properties
+++ b/src/chrome/locale/zh-TW/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
diff --git a/src/chrome/locale/zu/torbutton.properties b/src/chrome/locale/zu/torbutton.properties
index 4116270..2399f53 100644
--- a/src/chrome/locale/zu/torbutton.properties
+++ b/src/chrome/locale/zu/torbutton.properties
@@ -24,7 +24,7 @@ torbutton.prefs.crucial = (crucial)
torbutton.popup.external.title = Load external content?
torbutton.popup.external.app = An external application is needed to handle:\n\n
torbutton.popup.external.note = \n\nNOTE: External applications are NOT Tor safe by default and can unmask you!\n
-torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n
+torbutton.popup.external.suggest = \nIf this file is untrusted, you should either save it to view while offline or in a VM,\nor consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n
torbutton.popup.launch = Launch application
torbutton.popup.cancel = Cancel
torbutton.popup.dontask = Always launch applications from now on
1
0
commit e34e4818a9665987cc95ab39ff92ec11de4940dc
Author: Mike Perry <mikeperry-git(a)fscked.org>
Date: Fri Jul 1 17:29:37 2011 -0700
Bump version.
---
src/install.rdf | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/install.rdf b/src/install.rdf
index 0d4c9f7..f3451b6 100644
--- a/src/install.rdf
+++ b/src/install.rdf
@@ -6,7 +6,7 @@
<em:name>Torbutton</em:name>
<em:creator>Mike Perry & Kory Kirk</em:creator>
<em:id>{e0204bd5-9d31-402b-a99d-a6aa8ffebdca}</em:id>
- <em:version>1.4.0rc1-pre1</em:version>
+ <em:version>1.4.0</em:version>
<em:homepageURL>https://www.torproject.org/torbutton/</em:homepageURL>
<em:optionsURL>chrome://torbutton/content/preferences.xul</em:optionsURL>
<em:iconURL>chrome://torbutton/skin/tor.png</em:iconURL>
1
0

02 Jul '11
commit 626aa42be53464955b41c55535c489d2fe792162
Author: Mike Perry <mikeperry-git(a)fscked.org>
Date: Fri Jul 1 17:22:30 2011 -0700
These look like translations to me!
But what the hell do I know...
---
src/chrome/locale/af/torbutton.dtd | 7 ++
src/chrome/locale/ak/torbutton.dtd | 7 ++
src/chrome/locale/am/torbutton.dtd | 7 ++
src/chrome/locale/ar/torbutton.dtd | 57 +++++++-----
src/chrome/locale/arn/torbutton.dtd | 7 ++
src/chrome/locale/ast/torbutton.dtd | 7 ++
src/chrome/locale/az/torbutton.dtd | 7 ++
src/chrome/locale/be/torbutton.dtd | 7 ++
src/chrome/locale/bg/torbutton.dtd | 7 ++
src/chrome/locale/bn-IN/torbutton.dtd | 7 ++
src/chrome/locale/bn/torbutton.dtd | 7 ++
src/chrome/locale/bo/torbutton.dtd | 7 ++
src/chrome/locale/br/torbutton.dtd | 7 ++
src/chrome/locale/bs/torbutton.dtd | 7 ++
src/chrome/locale/ca/torbutton.dtd | 7 ++
src/chrome/locale/cs/torbutton.dtd | 7 ++
src/chrome/locale/csb/torbutton.dtd | 7 ++
src/chrome/locale/cy/torbutton.dtd | 7 ++
src/chrome/locale/cy/torbutton.properties | 18 ++--
src/chrome/locale/da/torbutton.dtd | 7 ++
src/chrome/locale/de/torbutton.dtd | 7 ++
src/chrome/locale/dz/torbutton.dtd | 7 ++
src/chrome/locale/el/torbutton.dtd | 7 ++
src/chrome/locale/eo/torbutton.dtd | 7 ++
src/chrome/locale/es/torbutton.dtd | 7 ++
src/chrome/locale/et/torbutton.dtd | 7 ++
src/chrome/locale/eu/torbutton.dtd | 7 ++
src/chrome/locale/fa/torbutton.dtd | 7 ++
src/chrome/locale/fa/torbutton.properties | 2 +-
src/chrome/locale/fi/torbutton.dtd | 7 ++
src/chrome/locale/fil/torbutton.dtd | 7 ++
src/chrome/locale/fo/torbutton.dtd | 7 ++
src/chrome/locale/fr/torbutton.dtd | 7 ++
src/chrome/locale/fur/torbutton.dtd | 7 ++
src/chrome/locale/fy/torbutton.dtd | 7 ++
src/chrome/locale/ga/torbutton.dtd | 7 ++
src/chrome/locale/gl/torbutton.dtd | 7 ++
src/chrome/locale/gu/torbutton.dtd | 7 ++
src/chrome/locale/gun/torbutton.dtd | 7 ++
src/chrome/locale/ha/torbutton.dtd | 7 ++
src/chrome/locale/he/torbutton.dtd | 7 ++
src/chrome/locale/hi/torbutton.dtd | 7 ++
src/chrome/locale/hr/torbutton.dtd | 7 ++
src/chrome/locale/ht/torbutton.dtd | 7 ++
src/chrome/locale/hu/torbutton.dtd | 7 ++
src/chrome/locale/hy/torbutton.dtd | 7 ++
src/chrome/locale/id/torbutton.dtd | 7 ++
src/chrome/locale/is/torbutton.dtd | 7 ++
src/chrome/locale/it/torbutton.dtd | 7 ++
src/chrome/locale/ja/torbutton.dtd | 7 ++
src/chrome/locale/jv/torbutton.dtd | 7 ++
src/chrome/locale/ka/torbutton.dtd | 7 ++
src/chrome/locale/km/torbutton.dtd | 7 ++
src/chrome/locale/kn/torbutton.dtd | 7 ++
src/chrome/locale/ko/torbutton.dtd | 7 ++
src/chrome/locale/ku/torbutton.dtd | 7 ++
src/chrome/locale/kw/torbutton.dtd | 7 ++
src/chrome/locale/ky/torbutton.dtd | 7 ++
src/chrome/locale/lb/torbutton.dtd | 7 ++
src/chrome/locale/ln/torbutton.dtd | 7 ++
src/chrome/locale/lo/torbutton.dtd | 7 ++
src/chrome/locale/lt/torbutton.dtd | 7 ++
src/chrome/locale/lv/torbutton.dtd | 7 ++
src/chrome/locale/mg/torbutton.dtd | 7 ++
src/chrome/locale/mi/torbutton.dtd | 7 ++
src/chrome/locale/mk/torbutton.dtd | 7 ++
src/chrome/locale/ml/torbutton.dtd | 7 ++
src/chrome/locale/mn/torbutton.dtd | 7 ++
src/chrome/locale/mr/torbutton.dtd | 7 ++
src/chrome/locale/ms/torbutton.dtd | 7 ++
src/chrome/locale/mt/torbutton.dtd | 7 ++
src/chrome/locale/my/torbutton.dtd | 7 ++
src/chrome/locale/nah/torbutton.dtd | 7 ++
src/chrome/locale/nap/torbutton.dtd | 7 ++
src/chrome/locale/nb/torbutton.dtd | 7 ++
src/chrome/locale/ne/torbutton.dtd | 7 ++
src/chrome/locale/nl/torbutton.dtd | 7 ++
src/chrome/locale/nn/torbutton.dtd | 7 ++
src/chrome/locale/nso/torbutton.dtd | 7 ++
src/chrome/locale/oc/torbutton.dtd | 7 ++
src/chrome/locale/or/torbutton.dtd | 7 ++
src/chrome/locale/pa/torbutton.dtd | 7 ++
src/chrome/locale/pap/torbutton.dtd | 7 ++
src/chrome/locale/pl/torbutton.dtd | 7 ++
src/chrome/locale/pl/torbutton.properties | 2 +-
src/chrome/locale/pms/torbutton.dtd | 7 ++
src/chrome/locale/ps/torbutton.dtd | 7 ++
src/chrome/locale/pt-BR/torbutton.dtd | 137 +++++++++++++++--------------
src/chrome/locale/pt/torbutton.dtd | 7 ++
src/chrome/locale/ro/torbutton.dtd | 7 ++
src/chrome/locale/ru/torbutton.dtd | 7 ++
src/chrome/locale/sco/torbutton.dtd | 7 ++
src/chrome/locale/sk/torbutton.dtd | 7 ++
src/chrome/locale/sl/torbutton.dtd | 7 ++
src/chrome/locale/so/torbutton.dtd | 7 ++
src/chrome/locale/son/torbutton.dtd | 7 ++
src/chrome/locale/sq/torbutton.dtd | 7 ++
src/chrome/locale/sr/torbutton.dtd | 7 ++
src/chrome/locale/st/torbutton.dtd | 7 ++
src/chrome/locale/su/torbutton.dtd | 7 ++
src/chrome/locale/sv/torbutton.dtd | 7 ++
src/chrome/locale/sw/torbutton.dtd | 7 ++
src/chrome/locale/ta/torbutton.dtd | 7 ++
src/chrome/locale/te/torbutton.dtd | 7 ++
src/chrome/locale/tg/torbutton.dtd | 7 ++
src/chrome/locale/th/torbutton.dtd | 7 ++
src/chrome/locale/ti/torbutton.dtd | 7 ++
src/chrome/locale/tk/torbutton.dtd | 7 ++
src/chrome/locale/tr/torbutton.dtd | 7 ++
src/chrome/locale/uk/torbutton.dtd | 37 +++++---
src/chrome/locale/ur/torbutton.dtd | 7 ++
src/chrome/locale/ve/torbutton.dtd | 7 ++
src/chrome/locale/vi/torbutton.dtd | 7 ++
src/chrome/locale/wa/torbutton.dtd | 7 ++
src/chrome/locale/wo/torbutton.dtd | 7 ++
src/chrome/locale/zh-CN/torbutton.dtd | 7 ++
src/chrome/locale/zh-HK/torbutton.dtd | 7 ++
src/chrome/locale/zh-TW/torbutton.dtd | 7 ++
src/chrome/locale/zu/torbutton.dtd | 7 ++
119 files changed, 928 insertions(+), 116 deletions(-)
diff --git a/src/chrome/locale/af/torbutton.dtd b/src/chrome/locale/af/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/af/torbutton.dtd
+++ b/src/chrome/locale/af/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/ak/torbutton.dtd b/src/chrome/locale/ak/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/ak/torbutton.dtd
+++ b/src/chrome/locale/ak/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/am/torbutton.dtd b/src/chrome/locale/am/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/am/torbutton.dtd
+++ b/src/chrome/locale/am/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/ar/torbutton.dtd b/src/chrome/locale/ar/torbutton.dtd
index 706bb0e..b9ad05a 100644
--- a/src/chrome/locale/ar/torbutton.dtd
+++ b/src/chrome/locale/ar/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "وسيط SOCKS:">
<!ENTITY torbutton.prefs.proxy.port "المنفذ:">
<!ENTITY torbutton.about.title "عن زر تور">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "عطل زر تور لتغيير هذه الإعدادات.">
<!ENTITY torbutton.pref_connection.more_info "مزيد من المعلومات">
<!ENTITY torbutton.pref_connection_more_info.title "التعليمات">
@@ -26,13 +33,13 @@
<!ENTITY torbutton.context_menu.preferences.key "ف">
<!ENTITY torbutton.context_menu.about "عن زر تور...">
<!ENTITY torbutton.context_menu.about.key "ح">
-<!ENTITY torbutton.context_menu.cookieProtections "Cookie Protections">
+<!ENTITY torbutton.context_menu.cookieProtections "كعكة الحماية">
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
-<!ENTITY torbutton.context_menu.copyTor "Copy Tor URL">
+<!ENTITY torbutton.context_menu.copyTor "نسخ رابط تور">
<!ENTITY torbutton.context_menu.copyTor.key "p">
-<!ENTITY torbutton.context_menu.openTorTab "Open Tor URL in new Tab">
+<!ENTITY torbutton.context_menu.openTorTab "فتح عنوان تور في علامة تبويب جديدة">
<!ENTITY torbutton.context_menu.openTorTab.key "r">
-<!ENTITY torbutton.context_menu.openTorWindow "Open Tor URL in new Window">
+<!ENTITY torbutton.context_menu.openTorWindow "فتح عنوان تور في نافذة جديدة">
<!ENTITY torbutton.context_menu.openTorWindow.key "d">
<!ENTITY torbutton.button.label "زر تور">
<!ENTITY torbutton.button.tooltip "انقر لبدء زر تور">
@@ -45,7 +52,7 @@
<!ENTITY torbutton.prefs.clear_cache "امنع الاختزان على القرص مع تور وامسح كل البيانات عند تبديل حالة تور">
<!ENTITY torbutton.prefs.block_cache "امنع الولوج إلى بيانات تور على القرص و الذاكرة أثناء عمل تور">
<!ENTITY torbutton.prefs.cookie_jars "احفظ كعكات سوى تور في وعاء آمن ">
-<!ENTITY torbutton.prefs.cookie_protection "Use the Cookie Protections Dialog to choose">
+<!ENTITY torbutton.prefs.cookie_protection "استخدام حوار كعكة الحماية للاختيار">
<!ENTITY torbutton.prefs.mmm_cookies "سأدير الكعكات يدويًا (حَرِج)">
<!ENTITY torbutton.prefs.clear_cookies "امسح الكعكات عند تبديل حالة تور">
<!ENTITY torbutton.prefs.disable_plugins "عطّل الملحقات أثناء عمل التور (حَرِج)">
@@ -65,9 +72,9 @@
<!ENTITY torbutton.prefs.disable_sessionstore "عطّل حفظ الجلسة (محبّذ)">
<!ENTITY torbutton.prefs.headers "الترويسات">
<!ENTITY torbutton.prefs.spoof_english "انتحل متصفحًا إنجليزيًا أمريكيًا">
-<!ENTITY torbutton.prefs.refererspoofing "Referer spoofing">
+<!ENTITY torbutton.prefs.refererspoofing "مرجعية خداعه">
<!ENTITY torbutton.prefs.spoofblank "Spoof blank referer during Tor usage (may break some sites)">
-<!ENTITY torbutton.prefs.smartspoof "Smart referer spoof during Tor usage (spoofs cross domain referers)">
+<!ENTITY torbutton.prefs.smartspoof "محاكاة ساخرة ذكية للتحويل أثناء عمل تور (سخرية المجال المرجعي المتقاطع)">
<!ENTITY torbutton.prefs.nospoof "No referer spoof during Tor usage (sends referers as normal)">
<!ENTITY torbutton.prefs.disable_domstorage "عطّل تخزين DOM أثناء عمل التور (حَرِج)">
<!ENTITY torbutton.prefs.forms "الإكمال التلقائي">
@@ -76,7 +83,7 @@
<!ENTITY torbutton.prefs.tor "التور">
<!ENTITY torbutton.prefs.non_tor "التور معطل">
<!ENTITY torbutton.prefs.restore_tor "خلال بدء استعادة الجلسة، اضبط حالة التور إلى:">
-<!ENTITY torbutton.prefs.startup_tor "On browser startup, set Tor state to:">
+<!ENTITY torbutton.prefs.startup_tor "عند بدء التشغيل المتصفح ، تعيين جالة تور إلى:">
<!ENTITY torbutton.prefs.reload_crashed_jar "أعد تحميل وعاء الكعكات/امسح الكعكات عند انهيار فيرفكس (محبّذ)">
<!ENTITY torbutton.prefs.dual_cookie_jars "احفظ الكعكات عن تفعيل تور وعند تعطيله في أوعية محمية (خطر)">
<!ENTITY torbutton.prefs.clear_http_auth "امسح جلسات المصادقة لـ HTTP (محبّذ)">
@@ -106,23 +113,23 @@
<!ENTITY torbutton.prefs.socks_vfive "SOCKS v5">
<!ENTITY torbutton.prefs.no_proxies_on "لا وسيط ل:">
<!ENTITY torbutton.prefs.no_proxy_warning "تحذير: تجنب استخدام أي من أسماء المضيف المذكورة أعلاه">
-<!ENTITY torbutton.prefs.spoofreresh "Spoof Refresh">
-<!ENTITY torbutton.prefs.refereroptions "Referer Spoofing Options">
-<!ENTITY torbutton.prefs.nospoof "Do not spoof referer">
-<!ENTITY torbutton.prefs.spoofroot "Spoof the containing folder of the page">
-<!ENTITY torbutton.prefs.spoofdomain "Spoof the domain as referer">
-<!ENTITY torbutton.prefs.spoofblank "Make referer blank">
-<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
-<!ENTITY torbutton.cookiedialog.lockCol "Protected">
-<!ENTITY torbutton.cookiedialog.domainCol "Host">
-<!ENTITY torbutton.cookiedialog.nameCol "Name">
-<!ENTITY torbutton.cookiedialog.pathCol "Path">
-<!ENTITY torbutton.cookiedialog.protectCookie "Protect Cookie">
-<!ENTITY torbutton.cookiedialog.removeCookie "Remove Cookie">
-<!ENTITY torbutton.cookiedialog.unprotectCookie "Unprotect Cookie">
-<!ENTITY torbutton.cookiedialog.removeAllBut "Remove All But Protected">
-<!ENTITY torbutton.cookiedialog.saveAllCookies "Protect New Cookies">
-<!ENTITY torbutton.cookiedialog.doNotSaveAllCookies "Do Not Protect New Cookies">
+<!ENTITY torbutton.prefs.spoofreresh "تحديث المحاكاة الساخرة">
+<!ENTITY torbutton.prefs.refereroptions "خيارات المرجعية الساخرة">
+<!ENTITY torbutton.prefs.nospoof "لا تستخدم محاكاة مرجعية ساخرة">
+<!ENTITY torbutton.prefs.spoofroot "محاكاة ساخرة المجلد الذي يحتوي على الصفحة">
+<!ENTITY torbutton.prefs.spoofdomain "محاكاة ساخرة المجال مثل المرجعية">
+<!ENTITY torbutton.prefs.spoofblank "إجعل المرجعية فارغة">
+<!ENTITY torbutton.cookiedialog.title "إدارة كعكات الحماية">
+<!ENTITY torbutton.cookiedialog.lockCol "محمية">
+<!ENTITY torbutton.cookiedialog.domainCol "استضافة">
+<!ENTITY torbutton.cookiedialog.nameCol "اسم">
+<!ENTITY torbutton.cookiedialog.pathCol "المسار">
+<!ENTITY torbutton.cookiedialog.protectCookie "كعكة الحماية">
+<!ENTITY torbutton.cookiedialog.removeCookie "إزالة الكعك">
+<!ENTITY torbutton.cookiedialog.unprotectCookie "إلغاء كعكة الحماية">
+<!ENTITY torbutton.cookiedialog.removeAllBut "إزالة الكل لكن استمر في الحماية">
+<!ENTITY torbutton.cookiedialog.saveAllCookies "كعكة حماية جديدة">
+<!ENTITY torbutton.cookiedialog.doNotSaveAllCookies "لا تحمي الكعكات الجديدة">
<!ENTITY torbutton.prefs.disable_livemarks "تعطيل العلامات الحية خلال إستعمال التور">
<!ENTITY torbutton.prefs.dtd_recommended "(محبّذ)">
<!ENTITY torbutton.prefs.dtd_optional "(اختياري)">
diff --git a/src/chrome/locale/arn/torbutton.dtd b/src/chrome/locale/arn/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/arn/torbutton.dtd
+++ b/src/chrome/locale/arn/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/ast/torbutton.dtd b/src/chrome/locale/ast/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/ast/torbutton.dtd
+++ b/src/chrome/locale/ast/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/az/torbutton.dtd b/src/chrome/locale/az/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/az/torbutton.dtd
+++ b/src/chrome/locale/az/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/be/torbutton.dtd b/src/chrome/locale/be/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/be/torbutton.dtd
+++ b/src/chrome/locale/be/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/bg/torbutton.dtd b/src/chrome/locale/bg/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/bg/torbutton.dtd
+++ b/src/chrome/locale/bg/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/bn-IN/torbutton.dtd b/src/chrome/locale/bn-IN/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/bn-IN/torbutton.dtd
+++ b/src/chrome/locale/bn-IN/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/bn/torbutton.dtd b/src/chrome/locale/bn/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/bn/torbutton.dtd
+++ b/src/chrome/locale/bn/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/bo/torbutton.dtd b/src/chrome/locale/bo/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/bo/torbutton.dtd
+++ b/src/chrome/locale/bo/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/br/torbutton.dtd b/src/chrome/locale/br/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/br/torbutton.dtd
+++ b/src/chrome/locale/br/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/bs/torbutton.dtd b/src/chrome/locale/bs/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/bs/torbutton.dtd
+++ b/src/chrome/locale/bs/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/ca/torbutton.dtd b/src/chrome/locale/ca/torbutton.dtd
index cf76234..dc0e66d 100644
--- a/src/chrome/locale/ca/torbutton.dtd
+++ b/src/chrome/locale/ca/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "Amfitrió SOCKS:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "Quant a Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "No permetis que Torbutton canvii aquesta configuració.">
<!ENTITY torbutton.pref_connection.more_info "Més informació">
<!ENTITY torbutton.pref_connection_more_info.title "Ajuda">
diff --git a/src/chrome/locale/cs/torbutton.dtd b/src/chrome/locale/cs/torbutton.dtd
index cea6b26..67a3920 100644
--- a/src/chrome/locale/cs/torbutton.dtd
+++ b/src/chrome/locale/cs/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "O Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Zakázat aplikaci Torbutton toto nastavení měnit.">
<!ENTITY torbutton.pref_connection.more_info "Více informací">
<!ENTITY torbutton.pref_connection_more_info.title "Nápověda">
diff --git a/src/chrome/locale/csb/torbutton.dtd b/src/chrome/locale/csb/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/csb/torbutton.dtd
+++ b/src/chrome/locale/csb/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/cy/torbutton.dtd b/src/chrome/locale/cy/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/cy/torbutton.dtd
+++ b/src/chrome/locale/cy/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/cy/torbutton.properties b/src/chrome/locale/cy/torbutton.properties
index 2399f53..5b838c3 100644
--- a/src/chrome/locale/cy/torbutton.properties
+++ b/src/chrome/locale/cy/torbutton.properties
@@ -1,18 +1,18 @@
-torbutton.button.tooltip.disabled = Enable Tor
-torbutton.button.tooltip.enabled = Disable Tor
-torbutton.panel.tooltip.disabled = Click to enable Tor
-torbutton.panel.tooltip.enabled = Click to disable Tor
-torbutton.panel.plugins.disabled = Click to enable plugins
-torbutton.panel.plugins.enabled = Click to disable plugins
-torbutton.panel.label.disabled = Tor Disabled
-torbutton.panel.label.enabled = Tor Enabled
+torbutton.button.tooltip.disabled = Galluogi Tor
+torbutton.button.tooltip.enabled = Analluoga Tor
+torbutton.panel.tooltip.disabled = Cliciwch i alluogi Tor
+torbutton.panel.tooltip.enabled = Cliciwch i analluogu Tor
+torbutton.panel.plugins.disabled = Cliciwch i alluogi plugins
+torbutton.panel.plugins.enabled = Cliciwch i analluogi plugins
+torbutton.panel.label.disabled = Tor Anabl
+torbutton.panel.label.enabled = Tor Galluog
extensions.{e0204bd5-9d31-402b-a99d-a6aa8ffebdca}.description = Torbutton provides a button to easily enable or disable pointing Firefox to the Tor proxy
torbutton.popup.history.warning = Torbutton blocked activity from a tab loaded in a different Tor state.\n\nThis is to work around Firefox Bugs 409737 and 417869.\n\nIf this popup seemed to happen for no reason, one of your tabs is attempting to reload itself in the background, and this was blocked.\n\nTo reload the tab in this Tor state, hit 'enter' in the URL location box.\n\n
torbutton.popup.plugin.warning = Torbutton blocked direct Tor load of plugin content.\n\nUse Save-As instead.\n\n
torbutton.popup.confirm_ca_certs = Torbutton Note: It appears you have no custom Certificate Authorities. Examining the Certificate Authority list is a slow operation and slows down Tor toggle. Would you like to disable the isolation of Certificate Authority certificates? (If you don't understand this, it is safe to click OK)
torbutton.popup.ff3.warning = Warning!\n\nTorbutton on Firefox 3 is known to leak your timezone and livemarks via Tor.\n\nDo you wish to continue anyway?
torbutton.popup.toggle.warning = You need to toggle Tor or restart for your settings to take effect.
-torbutton.popup.test.success = Tor proxy test successful!
+torbutton.popup.test.success = Prawf procsi Tor llwyddiannus!
torbutton.popup.test.failure = Tor proxy test FAILED! Check your proxy and Polipo settings.
torbutton.popup.test.confirm_toggle = The most recent Tor proxy test failed to use Tor.\n\nAre you sure you want to enable anyway?\n\nNote: If you have fixed the problem, you can rerun the test in the Torbutton Proxy Preferences window to eliminate this warning.
torbutton.popup.test.ff3_notice = Click OK to test Tor proxy settings. This test will happen in the background. Please be patient.
diff --git a/src/chrome/locale/da/torbutton.dtd b/src/chrome/locale/da/torbutton.dtd
index 1508492..577d7b9 100644
--- a/src/chrome/locale/da/torbutton.dtd
+++ b/src/chrome/locale/da/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "Om Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Deaktiver Torbutton for at ændre disse indstillinger.">
<!ENTITY torbutton.pref_connection.more_info "Mere Information">
<!ENTITY torbutton.pref_connection_more_info.title "Hjælp">
diff --git a/src/chrome/locale/de/torbutton.dtd b/src/chrome/locale/de/torbutton.dtd
index 0a18258..7a0f195 100644
--- a/src/chrome/locale/de/torbutton.dtd
+++ b/src/chrome/locale/de/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS-Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "Über Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Deaktivieren Sie Torbutton, um diese Einstellungen zu verändern.">
<!ENTITY torbutton.pref_connection.more_info "Mehr Informationen">
<!ENTITY torbutton.pref_connection_more_info.title "Hilfe">
diff --git a/src/chrome/locale/dz/torbutton.dtd b/src/chrome/locale/dz/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/dz/torbutton.dtd
+++ b/src/chrome/locale/dz/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/el/torbutton.dtd b/src/chrome/locale/el/torbutton.dtd
index 721a786..0b7bee3 100644
--- a/src/chrome/locale/el/torbutton.dtd
+++ b/src/chrome/locale/el/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "Κεντρικός υπολογιστής SOCKS :">
<!ENTITY torbutton.prefs.proxy.port "Θύρα :">
<!ENTITY torbutton.about.title "Περί Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Απενεργοποιήστε το Torbutton για να αλλάξετε αυτές τις ρυθμίσεις.">
<!ENTITY torbutton.pref_connection.more_info "Περισσότερες πληροφορίες">
<!ENTITY torbutton.pref_connection_more_info.title "Βοήθεια">
diff --git a/src/chrome/locale/eo/torbutton.dtd b/src/chrome/locale/eo/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/eo/torbutton.dtd
+++ b/src/chrome/locale/eo/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/es/torbutton.dtd b/src/chrome/locale/es/torbutton.dtd
index 35c8ca0..0a4b8c1 100644
--- a/src/chrome/locale/es/torbutton.dtd
+++ b/src/chrome/locale/es/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "Host SOCKS:">
<!ENTITY torbutton.prefs.proxy.port "Puerto:">
<!ENTITY torbutton.about.title "Acerca de Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Desactive Torbutton para cambiar esta configuración.">
<!ENTITY torbutton.pref_connection.more_info "Más información">
<!ENTITY torbutton.pref_connection_more_info.title "Ayuda">
diff --git a/src/chrome/locale/et/torbutton.dtd b/src/chrome/locale/et/torbutton.dtd
index cf24907..252d5d4 100644
--- a/src/chrome/locale/et/torbutton.dtd
+++ b/src/chrome/locale/et/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/eu/torbutton.dtd b/src/chrome/locale/eu/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/eu/torbutton.dtd
+++ b/src/chrome/locale/eu/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/fa/torbutton.dtd b/src/chrome/locale/fa/torbutton.dtd
index 818f074..20b890b 100644
--- a/src/chrome/locale/fa/torbutton.dtd
+++ b/src/chrome/locale/fa/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "ميزبان SOCKS:">
<!ENTITY torbutton.prefs.proxy.port "درگاهی (Port):">
<!ENTITY torbutton.about.title "دربارۀ دکمه تُر">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "غيرفعال کردن دکمه تُر جهت تغيير دراين تنظيمات.">
<!ENTITY torbutton.pref_connection.more_info "اطلاعات بيشتر">
<!ENTITY torbutton.pref_connection_more_info.title "راهنما">
diff --git a/src/chrome/locale/fa/torbutton.properties b/src/chrome/locale/fa/torbutton.properties
index 7f3c630..6cae6d2 100644
--- a/src/chrome/locale/fa/torbutton.properties
+++ b/src/chrome/locale/fa/torbutton.properties
@@ -34,4 +34,4 @@ torbutton.popup.captcha.ask = Torbutton detected a Google Captcha. Would you lik
torbutton.popup.captcha.always = از حالا به بعد هر برنامه ای را اجرا کن
torbutton.popup.redirect = تغيير مسير....
torbutton.popup.no_redirect = تغيير مسير ممكن نيست
-torbutton.popup.prompted_language = To give you more privacy, Torbutton can request the English language version of web pages. This may cause web pages that you prefer to read in your native language to display in English instead.\n\nWould you like to request English language web pages for better privacy?
+torbutton.popup.prompted_language = برای حفاظت بيشتر از حريم خصوصی شما، دکمه تُر میتواند نسخه انگليسی صفحات وب را درخواست کند. اين موضوع ممکن است باعث شود صفحههایی که دوست داريد به زبان مادری خود بخوانيد به انگليسی نمايش داده شوند.\n\nآيا با اين وجود میخواهيد برای حفاظت بيشتر از حريم خصوصی درخواست نسخه انگليسی صفحات را بدهيد؟
diff --git a/src/chrome/locale/fi/torbutton.dtd b/src/chrome/locale/fi/torbutton.dtd
index 67cedef..5939e60 100644
--- a/src/chrome/locale/fi/torbutton.dtd
+++ b/src/chrome/locale/fi/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS-palvelin:">
<!ENTITY torbutton.prefs.proxy.port "Portti:">
<!ENTITY torbutton.about.title "Tietoja Torbuttonista">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Poista Torbutton käytöstä muuttaaksesi asetuksia.">
<!ENTITY torbutton.pref_connection.more_info "Lisää tietoja">
<!ENTITY torbutton.pref_connection_more_info.title "Apua">
diff --git a/src/chrome/locale/fil/torbutton.dtd b/src/chrome/locale/fil/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/fil/torbutton.dtd
+++ b/src/chrome/locale/fil/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/fo/torbutton.dtd b/src/chrome/locale/fo/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/fo/torbutton.dtd
+++ b/src/chrome/locale/fo/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/fr/torbutton.dtd b/src/chrome/locale/fr/torbutton.dtd
index 95e72a7..164a0e2 100644
--- a/src/chrome/locale/fr/torbutton.dtd
+++ b/src/chrome/locale/fr/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "Hôte SOCKS:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "À propos de Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Désactiver Torbutton pour modifier ces paramètres.">
<!ENTITY torbutton.pref_connection.more_info "Plus d'informations">
<!ENTITY torbutton.pref_connection_more_info.title "Aide">
diff --git a/src/chrome/locale/fur/torbutton.dtd b/src/chrome/locale/fur/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/fur/torbutton.dtd
+++ b/src/chrome/locale/fur/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/fy/torbutton.dtd b/src/chrome/locale/fy/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/fy/torbutton.dtd
+++ b/src/chrome/locale/fy/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/ga/torbutton.dtd b/src/chrome/locale/ga/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/ga/torbutton.dtd
+++ b/src/chrome/locale/ga/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/gl/torbutton.dtd b/src/chrome/locale/gl/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/gl/torbutton.dtd
+++ b/src/chrome/locale/gl/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/gu/torbutton.dtd b/src/chrome/locale/gu/torbutton.dtd
index 8ecadcf..c7012bd 100644
--- a/src/chrome/locale/gu/torbutton.dtd
+++ b/src/chrome/locale/gu/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS યજમાન:">
<!ENTITY torbutton.prefs.proxy.port "પોર્ટ:">
<!ENTITY torbutton.about.title "ટોરબટન વિશે">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "આ ગોઠવણીઓ બદલવા માટે ટોરબટન નિષ્ક્રિય કરો.">
<!ENTITY torbutton.pref_connection.more_info "વધુ માહિતી">
<!ENTITY torbutton.pref_connection_more_info.title "મદદ">
diff --git a/src/chrome/locale/gun/torbutton.dtd b/src/chrome/locale/gun/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/gun/torbutton.dtd
+++ b/src/chrome/locale/gun/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/ha/torbutton.dtd b/src/chrome/locale/ha/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/ha/torbutton.dtd
+++ b/src/chrome/locale/ha/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/he/torbutton.dtd b/src/chrome/locale/he/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/he/torbutton.dtd
+++ b/src/chrome/locale/he/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/hi/torbutton.dtd b/src/chrome/locale/hi/torbutton.dtd
index a70f4fb..9fd7f08 100644
--- a/src/chrome/locale/hi/torbutton.dtd
+++ b/src/chrome/locale/hi/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS आतिथेय :">
<!ENTITY torbutton.prefs.proxy.port "पोर्ट/द्वार :">
<!ENTITY torbutton.about.title "टोर बटन के बारे मे">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "इन सेटिंग को बदलने के लिये टोर बटन को असमर्थ करे ">
<!ENTITY torbutton.pref_connection.more_info "अधिक जानकारी के लिए ">
<!ENTITY torbutton.pref_connection_more_info.title "सहायता">
diff --git a/src/chrome/locale/hr/torbutton.dtd b/src/chrome/locale/hr/torbutton.dtd
index 43453a2..46ea7a7 100644
--- a/src/chrome/locale/hr/torbutton.dtd
+++ b/src/chrome/locale/hr/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS domaćin:">
<!ENTITY torbutton.prefs.proxy.port "Priključak:">
<!ENTITY torbutton.about.title "O Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Onemogućite Torbutton da biste promijenili ove postavke">
<!ENTITY torbutton.pref_connection.more_info "Više informacija">
<!ENTITY torbutton.pref_connection_more_info.title "Pomoć">
diff --git a/src/chrome/locale/ht/torbutton.dtd b/src/chrome/locale/ht/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/ht/torbutton.dtd
+++ b/src/chrome/locale/ht/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/hu/torbutton.dtd b/src/chrome/locale/hu/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/hu/torbutton.dtd
+++ b/src/chrome/locale/hu/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/hy/torbutton.dtd b/src/chrome/locale/hy/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/hy/torbutton.dtd
+++ b/src/chrome/locale/hy/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/id/torbutton.dtd b/src/chrome/locale/id/torbutton.dtd
index 9a92bd2..f8786b8 100644
--- a/src/chrome/locale/id/torbutton.dtd
+++ b/src/chrome/locale/id/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "Tentang Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Nonaktifkan Torbutton mengubah pengaturan ini.">
<!ENTITY torbutton.pref_connection.more_info "Informasi lebih lanjut">
<!ENTITY torbutton.pref_connection_more_info.title "Bantuan">
diff --git a/src/chrome/locale/is/torbutton.dtd b/src/chrome/locale/is/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/is/torbutton.dtd
+++ b/src/chrome/locale/is/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/it/torbutton.dtd b/src/chrome/locale/it/torbutton.dtd
index 2d64d16..9d00a6a 100644
--- a/src/chrome/locale/it/torbutton.dtd
+++ b/src/chrome/locale/it/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "Host SOCKS:">
<!ENTITY torbutton.prefs.proxy.port "Porta:">
<!ENTITY torbutton.about.title "Informazioni su Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disattiva Torbutton per modificare queste impostazioni">
<!ENTITY torbutton.pref_connection.more_info "Ulteriori informazioni">
<!ENTITY torbutton.pref_connection_more_info.title "Aiuto">
diff --git a/src/chrome/locale/ja/torbutton.dtd b/src/chrome/locale/ja/torbutton.dtd
index fc95178..cae640f 100644
--- a/src/chrome/locale/ja/torbutton.dtd
+++ b/src/chrome/locale/ja/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKSホスト">
<!ENTITY torbutton.prefs.proxy.port "ポート">
<!ENTITY torbutton.about.title "Torbuttonについて">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "これらの設定を変更するにはTorbuttonをオフにしてください">
<!ENTITY torbutton.pref_connection.more_info "詳細情報">
<!ENTITY torbutton.pref_connection_more_info.title "ヘルプ">
diff --git a/src/chrome/locale/jv/torbutton.dtd b/src/chrome/locale/jv/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/jv/torbutton.dtd
+++ b/src/chrome/locale/jv/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/ka/torbutton.dtd b/src/chrome/locale/ka/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/ka/torbutton.dtd
+++ b/src/chrome/locale/ka/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/km/torbutton.dtd b/src/chrome/locale/km/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/km/torbutton.dtd
+++ b/src/chrome/locale/km/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/kn/torbutton.dtd b/src/chrome/locale/kn/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/kn/torbutton.dtd
+++ b/src/chrome/locale/kn/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/ko/torbutton.dtd b/src/chrome/locale/ko/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/ko/torbutton.dtd
+++ b/src/chrome/locale/ko/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/ku/torbutton.dtd b/src/chrome/locale/ku/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/ku/torbutton.dtd
+++ b/src/chrome/locale/ku/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/kw/torbutton.dtd b/src/chrome/locale/kw/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/kw/torbutton.dtd
+++ b/src/chrome/locale/kw/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/ky/torbutton.dtd b/src/chrome/locale/ky/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/ky/torbutton.dtd
+++ b/src/chrome/locale/ky/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/lb/torbutton.dtd b/src/chrome/locale/lb/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/lb/torbutton.dtd
+++ b/src/chrome/locale/lb/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/ln/torbutton.dtd b/src/chrome/locale/ln/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/ln/torbutton.dtd
+++ b/src/chrome/locale/ln/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/lo/torbutton.dtd b/src/chrome/locale/lo/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/lo/torbutton.dtd
+++ b/src/chrome/locale/lo/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/lt/torbutton.dtd b/src/chrome/locale/lt/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/lt/torbutton.dtd
+++ b/src/chrome/locale/lt/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/lv/torbutton.dtd b/src/chrome/locale/lv/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/lv/torbutton.dtd
+++ b/src/chrome/locale/lv/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/mg/torbutton.dtd b/src/chrome/locale/mg/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/mg/torbutton.dtd
+++ b/src/chrome/locale/mg/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/mi/torbutton.dtd b/src/chrome/locale/mi/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/mi/torbutton.dtd
+++ b/src/chrome/locale/mi/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/mk/torbutton.dtd b/src/chrome/locale/mk/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/mk/torbutton.dtd
+++ b/src/chrome/locale/mk/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/ml/torbutton.dtd b/src/chrome/locale/ml/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/ml/torbutton.dtd
+++ b/src/chrome/locale/ml/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/mn/torbutton.dtd b/src/chrome/locale/mn/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/mn/torbutton.dtd
+++ b/src/chrome/locale/mn/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/mr/torbutton.dtd b/src/chrome/locale/mr/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/mr/torbutton.dtd
+++ b/src/chrome/locale/mr/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/ms/torbutton.dtd b/src/chrome/locale/ms/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/ms/torbutton.dtd
+++ b/src/chrome/locale/ms/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/mt/torbutton.dtd b/src/chrome/locale/mt/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/mt/torbutton.dtd
+++ b/src/chrome/locale/mt/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/my/torbutton.dtd b/src/chrome/locale/my/torbutton.dtd
index 8184994..3384653 100644
--- a/src/chrome/locale/my/torbutton.dtd
+++ b/src/chrome/locale/my/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host :">
<!ENTITY torbutton.prefs.proxy.port "Port :">
<!ENTITY torbutton.about.title "Torbutton အေၾကာင္း">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "၄င္းခ်ိန္ညႇိခ်က္မ်ားကို ေျပာင္းလဲရန္အတြက္ Torbutton ကုိ ပိတ္ထားရန္">
<!ENTITY torbutton.pref_connection.more_info "ပိုမုိျပည့္စံုေသာ သတင္းအခ်က္အလက္မ်ားသို႕">
<!ENTITY torbutton.pref_connection_more_info.title "ကူညီမႈရယူရန္">
diff --git a/src/chrome/locale/nah/torbutton.dtd b/src/chrome/locale/nah/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/nah/torbutton.dtd
+++ b/src/chrome/locale/nah/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/nap/torbutton.dtd b/src/chrome/locale/nap/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/nap/torbutton.dtd
+++ b/src/chrome/locale/nap/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/nb/torbutton.dtd b/src/chrome/locale/nb/torbutton.dtd
index ba5b125..49afd12 100644
--- a/src/chrome/locale/nb/torbutton.dtd
+++ b/src/chrome/locale/nb/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS-vert:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "Om Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Deaktiver Torbutton for å endre på disse innstillingene.">
<!ENTITY torbutton.pref_connection.more_info "Mer informasjon">
<!ENTITY torbutton.pref_connection_more_info.title "Hjelp">
diff --git a/src/chrome/locale/ne/torbutton.dtd b/src/chrome/locale/ne/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/ne/torbutton.dtd
+++ b/src/chrome/locale/ne/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/nl/torbutton.dtd b/src/chrome/locale/nl/torbutton.dtd
index 7c2772c..383a212 100644
--- a/src/chrome/locale/nl/torbutton.dtd
+++ b/src/chrome/locale/nl/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS host:">
<!ENTITY torbutton.prefs.proxy.port "Poort:">
<!ENTITY torbutton.about.title "Over Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Torbutton dient uitgeschakeld te worden om deze instellingen te kunnen wijzigen.">
<!ENTITY torbutton.pref_connection.more_info "Meer informatie">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/nn/torbutton.dtd b/src/chrome/locale/nn/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/nn/torbutton.dtd
+++ b/src/chrome/locale/nn/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/nso/torbutton.dtd b/src/chrome/locale/nso/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/nso/torbutton.dtd
+++ b/src/chrome/locale/nso/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/oc/torbutton.dtd b/src/chrome/locale/oc/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/oc/torbutton.dtd
+++ b/src/chrome/locale/oc/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/or/torbutton.dtd b/src/chrome/locale/or/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/or/torbutton.dtd
+++ b/src/chrome/locale/or/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/pa/torbutton.dtd b/src/chrome/locale/pa/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/pa/torbutton.dtd
+++ b/src/chrome/locale/pa/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/pap/torbutton.dtd b/src/chrome/locale/pap/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/pap/torbutton.dtd
+++ b/src/chrome/locale/pap/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/pl/torbutton.dtd b/src/chrome/locale/pl/torbutton.dtd
index 4b6e219..b947be3 100644
--- a/src/chrome/locale/pl/torbutton.dtd
+++ b/src/chrome/locale/pl/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "Host SOCKS:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "O Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Aby zmienić te ustawienia wyłącz Torbutton.">
<!ENTITY torbutton.pref_connection.more_info "Więcej informacji">
<!ENTITY torbutton.pref_connection_more_info.title "Pomoc">
diff --git a/src/chrome/locale/pl/torbutton.properties b/src/chrome/locale/pl/torbutton.properties
index a950dfd..ceb7214 100644
--- a/src/chrome/locale/pl/torbutton.properties
+++ b/src/chrome/locale/pl/torbutton.properties
@@ -34,4 +34,4 @@ torbutton.popup.captcha.ask = Torbutton wykrył Google Captcha. Czy chcesz, aby
torbutton.popup.captcha.always = Od teraz zawsze wykonuj tę akcję
torbutton.popup.redirect = Przekieruj
torbutton.popup.no_redirect = Nie przekierowywuj
-torbutton.popup.prompted_language = To give you more privacy, Torbutton can request the English language version of web pages. This may cause web pages that you prefer to read in your native language to display in English instead.\n\nWould you like to request English language web pages for better privacy?
+torbutton.popup.prompted_language = Aby dać Ci więcej prywatności, Torbutton może żądać angielskich wersji stron internetowych. To może spowodować, że strony, które wolisz czytać we własnym języku będą się zamiast tego wyświetlać po angielsku.\n\nCzy chcesz żądać stron w języku angielskim dla lepszej prywatności?
diff --git a/src/chrome/locale/pms/torbutton.dtd b/src/chrome/locale/pms/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/pms/torbutton.dtd
+++ b/src/chrome/locale/pms/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/ps/torbutton.dtd b/src/chrome/locale/ps/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/ps/torbutton.dtd
+++ b/src/chrome/locale/ps/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/pt-BR/torbutton.dtd b/src/chrome/locale/pt-BR/torbutton.dtd
index 99dfd4c..0fe5977 100644
--- a/src/chrome/locale/pt-BR/torbutton.dtd
+++ b/src/chrome/locale/pt-BR/torbutton.dtd
@@ -1,92 +1,99 @@
-<!ENTITY torbutton.prefs.title "Preferências Torbutton">
-<!ENTITY torbutton.prefs.display_settings "Mostrar configurações">
-<!ENTITY torbutton.prefs.display_panel "Mostrar configurações do proxy Tor na barra de status">
-<!ENTITY torbutton.prefs.panel_format "Formato de amostra da barra de status">
+<!ENTITY torbutton.prefs.title "Configurações do Botão do Tor">
+<!ENTITY torbutton.prefs.display_settings "Exibir Configurações">
+<!ENTITY torbutton.prefs.display_panel "Exibir as configurações de proxy do Tor na barra de status">
+<!ENTITY torbutton.prefs.panel_format "Formato de exibição da barra de status:">
<!ENTITY torbutton.prefs.panel_text_format "Texto">
<!ENTITY torbutton.prefs.panel_icon_format "Ícone">
-<!ENTITY torbutton.prefs.tor_settings "Configurações Proxy">
-<!ENTITY torbutton.prefs.recommended_settings "Usar as cinfigurações recomendadas de proxy para minha versão de Firefox">
-<!ENTITY torbutton.prefs.use_privoxy "Usar Privoxy">
-<!ENTITY torbutton.prefs.use_polipo "Usar Polipo">
-<!ENTITY torbutton.prefs.custom_settings "Usar configurações padrão de proxy">
-<!ENTITY torbutton.prefs.proxy.host.http "Proxy HTTP:">
-<!ENTITY torbutton.prefs.proxy.host.https "Proxy SSL:">
-<!ENTITY torbutton.prefs.proxy.host.ftp "Proxy FTP:">
-<!ENTITY torbutton.prefs.proxy.host.gopher "Proxy Gopher:">
-<!ENTITY torbutton.prefs.proxy.host.socks "Host SOCKS:">
+<!ENTITY torbutton.prefs.tor_settings "Configurações de Proxy">
+<!ENTITY torbutton.prefs.recommended_settings "Usar as configurações de proxy recomendadas para a minha versão de Firefox">
+<!ENTITY torbutton.prefs.use_privoxy "Usar o Privoxy">
+<!ENTITY torbutton.prefs.use_polipo "Usar o Polipo">
+<!ENTITY torbutton.prefs.custom_settings "Usar configurações de proxy personalizadas">
+<!ENTITY torbutton.prefs.proxy.host.http "Proxy para HTTP:">
+<!ENTITY torbutton.prefs.proxy.host.https "Proxy para SSL:">
+<!ENTITY torbutton.prefs.proxy.host.ftp "Proxy para FTP:">
+<!ENTITY torbutton.prefs.proxy.host.gopher "Proxy para Gopher:">
+<!ENTITY torbutton.prefs.proxy.host.socks "Host para SOCKS:">
<!ENTITY torbutton.prefs.proxy.port "Porta:">
-<!ENTITY torbutton.about.title "Sobre Torbutton">
-<!ENTITY torbutton.pref_connection.notice "Desabilitar Torbutton para mudar essas configurações.">
+<!ENTITY torbutton.about.title "Sobre o Botão do Tor">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
+<!ENTITY torbutton.pref_connection.notice "Desabilitar o Botão do Tor para alterar essas configurações.">
<!ENTITY torbutton.pref_connection.more_info "Mais informações">
<!ENTITY torbutton.pref_connection_more_info.title "Ajuda">
-<!ENTITY torbutton.pref_connection_more_info.text "Torbutton está habilitado. Se você deseja mudar as configurações de Proxy que não sejam do Tor, por favor desabilite Torbutton e retorne aqui. Se você deseja mudar as configurações do Tor, por favor, use a janela de preferência do Torbutton.">
-<!ENTITY torbutton.context_menu.toggle "Alterar Status Tor">
+<!ENTITY torbutton.pref_connection_more_info.text "O Botão do Tor está habilitado. Se deseja alterar as configurações de proxy não relacionadas ao Tor, por favor desabilite o Botão do Tor e retorne aqui. Se você deseja alterar as configurações do Tor, por favor use a janela de configurações do Botão do Tor.">
+<!ENTITY torbutton.context_menu.toggle "Alternar o Status do Tor">
<!ENTITY torbutton.context_menu.toggle.key "T">
-<!ENTITY torbutton.context_menu.preferences "Preferências...">
+<!ENTITY torbutton.context_menu.preferences "Configurações...">
<!ENTITY torbutton.context_menu.preferences.key "P">
-<!ENTITY torbutton.context_menu.about "Sobre Torbutton...">
+<!ENTITY torbutton.context_menu.about "Sobre o Botão do Tor...">
<!ENTITY torbutton.context_menu.about.key "A">
-<!ENTITY torbutton.context_menu.cookieProtections "Proteções de Cookies">
+<!ENTITY torbutton.context_menu.cookieProtections "Proteções para Cookies">
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
-<!ENTITY torbutton.context_menu.copyTor "Copiar URL do Tor">
+<!ENTITY torbutton.context_menu.copyTor "Copiar a URL do Tor">
<!ENTITY torbutton.context_menu.copyTor.key "p">
-<!ENTITY torbutton.context_menu.openTorTab "Abrir URL do Tor em uma nova Aba">
+<!ENTITY torbutton.context_menu.openTorTab "Abrir a URL do Tor em uma nova Aba">
<!ENTITY torbutton.context_menu.openTorTab.key "r">
-<!ENTITY torbutton.context_menu.openTorWindow "Abrir URL do Tor em uma nova Janela">
+<!ENTITY torbutton.context_menu.openTorWindow "Abrir a URL do Tor em uma nova Janela">
<!ENTITY torbutton.context_menu.openTorWindow.key "d">
-<!ENTITY torbutton.button.label "Torbutton">
-<!ENTITY torbutton.button.tooltip "Clique para iniciar Torbutton">
+<!ENTITY torbutton.button.label "Botão do Tor">
+<!ENTITY torbutton.button.tooltip "Clique para iniciar o Botão do Tor">
<!ENTITY torbutton.prefs.sec_settings "Configurações de Segurança">
-<!ENTITY torbutton.prefs.block_thread "Bloquear leitura do histórico durante a utilização do TOR (importante)">
-<!ENTITY torbutton.prefs.block_thwrite "Bloquear escrita no histórico durante a utilização do TOR (recomendado)">
-<!ENTITY torbutton.prefs.block_nthread "Bloquear leitura do histórico durante a não utilização do TOR (opcional)">
-<!ENTITY torbutton.prefs.block_nthwrite "Bloquear escrita no histórico durante a não utilização do TOR (opcional)">
-<!ENTITY torbutton.prefs.clear_history "Limpar histórico ao alternar o uso do TOR (opcional)">
-<!ENTITY torbutton.prefs.clear_cache "Bloquear o cache de disco e limpar todos os caches ao alterar o uso do TOR">
-<!ENTITY torbutton.prefs.block_cache "Bloquear cache de memória e disco durante o uso do TOR">
-<!ENTITY torbutton.prefs.cookie_jars "Armazenar todos os cookies não-Tor num contêiner protegido">
-<!ENTITY torbutton.prefs.cookie_protection "Usar a Caixa de Diálogo de Proteções de Cookies para selecionar">
-<!ENTITY torbutton.prefs.mmm_cookies "I manualmente gerenciarei meus cookies (atenção)">
-<!ENTITY torbutton.prefs.clear_cookies "Limpar cookies quando alternar TOR">
-<!ENTITY torbutton.prefs.disable_plugins "Desabilitar plugins durante o uso do TOR (importante)">
-<!ENTITY torbutton.prefs.kill_bad_js "Deter os scripts perigosos de java (crucial)">
-<!ENTITY torbutton.prefs.isolate_content "Isolar os conteúdos dinâmicos no arquivo de estado de Tor (crucial)">
+<!ENTITY torbutton.prefs.block_thread "Bloquear leituras do histórico durante a utilização do Tor (importante)">
+<!ENTITY torbutton.prefs.block_thwrite "Bloquear escritas no histórico durante a utilização do Tor (recomendado)">
+<!ENTITY torbutton.prefs.block_nthread "Bloquear leituras do histórico quando não estiver utilizando o Tor (opcional)">
+<!ENTITY torbutton.prefs.block_nthwrite "Bloquear escritas no histórico quando não estiver utilizando o Tor (opcional)">
+<!ENTITY torbutton.prefs.clear_history "Limpar histórico ao alternar o status do Tor (opcional)">
+<!ENTITY torbutton.prefs.clear_cache "Bloquear o cache de disco do Tor e limpar todos os caches ao alternar o status do Tor">
+<!ENTITY torbutton.prefs.block_cache "Bloquear o acesso ao cache de memória e de disco durante o uso do Tor">
+<!ENTITY torbutton.prefs.cookie_jars "Armazenar todos os cookies não relacionados ao Tor num jar protegido">
+<!ENTITY torbutton.prefs.cookie_protection "Usar a caixa de diálogo Proteções para Cookies para selecionar">
+<!ENTITY torbutton.prefs.mmm_cookies "Desejo gerenciar meus cookies manualmente (perigoso)">
+<!ENTITY torbutton.prefs.clear_cookies "Limpar cookies ao alternar o status do Tor">
+<!ENTITY torbutton.prefs.disable_plugins "Desabilitar complementos durante o uso do Tor (importante)">
+<!ENTITY torbutton.prefs.kill_bad_js "Bloquear os códigos javascript perigosos (importante)">
+<!ENTITY torbutton.prefs.isolate_content "Isolar os conteúdos dinâmicos ao status atual do Tor (importante)">
<!ENTITY torbutton.prefs.no_updates "Desabilitar atualizações durante o uso do Tor">
-<!ENTITY torbutton.prefs.set_uagent "Mascarar user agent durante utilização de TOR (importante)">
+<!ENTITY torbutton.prefs.set_uagent "Definir o user agent para o uso do Tor (importante)">
<!ENTITY torbutton.prefs.dynamic "Conteúdo Dinâmico">
<!ENTITY torbutton.prefs.cookies "Cookies">
<!ENTITY torbutton.prefs.cache "Cache">
<!ENTITY torbutton.prefs.history "Histórico">
-<!ENTITY torbutton.prefs.no_search "Desabilitar sugestões de pesquisa durante o uso do TOR (recomendado)">
-<!ENTITY torbutton.prefs.shutdown "Desligar">
-<!ENTITY torbutton.prefs.tor_shutdown "Limpar cookies quando o TOR estiver habilitado e o navegador for fechado">
-<!ENTITY torbutton.prefs.all_shutdown "Limpar cookies quando qualquer navegador for fechado">
-<!ENTITY torbutton.prefs.no_shutdown "Não limpar meus cookies ao desligar">
-<!ENTITY torbutton.prefs.disable_sessionstore "Desabilitar função de salvar sessão (recomendado)">
-<!ENTITY torbutton.prefs.headers "Cabeçalho">
-<!ENTITY torbutton.prefs.spoof_english "Mimetizar o navegador para Inglês US">
-<!ENTITY torbutton.prefs.refererspoofing "Engano de referenciador">
+<!ENTITY torbutton.prefs.no_search "Desabilitar as sugestões de pesquisa durante o uso do Tor (recomendado)">
+<!ENTITY torbutton.prefs.shutdown "Encerrar">
+<!ENTITY torbutton.prefs.tor_shutdown "Limpar os cookies do Tor quando um navegador com Tor for encerrado">
+<!ENTITY torbutton.prefs.all_shutdown "Limpar cookies quando qualquer navegador for encerrado">
+<!ENTITY torbutton.prefs.no_shutdown "Não limpar meus cookies ao encerrar">
+<!ENTITY torbutton.prefs.disable_sessionstore "Desabilitar o salvamento de sessão (recomendado)">
+<!ENTITY torbutton.prefs.headers "Cabeçalhos">
+<!ENTITY torbutton.prefs.spoof_english "Aparentar um Navegador em Inglês Americano">
+<!ENTITY torbutton.prefs.refererspoofing "Falsificar origem">
<!ENTITY torbutton.prefs.spoofblank "Spoof blank referer during Tor usage (may break some sites)">
-<!ENTITY torbutton.prefs.smartspoof "Enganar de forma inteligente o referenciador durante o uso do Tor (engana referenciadores em domínios cruzados)">
+<!ENTITY torbutton.prefs.smartspoof "Falsificar de forma inteligente a origem durante o uso do Tor (falsifica a origem em domínios cruzados)">
<!ENTITY torbutton.prefs.nospoof "No referer spoof during Tor usage (sends referers as normal)">
-<!ENTITY torbutton.prefs.disable_domstorage "Desabilitar armazenamento DOM durante o uso do TOR (importante)">
+<!ENTITY torbutton.prefs.disable_domstorage "Desabilitar o armazenamento do DOM durante o uso do Tor (importante)">
<!ENTITY torbutton.prefs.forms "Formulários">
-<!ENTITY torbutton.prefs.block_tforms "Bloquear senhas + informações de formulários durante o uso do TOR (recomendado)">
-<!ENTITY torbutton.prefs.block_ntforms "Bloquear senhas + informações de formulários quando não usar o TOR (opcional)">
+<!ENTITY torbutton.prefs.block_tforms "Bloquear senhas e informações de formulários durante o uso do Tor (recomendado)">
+<!ENTITY torbutton.prefs.block_ntforms "Bloquear senhas e informações de formulários quando não estiver usando o Tor (opcional)">
<!ENTITY torbutton.prefs.tor "Tor">
-<!ENTITY torbutton.prefs.non_tor "Não-Tor">
-<!ENTITY torbutton.prefs.restore_tor "Quando restaurar sessão, definir estado do Tor para:">
+<!ENTITY torbutton.prefs.non_tor "Não relacionado ao Tor">
+<!ENTITY torbutton.prefs.restore_tor "Quando restaurar uma sessão, definir o status do Tor para:">
<!ENTITY torbutton.prefs.startup_tor "Durante inicialização do navegador, definir o estado do Tor como:">
-<!ENTITY torbutton.prefs.reload_crashed_jar "Recarregar cookie/limpar cookies em uma falha do Firefox (recomendado)">
-<!ENTITY torbutton.prefs.dual_cookie_jars "Armazene os cookies, sejam ou não de Tor, em recipientes protegidos (Perigoso)">
+<!ENTITY torbutton.prefs.reload_crashed_jar "Recarregar o jar de cookies/limpar cookies em caso de falha do Firefox (recomendado)">
+<!ENTITY torbutton.prefs.dual_cookie_jars "Armazenar os cookies, do Tor ou não, em jars protegidos (perigoso)">
<!ENTITY torbutton.prefs.clear_http_auth "Limpar as sessões HTTP autenticadas (recomendado)">
-<!ENTITY torbutton.prefs.block_js_history "Isolar o acesso ao histórico de navegação ao arquivo de estado de Tor (crucial)">
-<!ENTITY torbutton.prefs.resize_on_toggle "Alterar o tamanho das páginas em múltiplos de 50px durante o uso de Tor (recomendado)">
-<!ENTITY torbutton.prefs.close_tor "Fechar todas as páginas e abas abertas com Tor ao comutar (opcional)">
-<!ENTITY torbutton.prefs.close_nontor "Fechar todas as páginas e abas não-Tor ao comutar (opcional)">
-<!ENTITY torbutton.prefs.block_links "Bloquear os link clicks e as recarga de páginas desde diferentes arquivos de estado de Tor (opcional)">
-<!ENTITY torbutton.prefs.jar_certs "Armazene certificados SSL em arquivos de estado de Tor separados para páginas Tor e não-Tor (recomendado)">
-<!ENTITY torbutton.prefs.jar_ca_certs "Armazene certificados CA em arquivos de estado separados para páginas Tor e não-Tor (recomendado)">
+<!ENTITY torbutton.prefs.block_js_history "Isolar o acesso ao histórico de navegação ao status atual do Tor (importante)">
+<!ENTITY torbutton.prefs.resize_on_toggle "Redimensionar janelas em múltiplos de 50 px durante o uso do Tor (recomendado)">
+<!ENTITY torbutton.prefs.close_tor "Fechar todas as janelas e abas do Tor ao alternar o status (opcional)">
+<!ENTITY torbutton.prefs.close_nontor "Fechar todas as janelas e abas não relacionadas ao Tor ao alternar o status (opcional)">
+<!ENTITY torbutton.prefs.block_links "Bloquear cliques aos links e atualizações de páginas de status do Tor diferente do atual (opcional)">
+<!ENTITY torbutton.prefs.jar_certs "Armazenar certificados SSL, em jars separados, um para o que for do Tor e um para o que não for (recomendado)">
+<!ENTITY torbutton.prefs.jar_ca_certs "Armazenar certificados da AC, em jars separados, um para o for do Tor e um para o que não for (recomendado)">
<!ENTITY torbutton.prefs.locked_mode "Desabilitar botões e atalhos para prevenir mudanças acidentais">
<!ENTITY torbutton.prefs.startup_state "Durante inicio normal, definir estado do Tor para:">
<!ENTITY torbutton.prefs.shutdown_state "Modo de desligamento">
diff --git a/src/chrome/locale/pt/torbutton.dtd b/src/chrome/locale/pt/torbutton.dtd
index 2829bed..974b09c 100644
--- a/src/chrome/locale/pt/torbutton.dtd
+++ b/src/chrome/locale/pt/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "Host SOCKS:">
<!ENTITY torbutton.prefs.proxy.port "Porto:">
<!ENTITY torbutton.about.title "Sobre o Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Desactivar o Torbutton para mudar estas configurações.">
<!ENTITY torbutton.pref_connection.more_info "Mais informações">
<!ENTITY torbutton.pref_connection_more_info.title "Ajuda">
diff --git a/src/chrome/locale/ro/torbutton.dtd b/src/chrome/locale/ro/torbutton.dtd
index 9cee850..100fbc6 100644
--- a/src/chrome/locale/ro/torbutton.dtd
+++ b/src/chrome/locale/ro/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "Host SOCKS:">
<!ENTITY torbutton.prefs.proxy.port "Portul:">
<!ENTITY torbutton.about.title "Despre Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Dezactivaţi Torbutton pentru a schimba aceste setări.">
<!ENTITY torbutton.pref_connection.more_info "Informatii suplimentare">
<!ENTITY torbutton.pref_connection_more_info.title "Ajutor">
diff --git a/src/chrome/locale/ru/torbutton.dtd b/src/chrome/locale/ru/torbutton.dtd
index 311ad78..3939e7d 100644
--- a/src/chrome/locale/ru/torbutton.dtd
+++ b/src/chrome/locale/ru/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS хост:">
<!ENTITY torbutton.prefs.proxy.port "Порт:">
<!ENTITY torbutton.about.title "Справка">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Для изменения настроек необходимо отключить Torbutton.">
<!ENTITY torbutton.pref_connection.more_info "Подробности">
<!ENTITY torbutton.pref_connection_more_info.title "Подсказка">
diff --git a/src/chrome/locale/sco/torbutton.dtd b/src/chrome/locale/sco/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/sco/torbutton.dtd
+++ b/src/chrome/locale/sco/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/sk/torbutton.dtd b/src/chrome/locale/sk/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/sk/torbutton.dtd
+++ b/src/chrome/locale/sk/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/sl/torbutton.dtd b/src/chrome/locale/sl/torbutton.dtd
index a73de8d..4ed907b 100644
--- a/src/chrome/locale/sl/torbutton.dtd
+++ b/src/chrome/locale/sl/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS gostitelj:">
<!ENTITY torbutton.prefs.proxy.port "vrata:">
<!ENTITY torbutton.about.title "O razširitvi Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Če želite spremeniti te nastavitve onemogočite razširitev Torbutton.">
<!ENTITY torbutton.pref_connection.more_info "Več informacij">
<!ENTITY torbutton.pref_connection_more_info.title "Pomoč">
diff --git a/src/chrome/locale/so/torbutton.dtd b/src/chrome/locale/so/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/so/torbutton.dtd
+++ b/src/chrome/locale/so/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/son/torbutton.dtd b/src/chrome/locale/son/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/son/torbutton.dtd
+++ b/src/chrome/locale/son/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/sq/torbutton.dtd b/src/chrome/locale/sq/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/sq/torbutton.dtd
+++ b/src/chrome/locale/sq/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/sr/torbutton.dtd b/src/chrome/locale/sr/torbutton.dtd
index cacc4d5..30427a5 100644
--- a/src/chrome/locale/sr/torbutton.dtd
+++ b/src/chrome/locale/sr/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS домаћин:">
<!ENTITY torbutton.prefs.proxy.port "Порт:">
<!ENTITY torbutton.about.title "О додатку">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Забрани промену ових поставки.">
<!ENTITY torbutton.pref_connection.more_info "Више информација">
<!ENTITY torbutton.pref_connection_more_info.title "Помоћ">
diff --git a/src/chrome/locale/st/torbutton.dtd b/src/chrome/locale/st/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/st/torbutton.dtd
+++ b/src/chrome/locale/st/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/su/torbutton.dtd b/src/chrome/locale/su/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/su/torbutton.dtd
+++ b/src/chrome/locale/su/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/sv/torbutton.dtd b/src/chrome/locale/sv/torbutton.dtd
index bdfe455..debba95 100644
--- a/src/chrome/locale/sv/torbutton.dtd
+++ b/src/chrome/locale/sv/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS-host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "Om Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Avaktivera Torbutton för att ändra dessa inställningar.">
<!ENTITY torbutton.pref_connection.more_info "Mer information">
<!ENTITY torbutton.pref_connection_more_info.title "Hjälp">
diff --git a/src/chrome/locale/sw/torbutton.dtd b/src/chrome/locale/sw/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/sw/torbutton.dtd
+++ b/src/chrome/locale/sw/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/ta/torbutton.dtd b/src/chrome/locale/ta/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/ta/torbutton.dtd
+++ b/src/chrome/locale/ta/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/te/torbutton.dtd b/src/chrome/locale/te/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/te/torbutton.dtd
+++ b/src/chrome/locale/te/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/tg/torbutton.dtd b/src/chrome/locale/tg/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/tg/torbutton.dtd
+++ b/src/chrome/locale/tg/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/th/torbutton.dtd b/src/chrome/locale/th/torbutton.dtd
index 5b63dfb..bc15ba8 100644
--- a/src/chrome/locale/th/torbutton.dtd
+++ b/src/chrome/locale/th/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "ค่า SOCKS Host :">
<!ENTITY torbutton.prefs.proxy.port "ค่า Port :">
<!ENTITY torbutton.about.title "เกี่ยวกับ Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "ข้อมูลเพิ่มเติม">
<!ENTITY torbutton.pref_connection_more_info.title "ความช่วยเหลือ">
diff --git a/src/chrome/locale/ti/torbutton.dtd b/src/chrome/locale/ti/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/ti/torbutton.dtd
+++ b/src/chrome/locale/ti/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/tk/torbutton.dtd b/src/chrome/locale/tk/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/tk/torbutton.dtd
+++ b/src/chrome/locale/tk/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/tr/torbutton.dtd b/src/chrome/locale/tr/torbutton.dtd
index 757b95c..9eec75e 100644
--- a/src/chrome/locale/tr/torbutton.dtd
+++ b/src/chrome/locale/tr/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "Torbutton Hakkında">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Ayarları uygulumak için Torbutonu devredışı bırak.">
<!ENTITY torbutton.pref_connection.more_info "Daha fazla bilgi">
<!ENTITY torbutton.pref_connection_more_info.title "Yardım">
diff --git a/src/chrome/locale/uk/torbutton.dtd b/src/chrome/locale/uk/torbutton.dtd
index 28325e8..4b4126a 100644
--- a/src/chrome/locale/uk/torbutton.dtd
+++ b/src/chrome/locale/uk/torbutton.dtd
@@ -1,24 +1,31 @@
<!ENTITY torbutton.prefs.title "Налаштування Torbutton">
-<!ENTITY torbutton.prefs.display_settings "Показати опції">
+<!ENTITY torbutton.prefs.display_settings "Показати параметри">
<!ENTITY torbutton.prefs.display_panel "Показувати стан проксі Tor у рядку стану">
<!ENTITY torbutton.prefs.panel_format "Формат поля у рядку стану">
<!ENTITY torbutton.prefs.panel_text_format "Текст">
-<!ENTITY torbutton.prefs.panel_icon_format "Іконка">
-<!ENTITY torbutton.prefs.tor_settings "Властивості проксі">
-<!ENTITY torbutton.prefs.recommended_settings "Використовувати рекомендовані значення для моєї версії Фірефоху">
+<!ENTITY torbutton.prefs.panel_icon_format "Значок">
+<!ENTITY torbutton.prefs.tor_settings "Параметри проксі">
+<!ENTITY torbutton.prefs.recommended_settings "Використовувати рекомендовані параметри для моєї версії Firefox">
<!ENTITY torbutton.prefs.use_privoxy "Використовувати Privoxy">
-<!ENTITY torbutton.prefs.use_polipo "Use Polipo">
+<!ENTITY torbutton.prefs.use_polipo "Використовувати Polipo">
<!ENTITY torbutton.prefs.custom_settings "Використовувати звичайні налаштування проксі">
<!ENTITY torbutton.prefs.proxy.host.http "HTTP проксі:">
<!ENTITY torbutton.prefs.proxy.host.https "SSL проксі:">
<!ENTITY torbutton.prefs.proxy.host.ftp "FTP проксі:">
<!ENTITY torbutton.prefs.proxy.host.gopher "Gopher проксі:">
-<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS хост:">
+<!ENTITY torbutton.prefs.proxy.host.socks "Вузол SOCKS:">
<!ENTITY torbutton.prefs.proxy.port "Порт:">
<!ENTITY torbutton.about.title "Про Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Вимкніть Torbutton, щоб змінити ці налаштування">
<!ENTITY torbutton.pref_connection.more_info "Більше інформації">
-<!ENTITY torbutton.pref_connection_more_info.title "Допомога">
+<!ENTITY torbutton.pref_connection_more_info.title "Довідка">
<!ENTITY torbutton.pref_connection_more_info.text "Torbutton зараз увімкнено. Якщо Ви бажаєте змінити налаштування проксі (не Tor-проксі), прошу вимкнути Torbutton та повернутися сюди. Якщо ж бажана зміна торкатиметься Tor-проксі, прошу це робити через вікно налаштування Torbutton.">
<!ENTITY torbutton.context_menu.toggle "Змінити стан Tor">
<!ENTITY torbutton.context_menu.toggle.key "T">
@@ -26,17 +33,17 @@
<!ENTITY torbutton.context_menu.preferences.key "P">
<!ENTITY torbutton.context_menu.about "Про Torbutton...">
<!ENTITY torbutton.context_menu.about.key "A">
-<!ENTITY torbutton.context_menu.cookieProtections "Cookie Protections">
+<!ENTITY torbutton.context_menu.cookieProtections "Захист куки">
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
-<!ENTITY torbutton.context_menu.copyTor "Copy Tor URL">
+<!ENTITY torbutton.context_menu.copyTor "Копіювати адресу Tor">
<!ENTITY torbutton.context_menu.copyTor.key "p">
-<!ENTITY torbutton.context_menu.openTorTab "Open Tor URL in new Tab">
+<!ENTITY torbutton.context_menu.openTorTab "Відкрити адресу Tor у новій вкладці">
<!ENTITY torbutton.context_menu.openTorTab.key "r">
-<!ENTITY torbutton.context_menu.openTorWindow "Open Tor URL in new Window">
+<!ENTITY torbutton.context_menu.openTorWindow "Відкрити адресу Tor у новому вікні">
<!ENTITY torbutton.context_menu.openTorWindow.key "d">
<!ENTITY torbutton.button.label "Torbutton">
<!ENTITY torbutton.button.tooltip "Клацніть для запуску Torbutton">
-<!ENTITY torbutton.prefs.sec_settings "Налаштування безпеки">
+<!ENTITY torbutton.prefs.sec_settings "Параметри безпеки">
<!ENTITY torbutton.prefs.block_thread "Блокувати читання історії під час використання Tor (критично)">
<!ENTITY torbutton.prefs.block_thwrite "Блокувати запис історії під час використання Tor (рекомендовано)">
<!ENTITY torbutton.prefs.block_nthread "Блокувати читання історії без використання Tor (на Ваш вибір)">
@@ -45,13 +52,13 @@
<!ENTITY torbutton.prefs.clear_cache "Блокувати дисковий кеш та чистити кеш при зміні стану Tor">
<!ENTITY torbutton.prefs.block_cache "Блокувати доступ до дискового та кешу у пам’яті при використанні Tor">
<!ENTITY torbutton.prefs.cookie_jars "Зберігати не-Tor куки у захищеному стані">
-<!ENTITY torbutton.prefs.cookie_protection "Use the Cookie Protections Dialog to choose">
+<!ENTITY torbutton.prefs.cookie_protection "Використовувати для вибору діалог захисту куків">
<!ENTITY torbutton.prefs.mmm_cookies "Я хочу сам керувати своїми куками (небезпечно)">
<!ENTITY torbutton.prefs.clear_cookies "Чистити куки при зміні стану Tor">
-<!ENTITY torbutton.prefs.disable_plugins "Вимикати плагіни при використанні Tor (критично)">
+<!ENTITY torbutton.prefs.disable_plugins "Вимикати модулі протягом використання Tor (критично)">
<!ENTITY torbutton.prefs.kill_bad_js "Захоплювати небезпеки у javascript (критично)">
<!ENTITY torbutton.prefs.isolate_content "Ізолювати динамічний вміст до одного стану Tor (критично)">
-<!ENTITY torbutton.prefs.no_updates "Не дозволяти оновлень при використанні Tor">
+<!ENTITY torbutton.prefs.no_updates "Вимкнути оновлення протягом використання Tor">
<!ENTITY torbutton.prefs.set_uagent "Встановити юзер агент для використання Tor (критично)">
<!ENTITY torbutton.prefs.dynamic "Динамічний вміст">
<!ENTITY torbutton.prefs.cookies "Куки">
diff --git a/src/chrome/locale/ur/torbutton.dtd b/src/chrome/locale/ur/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/ur/torbutton.dtd
+++ b/src/chrome/locale/ur/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/ve/torbutton.dtd b/src/chrome/locale/ve/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/ve/torbutton.dtd
+++ b/src/chrome/locale/ve/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/vi/torbutton.dtd b/src/chrome/locale/vi/torbutton.dtd
index 36b720f..a775075 100644
--- a/src/chrome/locale/vi/torbutton.dtd
+++ b/src/chrome/locale/vi/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Cổng:">
<!ENTITY torbutton.about.title "Thông tin về Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Tắt Torbutton để thay đổi các thiết lập này.">
<!ENTITY torbutton.pref_connection.more_info "Thông tin thêm">
<!ENTITY torbutton.pref_connection_more_info.title "Trợ giúp">
diff --git a/src/chrome/locale/wa/torbutton.dtd b/src/chrome/locale/wa/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/wa/torbutton.dtd
+++ b/src/chrome/locale/wa/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/wo/torbutton.dtd b/src/chrome/locale/wo/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/wo/torbutton.dtd
+++ b/src/chrome/locale/wo/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/zh-CN/torbutton.dtd b/src/chrome/locale/zh-CN/torbutton.dtd
index 9333c1c..1d186b3 100644
--- a/src/chrome/locale/zh-CN/torbutton.dtd
+++ b/src/chrome/locale/zh-CN/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS 代理:">
<!ENTITY torbutton.prefs.proxy.port "端口:">
<!ENTITY torbutton.about.title "关于 Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "禁用 Torbutton 来改变这些设置。">
<!ENTITY torbutton.pref_connection.more_info "更多信息">
<!ENTITY torbutton.pref_connection_more_info.title "帮助">
diff --git a/src/chrome/locale/zh-HK/torbutton.dtd b/src/chrome/locale/zh-HK/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/zh-HK/torbutton.dtd
+++ b/src/chrome/locale/zh-HK/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
diff --git a/src/chrome/locale/zh-TW/torbutton.dtd b/src/chrome/locale/zh-TW/torbutton.dtd
index 269ead7..8787af3 100644
--- a/src/chrome/locale/zh-TW/torbutton.dtd
+++ b/src/chrome/locale/zh-TW/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "關於 Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "停用Torbutton來改變設定">
<!ENTITY torbutton.pref_connection.more_info "更多資訊">
<!ENTITY torbutton.pref_connection_more_info.title "幫助">
diff --git a/src/chrome/locale/zu/torbutton.dtd b/src/chrome/locale/zu/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/zu/torbutton.dtd
+++ b/src/chrome/locale/zu/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
1
0

02 Jul '11
commit c43d54eeedec37b980bdd8878d1e1852e7479f88
Author: Mike Perry <mikeperry-git(a)fscked.org>
Date: Fri Jul 1 17:31:13 2011 -0700
The tails patch had a bug number.
---
src/CHANGELOG | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/CHANGELOG b/src/CHANGELOG
index 2e09080..464cade 100644
--- a/src/CHANGELOG
+++ b/src/CHANGELOG
@@ -13,11 +13,11 @@
* bug #1282: Set fixed window size for each new window.
* bug #3508: Apply Stanford SafeCache patch (thanks Edward, Collin et al).
* bug #2361: Make about window work again on FF4+.
+ * bug #3436: T(A)ILS was renamed to Tails.
* bugfix: Fix a transparent context menu issue on Linux FF4+.
* misc: Squelch exception from app launcher in error console.
* misc: Make DuckDuckGo the default Google Captcha redirect destination.
* misc: Make it harder to accidentally toggle torbutton.
- * misc: T(A)ILS was renamed to Tails.
1.3.3-alpha
01 May 2011
1
0
Author: mikeperry
Date: 2011-07-01 22:45:37 +0000 (Fri, 01 Jul 2011)
New Revision: 24854
Modified:
translation/trunk/projects/torbutton-alpha/po/af/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/af/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/ak/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/ak/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/am/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/am/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/ar/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/ar/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/arn/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/arn/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/ast/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/ast/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/az/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/az/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/be/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/be/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/bg/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/bg/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/bn/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/bn/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/bn_IN/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/bn_IN/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/bo/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/bo/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/br/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/br/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/bs/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/bs/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/ca/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/ca/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/cs/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/cs/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/csb/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/csb/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/cy/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/cy/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/da/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/da/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/de/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/de/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/dz/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/dz/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/el/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/el/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/en/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/en/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/eo/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/eo/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/es/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/es/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/et/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/et/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/eu/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/eu/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/fa/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/fa/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/fi/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/fi/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/fil/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/fil/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/fo/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/fo/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/fr/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/fr/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/fur/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/fur/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/fy/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/fy/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/ga/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/ga/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/gl/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/gl/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/gu/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/gu/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/gun/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/gun/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/ha/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/ha/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/he/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/he/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/hi/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/hi/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/hr/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/hr/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/ht/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/ht/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/hu/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/hu/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/hy/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/hy/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/id/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/id/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/is/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/is/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/it/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/it/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/ja/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/ja/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/jv/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/jv/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/ka/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/ka/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/km/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/km/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/kn/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/kn/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/ko/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/ko/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/ku/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/ku/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/kw/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/kw/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/ky/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/ky/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/lb/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/lb/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/ln/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/ln/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/lo/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/lo/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/lt/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/lt/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/lv/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/lv/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/mg/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/mg/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/mi/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/mi/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/mk/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/mk/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/ml/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/ml/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/mn/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/mn/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/mr/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/mr/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/ms/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/ms/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/mt/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/mt/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/my/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/my/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/nah/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/nah/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/nap/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/nap/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/nb/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/nb/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/ne/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/ne/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/nl/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/nl/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/nn/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/nn/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/nso/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/nso/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/oc/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/oc/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/or/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/or/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/pa/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/pa/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/pap/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/pap/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/pl/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/pl/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/pms/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/pms/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/ps/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/ps/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/pt/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/pt/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/pt_BR/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/pt_BR/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/ro/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/ro/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/ru/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/ru/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/sco/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/sco/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/sk/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/sk/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/sl/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/sl/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/so/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/so/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/son/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/son/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/sq/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/sq/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/sr/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/sr/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/st/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/st/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/su/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/su/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/sv/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/sv/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/sw/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/sw/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/ta/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/ta/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/te/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/te/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/templates/torbutton.dtd.pot
translation/trunk/projects/torbutton-alpha/po/templates/torbutton.properties.pot
translation/trunk/projects/torbutton-alpha/po/tg/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/tg/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/th/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/th/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/ti/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/ti/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/tk/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/tk/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/tr/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/tr/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/uk/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/uk/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/ur/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/ur/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/ve/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/ve/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/vi/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/vi/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/wa/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/wa/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/wo/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/wo/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/zh_CN/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/zh_CN/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/zh_HK/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/zh_HK/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/zh_TW/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/zh_TW/torbutton.properties.po
translation/trunk/projects/torbutton-alpha/po/zu/torbutton.dtd.po
translation/trunk/projects/torbutton-alpha/po/zu/torbutton.properties.po
Log:
New tx strings w/ TAILS and other updates.
Modified: translation/trunk/projects/torbutton-alpha/po/af/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/af/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/af/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:23+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:30+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: af\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/af/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/af/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/af/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:09+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:25+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: af\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/ak/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/ak/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/ak/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:16+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:29+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: ak\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/ak/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/ak/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/ak/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:07+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:21+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: ak\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/am/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/am/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/am/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:24+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:31+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: am\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/am/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/am/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/am/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:09+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:25+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: am\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/ar/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/ar/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/ar/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -1,12 +1,15 @@
#
+# mikeperry <mikeperry-trans(a)fscked.org>, 2011.
+# runasand <runa.sandvik(a)gmail.com>, 2011.
+# mohammad Alhargan <malham1(a)gmail.com>, 2011.
#. extracted from ../src/chrome/locale/en/torbutton.dtd
msgid ""
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-03-21 01:52-0700\n"
-"PO-Revision-Date: 2011-03-18 10:50+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-05-01 01:47+0000\n"
+"Last-Translator: mikeperry <mikeperry-trans(a)fscked.org>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: ar\n"
"MIME-Version: 1.0\n"
@@ -89,6 +92,35 @@
msgid "About Torbutton"
msgstr "عن زر تور"
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+#, fuzzy
+msgid "Security Review:"
+msgstr "إعدادات الأمان"
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr "عطل زر تور لتغيير هذه الإعدادات."
@@ -137,35 +169,35 @@
#: torbutton.context_menu.cookieProtections
msgid "Cookie Protections"
-msgstr ""
+msgstr "كعكة الحماية"
#: torbutton.context_menu.cookieProtections.key
msgid "C"
-msgstr ""
+msgstr "C"
#: torbutton.context_menu.copyTor
msgid "Copy Tor URL"
-msgstr ""
+msgstr "نسخ رابط تور"
#: torbutton.context_menu.copyTor.key
msgid "p"
-msgstr ""
+msgstr "p"
#: torbutton.context_menu.openTorTab
msgid "Open Tor URL in new Tab"
-msgstr ""
+msgstr "فتح عنوان تور في علامة تبويب جديدة"
#: torbutton.context_menu.openTorTab.key
msgid "r"
-msgstr ""
+msgstr "r"
#: torbutton.context_menu.openTorWindow
msgid "Open Tor URL in new Window"
-msgstr ""
+msgstr "فتح عنوان تور في نافذة جديدة"
#: torbutton.context_menu.openTorWindow.key
msgid "d"
-msgstr ""
+msgstr "d"
#: torbutton.button.label
msgid "Torbutton"
@@ -213,7 +245,7 @@
#: torbutton.prefs.cookie_protection
msgid "Use the Cookie Protections Dialog to choose"
-msgstr ""
+msgstr "استخدام حوار كعكة الحماية للاختيار"
#: torbutton.prefs.mmm_cookies
msgid "I will manually manage my cookies (dangerous)"
@@ -293,19 +325,20 @@
#: torbutton.prefs.refererspoofing
msgid "Referer spoofing"
-msgstr ""
+msgstr "مرجعية خداعه"
#: torbutton.prefs.spoofblank
msgid "Spoof blank referer during Tor usage (may break some sites)"
-msgstr ""
+msgstr "محاكاة ساخرة المرجعية فارغة أثناء عمل تور (قد يعطل بعض المواقع)"
#: torbutton.prefs.smartspoof
msgid "Smart referer spoof during Tor usage (spoofs cross domain referers)"
msgstr ""
+"محاكاة ساخرة ذكية للتحويل أثناء عمل تور (سخرية المجال المرجعي المتقاطع)"
#: torbutton.prefs.nospoof
msgid "No referer spoof during Tor usage (sends referers as normal)"
-msgstr ""
+msgstr "لا محاكاة ساخرة للتحويل أثناء عمل تور (يرسل المرجع كالمعتاد)"
#: torbutton.prefs.disable_domstorage
msgid "Disable DOM Storage during Tor usage (crucial)"
@@ -337,7 +370,7 @@
#: torbutton.prefs.startup_tor
msgid "On browser startup, set Tor state to:"
-msgstr ""
+msgstr "عند بدء التشغيل المتصفح ، تعيين جالة تور إلى:"
#: torbutton.prefs.reload_crashed_jar
msgid "Reload cookie jar/clear cookies on Firefox crash (recommended)"
@@ -459,71 +492,71 @@
#: torbutton.prefs.spoofreresh
msgid "Spoof Refresh"
-msgstr ""
+msgstr "تحديث المحاكاة الساخرة"
#: torbutton.prefs.refereroptions
msgid "Referer Spoofing Options"
-msgstr ""
+msgstr "خيارات المرجعية الساخرة"
#: torbutton.prefs.nospoof
msgid "Do not spoof referer"
-msgstr ""
+msgstr "لا تستخدم محاكاة مرجعية ساخرة"
#: torbutton.prefs.spoofroot
msgid "Spoof the containing folder of the page"
-msgstr ""
+msgstr "محاكاة ساخرة المجلد الذي يحتوي على الصفحة"
#: torbutton.prefs.spoofdomain
msgid "Spoof the domain as referer"
-msgstr ""
+msgstr "محاكاة ساخرة المجال مثل المرجعية"
#: torbutton.prefs.spoofblank
msgid "Make referer blank"
-msgstr ""
+msgstr "إجعل المرجعية فارغة"
#: torbutton.cookiedialog.title
msgid "Manage Cookie Protections"
-msgstr ""
+msgstr "إدارة كعكات الحماية"
#: torbutton.cookiedialog.lockCol
msgid "Protected"
-msgstr ""
+msgstr "محمية"
#: torbutton.cookiedialog.domainCol
msgid "Host"
-msgstr ""
+msgstr "استضافة"
#: torbutton.cookiedialog.nameCol
msgid "Name"
-msgstr ""
+msgstr "اسم"
#: torbutton.cookiedialog.pathCol
msgid "Path"
-msgstr ""
+msgstr "المسار"
#: torbutton.cookiedialog.protectCookie
msgid "Protect Cookie"
-msgstr ""
+msgstr "كعكة الحماية"
#: torbutton.cookiedialog.removeCookie
msgid "Remove Cookie"
-msgstr ""
+msgstr "إزالة الكعك"
#: torbutton.cookiedialog.unprotectCookie
msgid "Unprotect Cookie"
-msgstr ""
+msgstr "إلغاء كعكة الحماية"
#: torbutton.cookiedialog.removeAllBut
msgid "Remove All But Protected"
-msgstr ""
+msgstr "إزالة الكل لكن استمر في الحماية"
#: torbutton.cookiedialog.saveAllCookies
msgid "Protect New Cookies"
-msgstr ""
+msgstr "كعكة حماية جديدة"
#: torbutton.cookiedialog.doNotSaveAllCookies
msgid "Do Not Protect New Cookies"
-msgstr ""
+msgstr "لا تحمي الكعكات الجديدة"
#: torbutton.prefs.disable_livemarks
msgid "Disable Livemark updates during Tor usage"
@@ -571,7 +604,7 @@
#: torbutton.prefs.engine5
msgid "duckduckgo.com"
-msgstr ""
+msgstr "duckduckgo.com"
#: torbutton.prefs.fix_google_srch
msgid "Strip platform and language off of Google Search Box queries"
Modified: translation/trunk/projects/torbutton-alpha/po/ar/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/ar/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/ar/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,7 +4,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-03-21 01:52-0700\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
"PO-Revision-Date: 2010-05-03 12:16-0600\n"
"Last-Translator: Anas Qtiesh <anasqtiesh(a)gmail.com>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -209,7 +209,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
"\n"
"إذا كان هذا الملف غير موثوق، يجب أن تحفظه لتشاهده دون اتصال بالانترنت أو "
Modified: translation/trunk/projects/torbutton-alpha/po/arn/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/arn/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/arn/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:30+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:32+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: arn\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/arn/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/arn/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/arn/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:11+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:26+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: arn\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/ast/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/ast/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/ast/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:32+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:33+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: ast\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/ast/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/ast/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/ast/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:11+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:26+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: ast\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/az/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/az/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/az/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:26+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:31+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: az\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/az/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/az/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/az/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:10+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:25+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: az\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/be/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/be/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/be/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:31+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:33+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: be\n"
@@ -89,6 +89,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/be/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/be/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/be/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:11+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:26+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: be\n"
@@ -167,7 +167,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/bg/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/bg/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/bg/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:25+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:31+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: bg\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/bg/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/bg/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/bg/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:10+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:25+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: bg\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/bn/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/bn/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/bn/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:31+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:33+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: bn\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/bn/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/bn/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/bn/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:11+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:26+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: bn\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/bn_IN/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/bn_IN/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/bn_IN/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:26+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:31+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: bn_IN\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/bn_IN/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/bn_IN/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/bn_IN/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:10+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:25+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: bn_IN\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/bo/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/bo/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/bo/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:33+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:36+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: bo\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/bo/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/bo/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/bo/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:12+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:26+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: bo\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/br/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/br/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/br/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:34+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:36+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: br\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/br/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/br/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/br/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:12+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:27+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: br\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/bs/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/bs/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/bs/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:34+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:36+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: bs\n"
@@ -89,6 +89,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/bs/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/bs/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/bs/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:12+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:27+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: bs\n"
@@ -167,7 +167,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/ca/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/ca/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/ca/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,7 +4,7 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-03-21 01:52-0700\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
"PO-Revision-Date: 2011-03-04 18:48+0000\n"
"Last-Translator: ianmartorell <ianmartorell(a)gmail.com>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -89,6 +89,35 @@
msgid "About Torbutton"
msgstr "Quant a Torbutton"
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+#, fuzzy
+msgid "Security Review:"
+msgstr "Configuració de seguretat"
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr "No permetis que Torbutton canvii aquesta configuració."
Modified: translation/trunk/projects/torbutton-alpha/po/ca/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/ca/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/ca/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-03-21 01:52-0700\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/cs/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/cs/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/cs/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,7 +4,7 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-03-21 01:52-0700\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
"PO-Revision-Date: 2011-03-18 10:49+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -88,6 +88,35 @@
msgid "About Torbutton"
msgstr "O Torbutton"
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+#, fuzzy
+msgid "Security Review:"
+msgstr "Bezpečnostní nastavení"
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr "Zakázat aplikaci Torbutton toto nastavení měnit."
Modified: translation/trunk/projects/torbutton-alpha/po/cs/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/cs/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/cs/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,7 +4,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-03-21 01:52-0700\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
"PO-Revision-Date: 2010-08-22 22:14+0200\n"
"Last-Translator: Martin <martinbarta(a)czech-city.eu>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/csb/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/csb/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/csb/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:29+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:32+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: csb\n"
@@ -89,6 +89,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/csb/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/csb/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/csb/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:11+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:26+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: csb\n"
@@ -167,7 +167,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/cy/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/cy/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/cy/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:14+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:28+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: cy\n"
@@ -89,6 +89,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/cy/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/cy/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/cy/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -1,12 +1,13 @@
#
+# cymro <markives(a)hotmail.co.uk>, 2011.
#. extracted from ../src/chrome/locale/en/torbutton.properties
msgid ""
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:04+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-05-15 14:32+0000\n"
+"Last-Translator: cymro <markives(a)hotmail.co.uk>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: cy\n"
"MIME-Version: 1.0\n"
@@ -19,35 +20,35 @@
#: torbutton.button.tooltip.disabled
msgid "Enable Tor"
-msgstr ""
+msgstr "Galluogi Tor"
#: torbutton.button.tooltip.enabled
msgid "Disable Tor"
-msgstr ""
+msgstr "Analluoga Tor"
#: torbutton.panel.tooltip.disabled
msgid "Click to enable Tor"
-msgstr ""
+msgstr "Cliciwch i alluogi Tor"
#: torbutton.panel.tooltip.enabled
msgid "Click to disable Tor"
-msgstr ""
+msgstr "Cliciwch i analluogu Tor"
#: torbutton.panel.plugins.disabled
msgid "Click to enable plugins"
-msgstr ""
+msgstr "Cliciwch i alluogi plugins"
#: torbutton.panel.plugins.enabled
msgid "Click to disable plugins"
-msgstr ""
+msgstr "Cliciwch i analluogi plugins"
#: torbutton.panel.label.disabled
msgid "Tor Disabled"
-msgstr ""
+msgstr "Tor Anabl"
#: torbutton.panel.label.enabled
msgid "Tor Enabled"
-msgstr ""
+msgstr "Tor Galluog"
#: extensions.{e0204bd5-9d31-402b-a99d-a6aa8ffebdca}.description
msgid ""
@@ -100,7 +101,7 @@
#: torbutton.popup.test.success
msgid "Tor proxy test successful!"
-msgstr ""
+msgstr "Prawf procsi Tor llwyddiannus!"
#: torbutton.popup.test.failure
msgid "Tor proxy test FAILED! Check your proxy and Polipo settings."
@@ -167,7 +168,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/da/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/da/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/da/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,7 +4,7 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
"PO-Revision-Date: 2011-04-30 12:18+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -88,6 +88,35 @@
msgid "About Torbutton"
msgstr "Om Torbutton"
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+#, fuzzy
+msgid "Security Review:"
+msgstr "Sikkerhedsindstillinger"
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr "Deaktiver Torbutton for at ændre disse indstillinger."
Modified: translation/trunk/projects/torbutton-alpha/po/da/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/da/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/da/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,7 +4,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-03-21 01:52-0700\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
"PO-Revision-Date: 2010-03-02 05:32-0700\n"
"Last-Translator: Hans-Jørgen Martinus Hansen <hans-jorgen(a)live.dk>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -210,7 +210,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/de/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/de/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/de/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,7 +4,7 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
"PO-Revision-Date: 2011-04-08 13:14+0000\n"
"Last-Translator: cosimacosa <leccefv(a)libero.it>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -88,6 +88,35 @@
msgid "About Torbutton"
msgstr "Über Torbutton"
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+#, fuzzy
+msgid "Security Review:"
+msgstr "Sicherheitseinstellungen"
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr "Deaktivieren Sie Torbutton, um diese Einstellungen zu verändern."
Modified: translation/trunk/projects/torbutton-alpha/po/de/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/de/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/de/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,7 +4,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-03-21 01:52-0700\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
"PO-Revision-Date: 2010-04-10 06:46-0600\n"
"Last-Translator: CS <cs(a)carlostrub.ch>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -217,7 +217,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
"\n"
"Falls diese Datei nicht vertrauenswürdig ist, sollten Sie diese entweder "
Modified: translation/trunk/projects/torbutton-alpha/po/dz/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/dz/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/dz/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:18+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:29+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: dz\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/dz/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/dz/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/dz/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:07+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:22+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: dz\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/el/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/el/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/el/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,7 +4,7 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-03-21 01:52-0700\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
"PO-Revision-Date: 2011-03-04 18:48+0000\n"
"Last-Translator: Evropi <yannanth(a)gmail.com>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -88,6 +88,35 @@
msgid "About Torbutton"
msgstr "Περί Torbutton"
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+#, fuzzy
+msgid "Security Review:"
+msgstr "Ρυθμίσεις ασφαλείας"
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr "Απενεργοποιήστε το Torbutton για να αλλάξετε αυτές τις ρυθμίσεις."
Modified: translation/trunk/projects/torbutton-alpha/po/el/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/el/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/el/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,7 +4,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-03-21 01:52-0700\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
"PO-Revision-Date: 2010-03-25 06:12-0600\n"
"Last-Translator: George Fragos <fragos.george(a)gmail.com>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -206,7 +206,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/en/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/en/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/en/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,7 +4,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-01-03 22:21-0500\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
"PO-Revision-Date: 2009-07-27 05:34+0000\n"
"Last-Translator: Joshua M. Biscarra <joshuamayobiscarra(a)gmail.com>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -87,6 +87,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/en/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/en/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/en/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-03-21 01:52-0700\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/eo/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/eo/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/eo/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:22+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:30+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: eo\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/eo/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/eo/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/eo/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:09+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:24+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: eo\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/es/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/es/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/es/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,7 +4,7 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-03-21 01:52-0700\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
"PO-Revision-Date: 2011-03-04 18:48+0000\n"
"Last-Translator: ianmartorell <ianmartorell(a)gmail.com>\n"
"Language-Team: Spanish (Castilian) <None>\n"
@@ -88,6 +88,35 @@
msgid "About Torbutton"
msgstr "Acerca de Torbutton"
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+#, fuzzy
+msgid "Security Review:"
+msgstr "Configuración de seguridad"
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr "Desactive Torbutton para cambiar esta configuración."
Modified: translation/trunk/projects/torbutton-alpha/po/es/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/es/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/es/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,7 +4,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-03-21 01:52-0700\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
"PO-Revision-Date: 2010-06-06 17:59-0600\n"
"Last-Translator: carolyn anhalt <carolyn(a)anhalt.org>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -216,7 +216,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
"\n"
"Si este archivo no es de confiable, usted debería o guardarlo para verlo "
Modified: translation/trunk/projects/torbutton-alpha/po/et/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/et/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/et/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,7 +4,7 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-03-21 01:52-0700\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
"PO-Revision-Date: 2011-03-18 10:50+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/et/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/et/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/et/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,7 +4,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-03-21 01:52-0700\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
"PO-Revision-Date: 2010-02-18 03:19-0700\n"
"Last-Translator: Heiki Ojasild <heiki.ojasild(a)gmail.com>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -206,7 +206,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/eu/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/eu/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/eu/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:25+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:31+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: eu\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/eu/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/eu/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/eu/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:10+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:25+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: eu\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/fa/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/fa/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/fa/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,7 +4,7 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
"PO-Revision-Date: 2011-04-15 18:20+0000\n"
"Last-Translator: pakdelreza <pakdelreza(a)gmail.com>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -88,6 +88,35 @@
msgid "About Torbutton"
msgstr "دربارۀ دکمه تُر"
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+#, fuzzy
+msgid "Security Review:"
+msgstr "تنظیمات امنیتی"
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr "غيرفعال کردن دکمه تُر جهت تغيير دراين تنظيمات."
Modified: translation/trunk/projects/torbutton-alpha/po/fa/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/fa/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/fa/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -1,19 +1,23 @@
+#
+# Reza Pakdel <pakdelreza(a)gmail.com>, 2011.
+# mikeperry <mikeperry-trans(a)fscked.org>, 2011.
+# runasand <runa.sandvik(a)gmail.com>, 2011.
#. extracted from ../src/chrome/locale/en/torbutton.properties
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
+"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-03-21 01:52-0700\n"
-"PO-Revision-Date: 2010-09-05 02:49+0200\n"
-"Last-Translator: iranfree <green.dove88(a)gmail.com>\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-05-01 01:33+0000\n"
+"Last-Translator: mikeperry <mikeperry-trans(a)fscked.org>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: fa\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Pootle 2.0.5\n"
+"Plural-Forms: nplurals=1; plural=0\n"
"X-Accelerator-Marker: &\n"
+"X-Generator: Translate Toolkit 1.8.1\n"
#: torbutton.button.tooltip.disabled
msgid "Enable Tor"
@@ -205,13 +209,14 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
"\n"
-"If this file is untrusted, you should either save it to view while offline "
-"or in a VM,\n"
-"or consider using a transparent Tor proxy like Amnesia LiveCD, torsocks, or "
-"TorVM.\n"
+"اگر اين فايل مورد اعتماد نيست، بهتر است آن را ذخيره کنيد تا بعداً که به "
+"اينترنت وصل نبوديد يا از يک VM استفاده میکرديد، باز کنيد.\n"
+"\n"
+"و يا استفاده از يک پراکسی تّر شفاف مانند T(A)IALS LiveCD و يا torsocks را هم "
+"در نظر بگيريد.\n"
#: torbutton.popup.launch
msgid "Launch application"
@@ -264,28 +269,9 @@
"\n"
"Would you like to request English language web pages for better privacy?"
msgstr ""
-
-#~ msgid ""
-#~ "Torbutton blocked changed-state history manipulation.\n"
-#~ "\n"
-#~ "See history settings to allow.\n"
-#~ "\n"
-#~ msgstr ""
-#~ "دکمه تُر مانع ازدستکاری در تاریخچه شد.\n"
-#~ "\n"
-#~ " مشاهده و تغییر در تنظیمات تاریخچه برای اجازه دادن اینگونه دستکاری.\n"
-
-#~ msgid ""
-#~ "Warning!\n"
-#~ "\n"
-#~ "Torbutton on Firefox 3 is known to leak your timezone and livemark feeds "
-#~ "during Tor usage. In addition, it has not been as extensively tested for "
-#~ "Tor security and usability as Firefox 2.\n"
-#~ "\n"
-#~ "Do you wish to continue anyway?"
-#~ msgstr ""
-#~ "دکمه تُر در فایرفاکس 3 برای تغذیه کردن ناحیه زمان و لایومارک هنگام استفاده "
-#~ "تُر شناخته شد. افزون بر اینکه بطور قابل توجه تست نشده برای امنیت تُر و "
-#~ "استفاده در فایر فاکس 2.\n"
-#~ "\n"
-#~ "آیا می خواهید ادامه دهید؟"
+"برای حفاظت بيشتر از حريم خصوصی شما، دکمه تُر میتواند نسخه انگليسی صفحات وب را "
+"درخواست کند. اين موضوع ممکن است باعث شود صفحههایی که دوست داريد به زبان "
+"مادری خود بخوانيد به انگليسی نمايش داده شوند.\n"
+"\n"
+"آيا با اين وجود میخواهيد برای حفاظت بيشتر از حريم خصوصی درخواست نسخه انگليسی "
+"صفحات را بدهيد؟"
Modified: translation/trunk/projects/torbutton-alpha/po/fi/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/fi/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/fi/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,7 +4,7 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
"PO-Revision-Date: 2011-04-30 12:34+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -89,6 +89,35 @@
msgid "About Torbutton"
msgstr "Tietoja Torbuttonista"
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+#, fuzzy
+msgid "Security Review:"
+msgstr "Turvallisuus (asetukset)"
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr "Poista Torbutton käytöstä muuttaaksesi asetuksia."
Modified: translation/trunk/projects/torbutton-alpha/po/fi/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/fi/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/fi/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,7 +4,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-03-21 01:52-0700\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
"PO-Revision-Date: 2010-04-08 10:59-0600\n"
"Last-Translator: AmaliaH <hilkka39(a)gmail.com>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -213,7 +213,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
"\n"
"Jos tiedosto ei ole turvallisesta lähteestä, sinun tulisi joko tallettaa se "
Modified: translation/trunk/projects/torbutton-alpha/po/fil/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/fil/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/fil/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:22+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:30+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: fil\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/fil/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/fil/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/fil/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:09+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:24+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: fil\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/fo/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/fo/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/fo/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:34+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:36+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: fo\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/fo/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/fo/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/fo/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:12+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:27+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: fo\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/fr/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/fr/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/fr/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,7 +4,7 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-03-21 01:52-0700\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
"PO-Revision-Date: 2011-03-18 10:51+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -89,6 +89,35 @@
msgid "About Torbutton"
msgstr "À propos de Torbutton"
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+#, fuzzy
+msgid "Security Review:"
+msgstr "Paramètres de sécurité"
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr "Désactiver Torbutton pour modifier ces paramètres."
Modified: translation/trunk/projects/torbutton-alpha/po/fr/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/fr/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/fr/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,7 +4,7 @@
msgstr ""
"Project-Id-Version: Torbutton\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-03-21 01:52-0700\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
"PO-Revision-Date: 2010-07-27 20:16+0200\n"
"Last-Translator: Médéric <mederic.ribreux(a)gmail.com>\n"
"Language-Team: Mfr <mfr (ä] misericordia.be>\n"
@@ -217,7 +217,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
"\n"
"Si ce fichier n'est pas fiable, vous devez soit le sauvegarder pour le "
Modified: translation/trunk/projects/torbutton-alpha/po/fur/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/fur/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/fur/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:19+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:30+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: fur\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/fur/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/fur/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/fur/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:08+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:23+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: fur\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/fy/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/fy/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/fy/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:33+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:36+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: fy\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/fy/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/fy/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/fy/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:12+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:26+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: fy\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/ga/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/ga/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/ga/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:14+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:28+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: ga\n"
@@ -89,6 +89,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/ga/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/ga/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/ga/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:04+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:19+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: ga\n"
@@ -167,7 +167,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/gl/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/gl/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/gl/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:14+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:28+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: gl\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/gl/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/gl/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/gl/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:05+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:19+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: gl\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/gu/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/gu/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/gu/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,7 +4,7 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-03-21 01:52-0700\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
"PO-Revision-Date: 2011-03-18 10:48+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -88,6 +88,35 @@
msgid "About Torbutton"
msgstr "ટોરબટન વિશે"
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+#, fuzzy
+msgid "Security Review:"
+msgstr "સલામતી ગોઠવણીઓ"
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr "આ ગોઠવણીઓ બદલવા માટે ટોરબટન નિષ્ક્રિય કરો."
Modified: translation/trunk/projects/torbutton-alpha/po/gu/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/gu/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/gu/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,7 +4,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-03-21 01:52-0700\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
"PO-Revision-Date: 2010-09-02 16:54+0200\n"
"Last-Translator: Kartik <kartik(a)debian.org>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/gun/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/gun/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/gun/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:20+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:30+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: gun\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/gun/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/gun/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/gun/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:08+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:24+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: gun\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/ha/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/ha/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/ha/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:18+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:29+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: ha\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/ha/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/ha/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/ha/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:08+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:23+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: ha\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/he/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/he/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/he/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:19+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:29+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: he\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/he/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/he/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/he/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:08+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:23+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: he\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/hi/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/hi/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/hi/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,7 +4,7 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-03-21 01:52-0700\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
"PO-Revision-Date: 2011-03-18 10:50+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -88,6 +88,35 @@
msgid "About Torbutton"
msgstr "टोर बटन के बारे मे"
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+#, fuzzy
+msgid "Security Review:"
+msgstr "सुरक्षा सेटिंग"
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr "इन सेटिंग को बदलने के लिये टोर बटन को असमर्थ करे "
Modified: translation/trunk/projects/torbutton-alpha/po/hi/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/hi/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/hi/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:07+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:22+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: hi\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/hr/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/hr/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/hr/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,7 +4,7 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-03-21 01:52-0700\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
"PO-Revision-Date: 2011-03-18 10:49+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -89,6 +89,34 @@
msgid "About Torbutton"
msgstr "O Torbutton"
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr "Onemogućite Torbutton da biste promijenili ove postavke"
Modified: translation/trunk/projects/torbutton-alpha/po/hr/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/hr/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/hr/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,7 +4,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-03-21 01:52-0700\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -168,7 +168,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/ht/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/ht/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/ht/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:17+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:29+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: ht\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/ht/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/ht/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/ht/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:07+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:22+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: ht\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/hu/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/hu/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/hu/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:34+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:36+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: hu\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/hu/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/hu/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/hu/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:12+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:27+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: hu\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/hy/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/hy/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/hy/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:34+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:36+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: hy\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/hy/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/hy/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/hy/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:12+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:27+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: hy\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/id/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/id/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/id/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,7 +4,7 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-03-21 01:52-0700\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
"PO-Revision-Date: 2011-03-18 10:51+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -88,6 +88,35 @@
msgid "About Torbutton"
msgstr "Tentang Torbutton"
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+#, fuzzy
+msgid "Security Review:"
+msgstr "Pengaturan Keamanan"
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr "Nonaktifkan Torbutton mengubah pengaturan ini."
Modified: translation/trunk/projects/torbutton-alpha/po/id/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/id/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/id/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,7 +4,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-03-21 01:52-0700\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
"PO-Revision-Date: 2010-07-13 10:30-0600\n"
"Last-Translator: Iqbal Rush <iqbal_pikachu(a)yahoo.com>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -214,7 +214,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
"\n"
"Apabila berkas ini tidak dapat dipercaya, Anda sebaiknya menyimpannya untuk "
Modified: translation/trunk/projects/torbutton-alpha/po/is/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/is/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/is/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:23+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:31+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: is\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/is/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/is/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/is/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:09+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:25+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: is\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/it/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/it/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/it/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,7 +4,7 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-03-21 01:52-0700\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
"PO-Revision-Date: 2011-03-18 10:50+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Italian <None>\n"
@@ -88,6 +88,35 @@
msgid "About Torbutton"
msgstr "Informazioni su Torbutton"
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+#, fuzzy
+msgid "Security Review:"
+msgstr "Impostazioni di sicurezza"
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr "Disattiva Torbutton per modificare queste impostazioni"
Modified: translation/trunk/projects/torbutton-alpha/po/it/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/it/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/it/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,7 +4,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-03-21 01:52-0700\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
"PO-Revision-Date: 2010-09-29 09:56+0200\n"
"Last-Translator: Frate <>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -203,7 +203,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/ja/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/ja/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/ja/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,7 +4,7 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
"PO-Revision-Date: 2011-03-22 16:09+0000\n"
"Last-Translator: mikeperry <mikeperry-trans(a)fscked.org>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -88,6 +88,35 @@
msgid "About Torbutton"
msgstr "Torbuttonについて"
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+#, fuzzy
+msgid "Security Review:"
+msgstr "セキュリティ設定"
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr "これらの設定を変更するにはTorbuttonをオフにしてください"
Modified: translation/trunk/projects/torbutton-alpha/po/ja/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/ja/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/ja/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,7 +4,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-03-21 01:52-0700\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
"PO-Revision-Date: 2010-04-13 22:17-0600\n"
"Last-Translator: Shinji R. Yamane <s-yamane(a)computer.org>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/jv/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/jv/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/jv/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:33+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:36+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: jv\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/jv/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/jv/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/jv/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:12+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:26+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: jv\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/ka/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/ka/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/ka/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:35+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:36+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: ka\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/ka/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/ka/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/ka/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:12+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:27+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: ka\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/km/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/km/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/km/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:25+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:31+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: km\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/km/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/km/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/km/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:10+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:25+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: km\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/kn/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/kn/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/kn/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:35+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:37+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: kn\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/kn/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/kn/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/kn/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:13+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:27+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: kn\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/ko/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/ko/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/ko/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:17+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:29+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: ko\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/ko/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/ko/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/ko/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:07+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:22+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: ko\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/ku/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/ku/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/ku/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:36+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:37+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: ku\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/ku/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/ku/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/ku/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:13+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:27+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: ku\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/kw/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/kw/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/kw/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:36+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:37+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: kw\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/kw/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/kw/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/kw/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:13+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:27+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: kw\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/ky/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/ky/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/ky/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:36+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:37+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: ky\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/ky/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/ky/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/ky/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:13+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:27+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: ky\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/lb/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/lb/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/lb/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:14+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:28+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: lb\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/lb/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/lb/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/lb/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:05+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:20+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: lb\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/ln/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/ln/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/ln/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:14+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:28+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: ln\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/ln/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/ln/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/ln/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:05+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:20+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: ln\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/lo/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/lo/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/lo/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:15+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:28+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: lo\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/lo/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/lo/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/lo/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:05+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:20+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: lo\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/lt/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/lt/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/lt/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:15+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:29+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: lt\n"
@@ -89,6 +89,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/lt/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/lt/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/lt/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:06+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:21+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: lt\n"
@@ -167,7 +167,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/lv/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/lv/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/lv/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:15+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:28+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: lv\n"
@@ -89,6 +89,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/lv/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/lv/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/lv/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:06+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:20+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: lv\n"
@@ -167,7 +167,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/mg/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/mg/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/mg/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:19+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:29+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: mg\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/mg/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/mg/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/mg/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:08+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:23+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: mg\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/mi/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/mi/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/mi/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:20+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:30+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: mi\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/mi/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/mi/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/mi/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:08+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:24+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: mi\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/mk/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/mk/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/mk/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:21+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:30+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: mk\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/mk/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/mk/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/mk/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:08+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:24+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: mk\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/ml/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/ml/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/ml/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:20+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:30+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: ml\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/ml/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/ml/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/ml/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:08+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:23+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: ml\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/mn/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/mn/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/mn/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:20+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:30+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: mn\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/mn/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/mn/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/mn/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:08+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:24+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: mn\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/mr/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/mr/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/mr/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:22+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:30+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: mr\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/mr/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/mr/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/mr/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:09+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:24+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: mr\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/ms/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/ms/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/ms/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:32+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:33+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: ms\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/ms/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/ms/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/ms/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:11+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:26+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: ms\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/mt/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/mt/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/mt/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:21+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:30+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: mt\n"
@@ -89,6 +89,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/mt/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/mt/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/mt/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:09+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:24+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: mt\n"
@@ -167,7 +167,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/my/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/my/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/my/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,7 +4,7 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-03-21 01:52-0700\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
"PO-Revision-Date: 2011-03-18 10:50+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -88,6 +88,35 @@
msgid "About Torbutton"
msgstr "Torbutton အေၾကာင္း"
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+#, fuzzy
+msgid "Security Review:"
+msgstr "လံုျခံဳမႈအတြက္ ခ်ိန္ညိႇခ်က္မ်ား"
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr "၄င္းခ်ိန္ညႇိခ်က္မ်ားကို ေျပာင္းလဲရန္အတြက္ Torbutton ကုိ ပိတ္ထားရန္"
Modified: translation/trunk/projects/torbutton-alpha/po/my/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/my/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/my/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,7 +4,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-03-21 01:52-0700\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
"PO-Revision-Date: 2010-09-29 08:30+0200\n"
"Last-Translator: carolyn anhalt <carolyn(a)anhalt.org>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -206,7 +206,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/nah/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/nah/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/nah/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:28+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:32+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: nah\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/nah/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/nah/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/nah/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:10+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:26+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: nah\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/nap/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/nap/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/nap/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:29+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:32+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: nap\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/nap/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/nap/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/nap/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:11+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:26+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: nap\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/nb/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/nb/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/nb/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,7 +4,7 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-03-21 01:52-0700\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
"PO-Revision-Date: 2011-03-18 10:51+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -88,6 +88,35 @@
msgid "About Torbutton"
msgstr "Om Torbutton"
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+#, fuzzy
+msgid "Security Review:"
+msgstr "Sikkerhetsinnstillinger"
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr "Deaktiver Torbutton for å endre på disse innstillingene."
Modified: translation/trunk/projects/torbutton-alpha/po/nb/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/nb/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/nb/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,7 +4,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-03-21 01:52-0700\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
"PO-Revision-Date: 2010-05-10 03:59-0600\n"
"Last-Translator: Runa Sandvik <runa.sandvik(a)gmail.com>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -199,7 +199,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/ne/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/ne/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/ne/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:29+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:32+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: ne\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/ne/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/ne/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/ne/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:11+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:26+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: ne\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/nl/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/nl/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/nl/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,7 +4,7 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-03-21 01:52-0700\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
"PO-Revision-Date: 2011-03-18 10:51+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -89,6 +89,35 @@
msgid "About Torbutton"
msgstr "Over Torbutton"
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+#, fuzzy
+msgid "Security Review:"
+msgstr "Beveiligingsinstellingen"
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/nl/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/nl/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/nl/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,7 +4,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-03-21 01:52-0700\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
"PO-Revision-Date: 2010-04-16 04:13-0600\n"
"Last-Translator: Flabber <flabber(a)online.be>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -212,7 +212,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
"\n"
"Indien dit bestand niet vertrouwd wordt, zou het beter opgeslaan worden om "
Modified: translation/trunk/projects/torbutton-alpha/po/nn/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/nn/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/nn/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:28+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:32+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: nn\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/nn/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/nn/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/nn/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:10+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:25+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: nn\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/nso/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/nso/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/nso/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:14+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:28+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: nso\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/nso/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/nso/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/nso/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:04+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:18+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: nso\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/oc/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/oc/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/oc/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:14+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:28+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: oc\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/oc/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/oc/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/oc/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:05+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:20+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: oc\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/or/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/or/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/or/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:36+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:37+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: or\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/or/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/or/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/or/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:13+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:27+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: or\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/pa/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/pa/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/pa/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:15+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:29+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: pa\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/pa/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/pa/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/pa/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:06+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:21+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: pa\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/pap/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/pap/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/pap/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:27+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:31+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: pap\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/pap/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/pap/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/pap/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:10+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:25+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: pap\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/pl/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/pl/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/pl/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,7 +4,7 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-03-21 01:52-0700\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
"PO-Revision-Date: 2011-03-04 18:48+0000\n"
"Last-Translator: bogdrozd <bog.d(a)gazeta.pl>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -89,6 +89,35 @@
msgid "About Torbutton"
msgstr "O Torbutton"
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+#, fuzzy
+msgid "Security Review:"
+msgstr "Ustawienia bezpieczeństwa"
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr "Aby zmienić te ustawienia wyłącz Torbutton."
Modified: translation/trunk/projects/torbutton-alpha/po/pl/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/pl/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/pl/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -1,21 +1,24 @@
-# extracted from en-US/torbutton.properties, pl-PL/torbutton.properties
+#
+# bogdrozd <bog.d(a)gazeta.pl>, 2011.
+# mikeperry <mikeperry-trans(a)fscked.org>, 2011.
+# runasand <runa.sandvik(a)gmail.com>, 2011.
#. extracted from ../src/chrome/locale/en/torbutton.properties
msgid ""
msgstr ""
-"Project-Id-Version: Torbutton\n"
+"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-03-21 01:52-0700\n"
-"PO-Revision-Date: 2010-04-27 12:18-0700\n"
-"Last-Translator: saint <kochambrowar(a)gmail.com>\n"
-"Language-Team: pl\n"
-"Language: \n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-05-01 01:17+0000\n"
+"Last-Translator: mikeperry <mikeperry-trans(a)fscked.org>\n"
+"Language-Team: LANGUAGE <LL(a)li.org>\n"
+"Language: pl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
-"|| n%100>=20) ? 1 : 2);\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"|| n%100>=20) ? 1 : 2)\n"
"X-Accelerator-Marker: &\n"
+"X-Generator: Translate Toolkit 1.8.1\n"
#: torbutton.button.tooltip.disabled
msgid "Enable Tor"
@@ -207,13 +210,13 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
"\n"
"Jesli ten plik jest niezaufany, powinno się go zachować do oglądania offline "
"lub w maszynie wirtualnej,\n"
-"lub rozważyć używanie przezroczystego proxy Tor, jak Amnesia LiveCD, "
-"torsocks lub TorVM.\n"
+"lub rozważyć używanie przezroczystego proxy Tor, jak T(A)ILS LiveCD lub "
+"torsocks.\n"
#: torbutton.popup.launch
msgid "Launch application"
@@ -266,54 +269,8 @@
"\n"
"Would you like to request English language web pages for better privacy?"
msgstr ""
-
-#~ msgid ""
-#~ "Torbutton blocked changed-state history manipulation. This is to work "
-#~ "around a Firefox security bug.\n"
-#~ "\n"
-#~ "Hit 'enter' in the location box or open a new window or tab instead.\n"
-#~ "\n"
-#~ msgstr ""
-#~ "Torbutton zablokował manipulowanie historią, aby załatać niebezpieczną "
-#~ "lukę w Firefoxie.\n"
-#~ "\n"
-#~ "Naciśnij 'Enter' w polu adresu lub otwórz nową zakładkę lub okno.\n"
-#~ "\n"
-
-#~ msgid ""
-#~ "The most recent Tor proxy test failed to use Tor.\n"
-#~ "\n"
-#~ "Are you sure you want to enable anyway?"
-#~ msgstr ""
-#~ "Ostatni test proxy zakończył się niepowodzeniem.\n"
-#~ "\n"
-#~ "Czy mimo to chcesz kontynuować?"
-
-#~ msgid ""
-#~ "Torbutton blocked changed-state history manipulation.\n"
-#~ "\n"
-#~ "See history settings to allow.\n"
-#~ "\n"
-#~ msgstr ""
-#~ "Torbutton zablokował niebezpieczną dla anonimowości operację na "
-#~ "historii.\n"
-#~ "\n"
-#~ "Zobacz Ustawienia historii aby zmienić to ustawienie.\n"
-#~ "\n"
-
-#~ msgid ""
-#~ "Warning!\n"
-#~ "\n"
-#~ "Torbutton on Firefox 3 is known to leak your timezone and livemark feeds "
-#~ "during Tor usage. In addition, it has not been as extensively tested for "
-#~ "Tor security and usability as Firefox 2.\n"
-#~ "\n"
-#~ "Do you wish to continue anyway?"
-#~ msgstr ""
-#~ "Ostrzeżenie!\n"
-#~ "\n"
-#~ "Torbutton na Firefox 3 posiada lukę, która ujawnia Twoją strefę czasową "
-#~ "podczas pracy w trybie Tora. Ponadto nie został tak dokładnie "
-#~ "przetestowany pod kątem bezpieczeństwa i uzyteczności jak na Firefox 2.\n"
-#~ "\n"
-#~ "Czy pomimo tego chcesz kontynuować?"
+"Aby dać Ci więcej prywatności, Torbutton może żądać angielskich wersji stron "
+"internetowych. To może spowodować, że strony, które wolisz czytać we własnym "
+"języku będą się zamiast tego wyświetlać po angielsku.\n"
+"\n"
+"Czy chcesz żądać stron w języku angielskim dla lepszej prywatności?"
Modified: translation/trunk/projects/torbutton-alpha/po/pms/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/pms/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/pms/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:15+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:28+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: pms\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/pms/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/pms/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/pms/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:06+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:20+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: pms\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/ps/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/ps/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/ps/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:14+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:28+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: ps\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/ps/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/ps/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/ps/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:05+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:20+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: ps\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/pt/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/pt/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/pt/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,7 +4,7 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-03-21 01:52-0700\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
"PO-Revision-Date: 2011-03-18 10:49+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -89,6 +89,35 @@
msgid "About Torbutton"
msgstr "Sobre o Torbutton"
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+#, fuzzy
+msgid "Security Review:"
+msgstr "Configurações de Segurança"
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr "Desactivar o Torbutton para mudar estas configurações."
Modified: translation/trunk/projects/torbutton-alpha/po/pt/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/pt/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/pt/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,7 +4,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-03-21 01:52-0700\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
"PO-Revision-Date: 2009-12-13 13:07-0700\n"
"Last-Translator: Tiago Faria <gouki(a)goukihq.org>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -202,7 +202,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/pt_BR/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/pt_BR/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/pt_BR/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -1,12 +1,16 @@
#
+# <ssdoria(a)gmail.com>, 2011.
+# lyllo <lyllo.rj(a)gmail.com>, 2011.
+# mikeperry <mikeperry-trans(a)fscked.org>, 2011.
+# runasand <runa.sandvik(a)gmail.com>, 2011.
#. extracted from ../src/chrome/locale/en/torbutton.dtd
msgid ""
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-03-21 01:52-0700\n"
-"PO-Revision-Date: 2011-03-04 18:48+0000\n"
-"Last-Translator: lyllo <lyllo.rj(a)gmail.com>\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-06-30 08:58+0000\n"
+"Last-Translator: ssdoria <ssdoria(a)gmail.com>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n"
@@ -18,19 +22,19 @@
#: torbutton.prefs.title
msgid "Torbutton Preferences"
-msgstr "Preferências Torbutton"
+msgstr "Configurações do Botão do Tor"
#: torbutton.prefs.display_settings
msgid "Display Settings"
-msgstr "Mostrar configurações"
+msgstr "Exibir Configurações"
#: torbutton.prefs.display_panel
msgid "Display Tor proxy setting in the status bar"
-msgstr "Mostrar configurações do proxy Tor na barra de status"
+msgstr "Exibir as configurações de proxy do Tor na barra de status"
#: torbutton.prefs.panel_format
msgid "Status bar display format:"
-msgstr "Formato de amostra da barra de status"
+msgstr "Formato de exibição da barra de status:"
#: torbutton.prefs.panel_text_format
msgid "Text"
@@ -42,44 +46,44 @@
#: torbutton.prefs.tor_settings
msgid "Proxy Settings"
-msgstr "Configurações Proxy"
+msgstr "Configurações de Proxy"
#: torbutton.prefs.recommended_settings
msgid "Use the recommended proxy settings for my version of Firefox"
msgstr ""
-"Usar as cinfigurações recomendadas de proxy para minha versão de Firefox"
+"Usar as configurações de proxy recomendadas para a minha versão de Firefox"
#: torbutton.prefs.use_privoxy
msgid "Use Privoxy"
-msgstr "Usar Privoxy"
+msgstr "Usar o Privoxy"
#: torbutton.prefs.use_polipo
msgid "Use Polipo"
-msgstr "Usar Polipo"
+msgstr "Usar o Polipo"
#: torbutton.prefs.custom_settings
msgid "Use custom proxy settings"
-msgstr "Usar configurações padrão de proxy"
+msgstr "Usar configurações de proxy personalizadas"
#: torbutton.prefs.proxy.host.http
msgid "HTTP Proxy:"
-msgstr "Proxy HTTP:"
+msgstr "Proxy para HTTP:"
#: torbutton.prefs.proxy.host.https
msgid "SSL Proxy:"
-msgstr "Proxy SSL:"
+msgstr "Proxy para SSL:"
#: torbutton.prefs.proxy.host.ftp
msgid "FTP Proxy:"
-msgstr "Proxy FTP:"
+msgstr "Proxy para FTP:"
#: torbutton.prefs.proxy.host.gopher
msgid "Gopher Proxy:"
-msgstr "Proxy Gopher:"
+msgstr "Proxy para Gopher:"
#: torbutton.prefs.proxy.host.socks
msgid "SOCKS Host:"
-msgstr "Host SOCKS:"
+msgstr "Host para SOCKS:"
#: torbutton.prefs.proxy.port
msgid "Port:"
@@ -87,11 +91,40 @@
#: torbutton.about.title
msgid "About Torbutton"
-msgstr "Sobre Torbutton"
+msgstr "Sobre o Botão do Tor"
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+#, fuzzy
+msgid "Security Review:"
+msgstr "Configurações de Segurança"
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
-msgstr "Desabilitar Torbutton para mudar essas configurações."
+msgstr "Desabilitar o Botão do Tor para alterar essas configurações."
#: torbutton.pref_connection.more_info
msgid "More information"
@@ -107,14 +140,14 @@
"proxy settings, please disable Torbutton and return here. If you would like "
"to change your Tor settings, please use the Torbutton preference window."
msgstr ""
-"Torbutton está habilitado. Se você deseja mudar as configurações de Proxy "
-"que não sejam do Tor, por favor desabilite Torbutton e retorne aqui. Se você "
-"deseja mudar as configurações do Tor, por favor, use a janela de preferência "
-"do Torbutton."
+"O Botão do Tor está habilitado. Se deseja alterar as configurações de proxy "
+"não relacionadas ao Tor, por favor desabilite o Botão do Tor e retorne aqui. "
+"Se você deseja alterar as configurações do Tor, por favor use a janela de "
+"configurações do Botão do Tor."
#: torbutton.context_menu.toggle
msgid "Toggle Tor status"
-msgstr "Alterar Status Tor"
+msgstr "Alternar o Status do Tor"
#: torbutton.context_menu.toggle.key
msgid "T"
@@ -122,7 +155,7 @@
#: torbutton.context_menu.preferences
msgid "Preferences..."
-msgstr "Preferências..."
+msgstr "Configurações..."
#: torbutton.context_menu.preferences.key
msgid "P"
@@ -130,7 +163,7 @@
#: torbutton.context_menu.about
msgid "About Torbutton..."
-msgstr "Sobre Torbutton..."
+msgstr "Sobre o Botão do Tor..."
#: torbutton.context_menu.about.key
msgid "A"
@@ -138,7 +171,7 @@
#: torbutton.context_menu.cookieProtections
msgid "Cookie Protections"
-msgstr "Proteções de Cookies"
+msgstr "Proteções para Cookies"
#: torbutton.context_menu.cookieProtections.key
msgid "C"
@@ -146,7 +179,7 @@
#: torbutton.context_menu.copyTor
msgid "Copy Tor URL"
-msgstr "Copiar URL do Tor"
+msgstr "Copiar a URL do Tor"
#: torbutton.context_menu.copyTor.key
msgid "p"
@@ -154,7 +187,7 @@
#: torbutton.context_menu.openTorTab
msgid "Open Tor URL in new Tab"
-msgstr "Abrir URL do Tor em uma nova Aba"
+msgstr "Abrir a URL do Tor em uma nova Aba"
#: torbutton.context_menu.openTorTab.key
msgid "r"
@@ -162,7 +195,7 @@
#: torbutton.context_menu.openTorWindow
msgid "Open Tor URL in new Window"
-msgstr "Abrir URL do Tor em uma nova Janela"
+msgstr "Abrir a URL do Tor em uma nova Janela"
#: torbutton.context_menu.openTorWindow.key
msgid "d"
@@ -170,11 +203,11 @@
#: torbutton.button.label
msgid "Torbutton"
-msgstr "Torbutton"
+msgstr "Botão do Tor"
#: torbutton.button.tooltip
msgid "Click to initialize Torbutton"
-msgstr "Clique para iniciar Torbutton"
+msgstr "Clique para iniciar o Botão do Tor"
#: torbutton.prefs.sec_settings
msgid "Security Settings"
@@ -182,63 +215,65 @@
#: torbutton.prefs.block_thread
msgid "Block history reads during Tor (crucial)"
-msgstr "Bloquear leitura do histórico durante a utilização do TOR (importante)"
+msgstr ""
+"Bloquear leituras do histórico durante a utilização do Tor (importante)"
#: torbutton.prefs.block_thwrite
msgid "Block history writes during Tor (recommended)"
msgstr ""
-"Bloquear escrita no histórico durante a utilização do TOR (recomendado)"
+"Bloquear escritas no histórico durante a utilização do Tor (recomendado)"
#: torbutton.prefs.block_nthread
msgid "Block history reads during Non-Tor (optional)"
msgstr ""
-"Bloquear leitura do histórico durante a não utilização do TOR (opcional)"
+"Bloquear leituras do histórico quando não estiver utilizando o Tor (opcional)"
#: torbutton.prefs.block_nthwrite
msgid "Block history writes during Non-Tor (optional)"
msgstr ""
-"Bloquear escrita no histórico durante a não utilização do TOR (opcional)"
+"Bloquear escritas no histórico quando não estiver utilizando o Tor (opcional)"
#: torbutton.prefs.clear_history
msgid "Clear history on Tor toggle (optional)"
-msgstr "Limpar histórico ao alternar o uso do TOR (opcional)"
+msgstr "Limpar histórico ao alternar o status do Tor (opcional)"
#: torbutton.prefs.clear_cache
msgid "Block Tor disk cache and clear all cache on Tor toggle"
msgstr ""
-"Bloquear o cache de disco e limpar todos os caches ao alterar o uso do TOR"
+"Bloquear o cache de disco do Tor e limpar todos os caches ao alternar o "
+"status do Tor"
#: torbutton.prefs.block_cache
msgid "Block disk and memory cache access during Tor"
-msgstr "Bloquear cache de memória e disco durante o uso do TOR"
+msgstr "Bloquear o acesso ao cache de memória e de disco durante o uso do Tor"
#: torbutton.prefs.cookie_jars
msgid "Store Non-Tor cookies in a protected jar"
-msgstr "Armazenar todos os cookies não-Tor num contêiner protegido"
+msgstr "Armazenar todos os cookies não relacionados ao Tor num jar protegido"
#: torbutton.prefs.cookie_protection
msgid "Use the Cookie Protections Dialog to choose"
-msgstr "Usar a Caixa de Diálogo de Proteções de Cookies para selecionar"
+msgstr "Usar a caixa de diálogo Proteções para Cookies para selecionar"
#: torbutton.prefs.mmm_cookies
msgid "I will manually manage my cookies (dangerous)"
-msgstr "I manualmente gerenciarei meus cookies (atenção)"
+msgstr "Desejo gerenciar meus cookies manualmente (perigoso)"
#: torbutton.prefs.clear_cookies
msgid "Clear cookies on Tor toggle"
-msgstr "Limpar cookies quando alternar TOR"
+msgstr "Limpar cookies ao alternar o status do Tor"
#: torbutton.prefs.disable_plugins
msgid "Disable plugins during Tor usage (crucial)"
-msgstr "Desabilitar plugins durante o uso do TOR (importante)"
+msgstr "Desabilitar complementos durante o uso do Tor (importante)"
#: torbutton.prefs.kill_bad_js
msgid "Hook dangerous javascript (crucial)"
-msgstr "Deter os scripts perigosos de java (crucial)"
+msgstr "Bloquear os códigos javascript perigosos (importante)"
#: torbutton.prefs.isolate_content
msgid "Isolate dynamic content to Tor state (crucial)"
-msgstr "Isolar os conteúdos dinâmicos no arquivo de estado de Tor (crucial)"
+msgstr "Isolar os conteúdos dinâmicos ao status atual do Tor (importante)"
#: torbutton.prefs.no_updates
msgid "Disable updates during Tor usage"
@@ -246,7 +281,7 @@
#: torbutton.prefs.set_uagent
msgid "Set user agent for Tor usage (crucial)"
-msgstr "Mascarar user agent durante utilização de TOR (importante)"
+msgstr "Definir o user agent para o uso do Tor (importante)"
#: torbutton.prefs.dynamic
msgid "Dynamic Content"
@@ -266,62 +301,61 @@
#: torbutton.prefs.no_search
msgid "Disable search suggestions during Tor (recommended)"
-msgstr "Desabilitar sugestões de pesquisa durante o uso do TOR (recomendado)"
+msgstr ""
+"Desabilitar as sugestões de pesquisa durante o uso do Tor (recomendado)"
#: torbutton.prefs.shutdown
msgid "Shutdown"
-msgstr "Desligar"
+msgstr "Encerrar"
#: torbutton.prefs.tor_shutdown
msgid "Clear Tor cookies during Tor-enabled browser shutdown"
-msgstr ""
-"Limpar cookies quando o TOR estiver habilitado e o navegador for fechado"
+msgstr "Limpar os cookies do Tor quando um navegador com Tor for encerrado"
#: torbutton.prefs.all_shutdown
msgid "Clear cookies during any browser shutdown"
-msgstr "Limpar cookies quando qualquer navegador for fechado"
+msgstr "Limpar cookies quando qualquer navegador for encerrado"
#: torbutton.prefs.no_shutdown
msgid "Do not clear my cookies at shutdown"
-msgstr "Não limpar meus cookies ao desligar"
+msgstr "Não limpar meus cookies ao encerrar"
#: torbutton.prefs.disable_sessionstore
msgid "Disable Session Saving (recommended)"
-msgstr "Desabilitar função de salvar sessão (recomendado)"
+msgstr "Desabilitar o salvamento de sessão (recomendado)"
#: torbutton.prefs.headers
msgid "Headers"
-msgstr "Cabeçalho"
+msgstr "Cabeçalhos"
#: torbutton.prefs.spoof_english
msgid "Spoof US English Browser"
-msgstr "Mimetizar o navegador para Inglês US"
+msgstr "Aparentar um Navegador em Inglês Americano"
#: torbutton.prefs.refererspoofing
msgid "Referer spoofing"
-msgstr "Engano de referenciador"
+msgstr "Falsificar origem"
#: torbutton.prefs.spoofblank
msgid "Spoof blank referer during Tor usage (may break some sites)"
msgstr ""
-"Enganar referenciador em branco durante o uso do Tor (pode não funcionar com "
+"Aparentar origem em branco durante o uso do Tor (pode não funcionar com "
"alguns sites)"
#: torbutton.prefs.smartspoof
msgid "Smart referer spoof during Tor usage (spoofs cross domain referers)"
msgstr ""
-"Enganar de forma inteligente o referenciador durante o uso do Tor (engana "
-"referenciadores em domínios cruzados)"
+"Falsificar de forma inteligente a origem durante o uso do Tor (falsifica a "
+"origem em domínios cruzados)"
#: torbutton.prefs.nospoof
msgid "No referer spoof during Tor usage (sends referers as normal)"
msgstr ""
-"Não enganar o referenciador durante o uso do Tor (envia referenciadores "
-"normais)"
+"Não falsificar a origem durante o uso do Tor (envia a origem normalmente)"
#: torbutton.prefs.disable_domstorage
msgid "Disable DOM Storage during Tor usage (crucial)"
-msgstr "Desabilitar armazenamento DOM durante o uso do TOR (importante)"
+msgstr "Desabilitar o armazenamento do DOM durante o uso do Tor (importante)"
#: torbutton.prefs.forms
msgid "Forms"
@@ -330,13 +364,14 @@
#: torbutton.prefs.block_tforms
msgid "Block password+form saving during Tor (recommended)"
msgstr ""
-"Bloquear senhas + informações de formulários durante o uso do TOR "
+"Bloquear senhas e informações de formulários durante o uso do Tor "
"(recomendado)"
#: torbutton.prefs.block_ntforms
msgid "Block password+form saving during Non-Tor (optional)"
msgstr ""
-"Bloquear senhas + informações de formulários quando não usar o TOR (opcional)"
+"Bloquear senhas e informações de formulários quando não estiver usando o Tor "
+"(opcional)"
#: torbutton.prefs.tor
msgid "Tor"
@@ -344,11 +379,11 @@
#: torbutton.prefs.non_tor
msgid "Non-Tor"
-msgstr "Não-Tor"
+msgstr "Não relacionado ao Tor"
#: torbutton.prefs.restore_tor
msgid "On session restored startup, set Tor state to:"
-msgstr "Quando restaurar sessão, definir estado do Tor para:"
+msgstr "Quando restaurar uma sessão, definir o status do Tor para:"
#: torbutton.prefs.startup_tor
msgid "On browser startup, set Tor state to:"
@@ -356,13 +391,13 @@
#: torbutton.prefs.reload_crashed_jar
msgid "Reload cookie jar/clear cookies on Firefox crash (recommended)"
-msgstr "Recarregar cookie/limpar cookies em uma falha do Firefox (recomendado)"
+msgstr ""
+"Recarregar o jar de cookies/limpar cookies em caso de falha do Firefox "
+"(recomendado)"
#: torbutton.prefs.dual_cookie_jars
msgid "Store both Tor and Non-Tor cookies in protected jars (dangerous)"
-msgstr ""
-"Armazene os cookies, sejam ou não de Tor, em recipientes protegidos "
-"(Perigoso)"
+msgstr "Armazenar os cookies, do Tor ou não, em jars protegidos (perigoso)"
#: torbutton.prefs.clear_http_auth
msgid "Clear HTTP auth sessions (recommended)"
@@ -371,40 +406,41 @@
#: torbutton.prefs.block_js_history
msgid "Isolate access to history navigation to Tor state (crucial)"
msgstr ""
-"Isolar o acesso ao histórico de navegação ao arquivo de estado de Tor "
-"(crucial)"
+"Isolar o acesso ao histórico de navegação ao status atual do Tor (importante)"
#: torbutton.prefs.resize_on_toggle
msgid "Resize windows to multiples of 50px during Tor usage (recommended)"
msgstr ""
-"Alterar o tamanho das páginas em múltiplos de 50px durante o uso de Tor "
+"Redimensionar janelas em múltiplos de 50 px durante o uso do Tor "
"(recomendado)"
#: torbutton.prefs.close_tor
msgid "Close all Tor windows and tabs on toggle (optional)"
-msgstr "Fechar todas as páginas e abas abertas com Tor ao comutar (opcional)"
+msgstr "Fechar todas as janelas e abas do Tor ao alternar o status (opcional)"
#: torbutton.prefs.close_nontor
msgid "Close all Non-Tor windows and tabs on toggle (optional)"
-msgstr "Fechar todas as páginas e abas não-Tor ao comutar (opcional)"
+msgstr ""
+"Fechar todas as janelas e abas não relacionadas ao Tor ao alternar o status "
+"(opcional)"
#: torbutton.prefs.block_links
msgid "Block link clicks and page reloads from different Tor states (optional)"
msgstr ""
-"Bloquear os link clicks e as recarga de páginas desde diferentes arquivos de "
-"estado de Tor (opcional)"
+"Bloquear cliques aos links e atualizações de páginas de status do Tor "
+"diferente do atual (opcional)"
#: torbutton.prefs.jar_certs
msgid "Store SSL certs in seperate jars for Tor/Non-Tor (recommended)"
msgstr ""
-"Armazene certificados SSL em arquivos de estado de Tor separados para "
-"páginas Tor e não-Tor (recomendado)"
+"Armazenar certificados SSL, em jars separados, um para o que for do Tor e um "
+"para o que não for (recomendado)"
#: torbutton.prefs.jar_ca_certs
msgid "Store CA certs in seperate jars for Tor/Non-Tor (recommended)"
msgstr ""
-"Armazene certificados CA em arquivos de estado separados para páginas Tor e "
-"não-Tor (recomendado)"
+"Armazenar certificados da AC, em jars separados, um para o for do Tor e um "
+"para o que não for (recomendado)"
#: torbutton.prefs.locked_mode
msgid "Disable Button and Hotkeys to prevent accidental toggle"
Modified: translation/trunk/projects/torbutton-alpha/po/pt_BR/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/pt_BR/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/pt_BR/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,7 +4,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-03-21 01:52-0700\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
"PO-Revision-Date: 2009-12-03 14:49-0700\n"
"Last-Translator: Bruno G Oliveira <bruno.mphx2(a)gmail.com>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -200,7 +200,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/ro/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/ro/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/ro/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,7 +4,7 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-03-21 01:52-0700\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
"PO-Revision-Date: 2011-03-18 10:51+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -90,6 +90,35 @@
msgid "About Torbutton"
msgstr "Despre Torbutton"
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+#, fuzzy
+msgid "Security Review:"
+msgstr "Setări de securitate"
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr "Dezactivaţi Torbutton pentru a schimba aceste setări."
Modified: translation/trunk/projects/torbutton-alpha/po/ro/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/ro/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/ro/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,7 +4,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-03-21 01:52-0700\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
"PO-Revision-Date: 2010-08-19 19:27+0200\n"
"Last-Translator: m3ta user <zugravu.gheorghe(a)gmail.com>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -211,7 +211,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
"\n"
"Dacă acest fişier este de încredere, ar trebui să fie salvaţ pentru a putea "
Modified: translation/trunk/projects/torbutton-alpha/po/ru/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/ru/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/ru/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,7 +4,7 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-03-21 01:52-0700\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
"PO-Revision-Date: 2011-03-04 18:48+0000\n"
"Last-Translator: axe <axe.rode(a)ymail.com>\n"
"Language-Team: Russian <None>\n"
@@ -90,6 +90,35 @@
msgid "About Torbutton"
msgstr "Справка"
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+#, fuzzy
+msgid "Security Review:"
+msgstr "Настройки безопасности"
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr "Для изменения настроек необходимо отключить Torbutton."
Modified: translation/trunk/projects/torbutton-alpha/po/ru/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/ru/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/ru/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,7 +4,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-03-21 01:52-0700\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
"PO-Revision-Date: 2010-08-02 20:21+0200\n"
"Last-Translator: achu <alex(a)chumakov.ru>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -216,7 +216,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
"\n"
"Если вы не доверяете этому файлу, следует сохранить его для просмотра при "
Modified: translation/trunk/projects/torbutton-alpha/po/sco/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/sco/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/sco/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:13+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:28+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: sco\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/sco/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/sco/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/sco/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:04+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:18+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: sco\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/sk/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/sk/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/sk/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:36+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:37+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: sk\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/sk/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/sk/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/sk/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:13+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:27+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: sk\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/sl/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/sl/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/sl/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,7 +4,7 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
"PO-Revision-Date: 2011-04-30 12:36+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -91,6 +91,35 @@
msgid "About Torbutton"
msgstr "O razširitvi Torbutton"
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+#, fuzzy
+msgid "Security Review:"
+msgstr "Varnostne Nastavitve"
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr "Če želite spremeniti te nastavitve onemogočite razširitev Torbutton."
Modified: translation/trunk/projects/torbutton-alpha/po/sl/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/sl/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/sl/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,7 +4,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-03-21 01:52-0700\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
"PO-Revision-Date: 2010-03-04 06:03-0700\n"
"Last-Translator: yeah right <telingit.howitis(a)gmail.com>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -177,7 +177,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/so/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/so/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/so/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:30+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:33+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: so\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/so/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/so/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/so/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:11+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:26+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: so\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/son/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/son/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/son/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:14+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:28+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: son\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/son/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/son/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/son/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:04+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:19+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: son\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/sq/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/sq/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/sq/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:35+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:37+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: sq\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/sq/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/sq/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/sq/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:13+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:27+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: sq\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/sr/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/sr/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/sr/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,7 +4,7 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
"PO-Revision-Date: 2011-04-30 12:35+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -89,6 +89,35 @@
msgid "About Torbutton"
msgstr "О додатку"
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+#, fuzzy
+msgid "Security Review:"
+msgstr "Безбедносне поставке"
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr "Забрани промену ових поставки."
Modified: translation/trunk/projects/torbutton-alpha/po/sr/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/sr/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/sr/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,7 +4,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-03-21 01:52-0700\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
"PO-Revision-Date: 2010-06-20 13:51-0600\n"
"Last-Translator: George Bush <theranchcowboy(a)googlemail.com>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -211,7 +211,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
"\n"
"Ако сматрате ову датотеку непоузданом, сачувајте је за приказивање ван "
Modified: translation/trunk/projects/torbutton-alpha/po/st/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/st/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/st/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:36+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:37+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: st\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/st/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/st/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/st/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:13+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:27+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: st\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/su/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/su/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/su/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:35+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:37+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: su\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/su/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/su/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/su/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:13+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:27+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: su\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/sv/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/sv/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/sv/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,7 +4,7 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
"PO-Revision-Date: 2011-04-30 12:24+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -90,6 +90,35 @@
msgid "About Torbutton"
msgstr "Om Torbutton"
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+#, fuzzy
+msgid "Security Review:"
+msgstr "Säkerhetsinställningar"
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr "Avaktivera Torbutton för att ändra dessa inställningar."
Modified: translation/trunk/projects/torbutton-alpha/po/sv/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/sv/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/sv/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,7 +4,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-03-21 01:52-0700\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
"PO-Revision-Date: 2010-06-27 08:49-0600\n"
"Last-Translator: Yosh Marklund <torproject(a)yosh.se>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/sw/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/sw/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/sw/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:35+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:37+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: sw\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/sw/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/sw/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/sw/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:13+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:27+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: sw\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/ta/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/ta/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/ta/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:16+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:29+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: ta\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/ta/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/ta/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/ta/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:07+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:22+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: ta\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/te/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/te/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/te/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:15+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:29+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: te\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/te/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/te/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/te/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:06+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:21+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: te\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/templates/torbutton.dtd.pot
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/templates/torbutton.dtd.pot 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/templates/torbutton.dtd.pot 2011-07-01 22:45:37 UTC (rev 24854)
@@ -3,14 +3,14 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.8.1\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
"X-Accelerator-Marker: &\n"
#: torbutton.prefs.title
@@ -85,6 +85,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/templates/torbutton.properties.pot
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/templates/torbutton.properties.pot 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/templates/torbutton.properties.pot 2011-07-01 22:45:37 UTC (rev 24854)
@@ -3,14 +3,14 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.8.1\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
"X-Accelerator-Marker: &\n"
#: torbutton.button.tooltip.disabled
@@ -162,7 +162,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/tg/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/tg/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/tg/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:15+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:29+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: tg\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/tg/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/tg/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/tg/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:06+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:21+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: tg\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/th/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/th/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/th/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,7 +4,7 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-03-21 01:52-0700\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
"PO-Revision-Date: 2011-03-18 10:49+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr "เกี่ยวกับ Torbutton"
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/th/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/th/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/th/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:06+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:21+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: th\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/ti/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/ti/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/ti/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:15+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:29+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: ti\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/ti/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/ti/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/ti/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:06+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:21+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: ti\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/tk/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/tk/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/tk/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:15+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:29+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: tk\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/tk/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/tk/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/tk/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:06+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:21+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: tk\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/tr/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/tr/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/tr/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,7 +4,7 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-03-21 01:52-0700\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
"PO-Revision-Date: 2011-03-18 10:49+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -88,6 +88,35 @@
msgid "About Torbutton"
msgstr "Torbutton Hakkında"
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+#, fuzzy
+msgid "Security Review:"
+msgstr "Güvenlik Ayarları"
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr "Ayarları uygulumak için Torbutonu devredışı bırak."
Modified: translation/trunk/projects/torbutton-alpha/po/tr/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/tr/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/tr/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -1,23 +1,22 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+# mikeperry <mikeperry-trans(a)fscked.org>, 2011.
+# runasand <runa.sandvik(a)gmail.com>, 2011.
#. extracted from ../src/chrome/locale/en/torbutton.properties
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
+"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-03-21 01:52-0700\n"
-"PO-Revision-Date: 2010-08-26 03:00+0200\n"
-"Last-Translator: Necdet <necdetyucel(a)gmail.com>\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-05-01 01:15+0000\n"
+"Last-Translator: mikeperry <mikeperry-trans(a)fscked.org>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: tr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Pootle 2.0.5\n"
+"Plural-Forms: nplurals=1; plural=0\n"
"X-Accelerator-Marker: &\n"
+"X-Generator: Translate Toolkit 1.8.1\n"
#: torbutton.button.tooltip.disabled
msgid "Enable Tor"
@@ -212,15 +211,12 @@
"\n"
#: torbutton.popup.external.suggest
-#, fuzzy
msgid ""
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
-"\n"
-"Bu dosya güvenilmezse, kaydetmeli yada dosyaya çevrimdışı bakmalısınız.\n"
#: torbutton.popup.launch
msgid "Launch application"
@@ -281,9 +277,3 @@
"\n"
"Would you like to request English language web pages for better privacy?"
msgstr ""
-
-#~ msgid ""
-#~ "The most recent Tor proxy test failed to use Tor.\n"
-#~ "\n"
-#~ "Are you sure you want to enable anyway?"
-#~ msgstr "En son yapmış olduğunuz proxy testi başarısız oldu.\n"
Modified: translation/trunk/projects/torbutton-alpha/po/uk/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/uk/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/uk/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -1,12 +1,14 @@
#
+# Сергій Гаврилов <sergiovana(a)bigmir.net>, 2011.
+# runasand <runa.sandvik(a)gmail.com>, 2011.
#. extracted from ../src/chrome/locale/en/torbutton.dtd
msgid ""
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-03-21 01:52-0700\n"
-"PO-Revision-Date: 2011-03-18 10:50+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-05-11 19:26+0000\n"
+"Last-Translator: Sergiy_Gavrylov <sergiovana(a)bigmir.net>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: uk\n"
"MIME-Version: 1.0\n"
@@ -23,7 +25,7 @@
#: torbutton.prefs.display_settings
msgid "Display Settings"
-msgstr "Показати опції"
+msgstr "Показати параметри"
#: torbutton.prefs.display_panel
msgid "Display Tor proxy setting in the status bar"
@@ -39,15 +41,15 @@
#: torbutton.prefs.panel_icon_format
msgid "Icon"
-msgstr "Іконка"
+msgstr "Значок"
#: torbutton.prefs.tor_settings
msgid "Proxy Settings"
-msgstr "Властивості проксі"
+msgstr "Параметри проксі"
#: torbutton.prefs.recommended_settings
msgid "Use the recommended proxy settings for my version of Firefox"
-msgstr "Використовувати рекомендовані значення для моєї версії Фірефоху"
+msgstr "Використовувати рекомендовані параметри для моєї версії Firefox"
#: torbutton.prefs.use_privoxy
msgid "Use Privoxy"
@@ -55,7 +57,7 @@
#: torbutton.prefs.use_polipo
msgid "Use Polipo"
-msgstr ""
+msgstr "Використовувати Polipo"
#: torbutton.prefs.custom_settings
msgid "Use custom proxy settings"
@@ -79,7 +81,7 @@
#: torbutton.prefs.proxy.host.socks
msgid "SOCKS Host:"
-msgstr "SOCKS хост:"
+msgstr "Вузол SOCKS:"
#: torbutton.prefs.proxy.port
msgid "Port:"
@@ -89,6 +91,35 @@
msgid "About Torbutton"
msgstr "Про Torbutton"
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+#, fuzzy
+msgid "Security Review:"
+msgstr "Параметри безпеки"
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr "Вимкніть Torbutton, щоб змінити ці налаштування"
@@ -99,7 +130,7 @@
#: torbutton.pref_connection_more_info.title
msgid "Help"
-msgstr "Допомога"
+msgstr "Довідка"
#: torbutton.pref_connection_more_info.text
msgid ""
@@ -138,35 +169,35 @@
#: torbutton.context_menu.cookieProtections
msgid "Cookie Protections"
-msgstr ""
+msgstr "Захист куки"
#: torbutton.context_menu.cookieProtections.key
msgid "C"
-msgstr ""
+msgstr "C"
#: torbutton.context_menu.copyTor
msgid "Copy Tor URL"
-msgstr ""
+msgstr "Копіювати адресу Tor"
#: torbutton.context_menu.copyTor.key
msgid "p"
-msgstr ""
+msgstr "p"
#: torbutton.context_menu.openTorTab
msgid "Open Tor URL in new Tab"
-msgstr ""
+msgstr "Відкрити адресу Tor у новій вкладці"
#: torbutton.context_menu.openTorTab.key
msgid "r"
-msgstr ""
+msgstr "r"
#: torbutton.context_menu.openTorWindow
msgid "Open Tor URL in new Window"
-msgstr ""
+msgstr "Відкрити адресу Tor у новому вікні"
#: torbutton.context_menu.openTorWindow.key
msgid "d"
-msgstr ""
+msgstr "d"
#: torbutton.button.label
msgid "Torbutton"
@@ -178,7 +209,7 @@
#: torbutton.prefs.sec_settings
msgid "Security Settings"
-msgstr "Налаштування безпеки"
+msgstr "Параметри безпеки"
#: torbutton.prefs.block_thread
msgid "Block history reads during Tor (crucial)"
@@ -214,7 +245,7 @@
#: torbutton.prefs.cookie_protection
msgid "Use the Cookie Protections Dialog to choose"
-msgstr ""
+msgstr "Використовувати для вибору діалог захисту куків"
#: torbutton.prefs.mmm_cookies
msgid "I will manually manage my cookies (dangerous)"
@@ -226,7 +257,7 @@
#: torbutton.prefs.disable_plugins
msgid "Disable plugins during Tor usage (crucial)"
-msgstr "Вимикати плагіни при використанні Tor (критично)"
+msgstr "Вимикати модулі протягом використання Tor (критично)"
#: torbutton.prefs.kill_bad_js
msgid "Hook dangerous javascript (crucial)"
@@ -238,7 +269,7 @@
#: torbutton.prefs.no_updates
msgid "Disable updates during Tor usage"
-msgstr "Не дозволяти оновлень при використанні Tor"
+msgstr "Вимкнути оновлення протягом використання Tor"
#: torbutton.prefs.set_uagent
msgid "Set user agent for Tor usage (crucial)"
Modified: translation/trunk/projects/torbutton-alpha/po/uk/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/uk/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/uk/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:09+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:24+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: uk\n"
@@ -167,7 +167,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/ur/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/ur/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/ur/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:21+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:30+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: ur\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/ur/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/ur/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/ur/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:08+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:24+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: ur\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/ve/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/ve/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/ve/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:23+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:30+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: ve\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/ve/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/ve/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/ve/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:09+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:24+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: ve\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/vi/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/vi/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/vi/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,7 +4,7 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-03-21 01:52-0700\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
"PO-Revision-Date: 2011-03-18 10:50+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -88,6 +88,35 @@
msgid "About Torbutton"
msgstr "Thông tin về Torbutton"
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+#, fuzzy
+msgid "Security Review:"
+msgstr "Thiết lập Bảo mật"
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr "Tắt Torbutton để thay đổi các thiết lập này."
Modified: translation/trunk/projects/torbutton-alpha/po/vi/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/vi/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/vi/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,7 +4,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-03-21 01:52-0700\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
"PO-Revision-Date: 2010-03-05 23:05+0930\n"
"Last-Translator: Lyndon Johnson <lyndon.johnson58(a)gmail.com>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -201,7 +201,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/wa/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/wa/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/wa/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:32+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:33+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: wa\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/wa/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/wa/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/wa/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:11+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:26+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: wa\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/wo/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/wo/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/wo/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:33+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:34+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: wo\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/wo/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/wo/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/wo/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:11+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:26+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: wo\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/zh_CN/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/zh_CN/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/zh_CN/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,7 +4,7 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-03-21 01:52-0700\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
"PO-Revision-Date: 2011-03-04 18:48+0000\n"
"Last-Translator: xtoaster <zhazhenzhong(a)gmail.com>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -88,6 +88,35 @@
msgid "About Torbutton"
msgstr "关于 Torbutton"
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+#, fuzzy
+msgid "Security Review:"
+msgstr "安全选项"
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr "禁用 Torbutton 来改变这些设置。"
Modified: translation/trunk/projects/torbutton-alpha/po/zh_CN/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/zh_CN/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/zh_CN/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -10,7 +10,7 @@
msgstr ""
"Project-Id-Version: torbutton\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-03-21 01:52-0700\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
"PO-Revision-Date: 2010-09-19 15:26+0800\n"
"Last-Translator: Aron Xu <happyaron.xu(a)gmail.com>\n"
"Language-Team: Chinese (simplified) <i18n-zh(a)googlegroups.com>\n"
@@ -207,7 +207,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
"\n"
"如果这个文件不可信,您应该将其保存后离线察看或置于虚拟机中察看,\n"
Modified: translation/trunk/projects/torbutton-alpha/po/zh_HK/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/zh_HK/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/zh_HK/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:16+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:29+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: zh_HK\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/zh_HK/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/zh_HK/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/zh_HK/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:07+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:22+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: zh_HK\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/zh_TW/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/zh_TW/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/zh_TW/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,7 +4,7 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-03-21 01:52-0700\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
"PO-Revision-Date: 2011-03-18 10:49+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr "關於 Torbutton"
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr "停用Torbutton來改變設定"
Modified: translation/trunk/projects/torbutton-alpha/po/zh_TW/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/zh_TW/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/zh_TW/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,7 +4,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-03-21 01:52-0700\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
Modified: translation/trunk/projects/torbutton-alpha/po/zu/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/zu/torbutton.dtd.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/zu/torbutton.dtd.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:26+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:31+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: zu\n"
@@ -88,6 +88,34 @@
msgid "About Torbutton"
msgstr ""
+#: torbutton.about.version
+msgid "Version:"
+msgstr ""
+
+#: torbutton.about.summary
+msgid "Protects the privacy of your Tor browsing."
+msgstr ""
+
+#: torbutton.about.code
+msgid "Code Contributors:"
+msgstr ""
+
+#: torbutton.about.maintainer
+msgid "Maintainer:"
+msgstr ""
+
+#: torbutton.about.security_review
+msgid "Security Review:"
+msgstr ""
+
+#: torbutton.about.donate
+msgid "If you like using Tor, you might consider"
+msgstr ""
+
+#: torbutton.about.make_donation
+msgid "making a donation."
+msgstr ""
+
#: torbutton.pref_connection.notice
msgid "Disable Torbutton to change these settings."
msgstr ""
Modified: translation/trunk/projects/torbutton-alpha/po/zu/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton-alpha/po/zu/torbutton.properties.po 2011-07-01 01:31:19 UTC (rev 24853)
+++ translation/trunk/projects/torbutton-alpha/po/zu/torbutton.properties.po 2011-07-01 22:45:37 UTC (rev 24854)
@@ -4,8 +4,8 @@
msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-04-30 18:06-0700\n"
-"PO-Revision-Date: 2011-04-30 12:10+0000\n"
+"POT-Creation-Date: 2011-07-01 15:42-0700\n"
+"PO-Revision-Date: 2011-07-01 22:25+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
"Language: zu\n"
@@ -166,7 +166,7 @@
"\n"
"If this file is untrusted, you should either save it to view while offline "
"or in a VM,\n"
-"or consider using a transparent Tor proxy like T(A)ILS LiveCD or torsocks.\n"
+"or consider using a transparent Tor proxy like Tails LiveCD or torsocks.\n"
msgstr ""
#: torbutton.popup.launch
1
0
commit 0e11e56c5cbe65fd5f942c524258b6c43ad42366
Author: Mike Perry <mikeperry-git(a)fscked.org>
Date: Fri Jul 1 13:52:38 2011 -0700
Update changelog for 1.4.0.
---
src/CHANGELOG | 20 ++++++++++++++++++++
1 files changed, 20 insertions(+), 0 deletions(-)
diff --git a/src/CHANGELOG b/src/CHANGELOG
index 079a838..6961cef 100644
--- a/src/CHANGELOG
+++ b/src/CHANGELOG
@@ -1,3 +1,23 @@
+1.4.0
+ 30 Jun 2011
+ * bug 3101: Disable WebGL. Too many unknowns for now.
+ * bug 3345: Make Google Captcha redirect work again.
+ * bug 3399: Fix a reversed exception check found by arno.
+ * bug 3177: Update torbutton to use new TorBrowser prefs.
+ * bug 2843: Update proxy preferences window to support env var.
+ * bug 2338: Force toggle at startup if tor is enabled
+ * bug 3554: Make Cookie protections obey disk settings
+ * bug 3441: Enable cookie protection UI by default.
+ * bug 3446: We're Firefox 5.0, we swear.
+ * bug #3506: Remove window resize event listener.
+ * bug #1282: Set fixed window size for each new window.
+ * bug #3508: Apply Stanford SafeCache patch (thanks Edward, Collin et al).
+ * bug #2361: Make about window work again on FF4+.
+ * bugfix: Fix a transparent context menu issue on Linux FF4+.
+ * misc: Squelch exception from app launcher in error console.
+ * misc: Make DuckDuckGo the default Google Captcha redirect destination.
+ * misc: Make it harder to accidentally toggle torbutton.
+
1.3.3-alpha
01 May 2011
* bug 2777: Clear OCSP cache on tor toggle
1
0

[torbutton/master] Bug #2361: Make about window work again on FF4+.
by mikeperry@torproject.org 01 Jul '11
by mikeperry@torproject.org 01 Jul '11
01 Jul '11
commit 0568bb05a16da0210f4d5bd32782d66eb09a3901
Author: Mike Perry <mikeperry-git(a)fscked.org>
Date: Fri Jul 1 13:53:12 2011 -0700
Bug #2361: Make about window work again on FF4+.
Also make the links work, finally.
---
src/chrome/content/about.xul | 69 +++++++++++++++++++++++++--------
src/chrome/content/popup.xul | 2 +-
src/chrome/content/torbutton.js | 42 --------------------
src/chrome/content/torbutton_util.js | 20 ++++++++++
src/chrome/locale/en/torbutton.dtd | 7 +++
5 files changed, 80 insertions(+), 60 deletions(-)
diff --git a/src/chrome/content/about.xul b/src/chrome/content/about.xul
index e5d18b6..2323e53 100644
--- a/src/chrome/content/about.xul
+++ b/src/chrome/content/about.xul
@@ -4,22 +4,57 @@
<!DOCTYPE overlay SYSTEM "chrome://torbutton/locale/torbutton.dtd">
<dialog id="torbutton-about"
- xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
- xmlns:html="http://www.w3.org/1999/xhtml"
- title="&torbutton.about.title;"
- buttons="accept"
- persist="screenX screenY"
- onload="torbutton_about_init();">
+ xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
+ xmlns:html="http://www.w3.org/1999/xhtml"
+ buttons="accept"
+ title="&torbutton.about.title;"
+ width="500"
+ height="400"
+ align="center"
+ onload="torbutton_about_init();">
- <script type="application/x-javascript" src="torbutton.js" />
- <stringbundleset id="extensionsSet">
- <stringbundle id="extensionsStrings" src="chrome://mozapps/locale/extensions/extensions.properties"/>
- </stringbundleset>
- <label value="Torbutton" style="font-weight: bold;"/>
- <label id="torbuttonVersion"/>
- <label value="Scott Squires & Mike Perry"/>
- <label value="https://torbutton.torproject.org/dev/"
- class="url"
- style="color: blue; text-decoration: underline;"
- onclick="window.open('https://torbutton.torproject.org/dev/');"/>
+ <script type="application/x-javascript" src="torbutton_util.js" />
+
+ <vbox>
+ <label style="text-align:center; color: blue; cursor:hand; text-decoration: underline;font-weight:bold; font-size:22px;"
+ value="&torbutton.button.label;"
+ onmouseover="event.target.style.cursor='pointer'"
+ onmouseout="event.target.style.cursor='default'"
+ onclick="Components.classes['@mozilla.org/appshell/window-mediator;1'].getService(Components.interfaces.nsIWindowMediator).getMostRecentWindow('navigator:browser').open('https://www.torproject.org/torbutton/')"/>
+ <label style="text-align:center; font-size:18px; margin-top: 10px; margin-bottom:20px;">&torbutton.about.summary;</label>
+
+ <groupbox>
+ <caption label="&torbutton.about.version;" />
+ <label id="torbuttonVersion"/>
+ </groupbox>
+
+ <groupbox>
+ <caption label="&torbutton.about.maintainer;" />
+ <label>Mike Perry</label>
+ </groupbox>
+
+ <groupbox>
+ <caption label="&torbutton.about.code;" />
+ <label>arno, Collin Jackson, Kory Kirk, Edward Pastuszenski, and Scott Squires</label>
+ </groupbox>
+
+<!--
+ Hrmm.. It is probably wrong to give the impression that these people do
+ continual review. Right now, no one does that :(. These two used to, but
+ we haven't heard much from them lately.
+ <groupbox>
+ <caption label="&torbutton.about.security_review;" />
+ <label>Gregory Fleischer, Kyle Williams, and many others.</label>
+ </groupbox>
+-->
+
+ <label style="font-weight:bold; margin-top:50px;">
+ &torbutton.about.donate;<label id="donate link"
+ value="&torbutton.about.make_donation;"
+ style="color: blue; cursor:hand; text-decoration:underline; font-style:bold"
+ onmouseover="event.target.style.cursor='pointer'"
+ onmouseout="event.target.style.cursor='default'"
+ onclick="Components.classes['@mozilla.org/appshell/window-mediator;1'].getService(Components.interfaces.nsIWindowMediator).getMostRecentWindow('navigator:browser').open('https://www.torproject.org/donate/donate.html.en')"/>
+ </label>
+ </vbox>
</dialog>
diff --git a/src/chrome/content/popup.xul b/src/chrome/content/popup.xul
index bd6fc35..2297ccf 100644
--- a/src/chrome/content/popup.xul
+++ b/src/chrome/content/popup.xul
@@ -30,7 +30,7 @@
label="&torbutton.context_menu.about;"
accesskey="&torbutton.context_menu.about.key;"
insertafter="context-stop"
- oncommand="torbutton_open_about_dialog()"/>
+ oncommand="window.open('chrome://torbutton/content/about.xul', '', 'chrome,centerscreen');"/>
</menupopup>
</overlay>
diff --git a/src/chrome/content/torbutton.js b/src/chrome/content/torbutton.js
index 4a70b66..8c905d1 100644
--- a/src/chrome/content/torbutton.js
+++ b/src/chrome/content/torbutton.js
@@ -1741,48 +1741,6 @@ function torbutton_open_prefs_dialog() {
torbutton_log(2, 'opened preferences window');
}
-function torbutton_open_about_dialog() {
- var extensionManager = Components.classes["@mozilla.org/extensions/manager;1"]
- .getService(Components.interfaces.nsIExtensionManager);
- var database = '@mozilla.org/rdf/datasource;1?name=composite-datasource';
- var extension_id = '';
- database = Components.classes[database]
- .getService(Components.interfaces.nsIRDFCompositeDataSource);
- database.AddDataSource(extensionManager.datasource);
-
- if (torbutton_gecko_compare("1.8") <= 0)
- {
- // Firefox 1.5 -- use built-in about box
- extension_id = "urn:mozilla:item:{e0204bd5-9d31-402b-a99d-a6aa8ffebdca}";
- window.openDialog("chrome://mozapps/content/extensions/about.xul","","chrome",extension_id,database);
- } else {
- // Firefox 1.0 -- home page link is broken in built-in about box, use our own
- extension_id = "urn:mozilla:extension:{e0204bd5-9d31-402b-a99d-a6aa8ffebdca}";
- window.openDialog("chrome://torbutton/content/about.xul","","chrome",extension_id,database);
- }
-}
-
-function torbutton_about_init() {
- var extensionID = window.arguments[0];
- var extensionDB = window.arguments[1];
-
- var oBundle = Components.classes["@mozilla.org/intl/stringbundle;1"]
- .getService(Components.interfaces.nsIStringBundleService);
- var extensionsStrings = document.getElementById("extensionsStrings");
-
- var rdfs = Components.classes["@mozilla.org/rdf/rdf-service;1"]
- .getService(Components.interfaces.nsIRDFService);
- var extension = rdfs.GetResource(extensionID);
-
- var versionArc = rdfs.GetResource("http://www.mozilla.org/2004/em-rdf#version");
- var version = extensionDB.GetTarget(extension, versionArc, true);
- version = version.QueryInterface(Components.interfaces.nsIRDFLiteral).Value;
-
- var extensionVersion = document.getElementById("torbuttonVersion");
-
- extensionVersion.setAttribute("value", extensionsStrings.getFormattedString("aboutWindowVersionString", [version]));
-}
-
function torbutton_gecko_compare(aVersion) {
var ioService = Components.classes["@mozilla.org/network/io-service;1"]
.getService(Components.interfaces.nsIIOService);
diff --git a/src/chrome/content/torbutton_util.js b/src/chrome/content/torbutton_util.js
index 808c826..b93162e 100644
--- a/src/chrome/content/torbutton_util.js
+++ b/src/chrome/content/torbutton_util.js
@@ -224,3 +224,23 @@ function torbutton_get_stringbundle()
return o_stringbundle;
}
+function torbutton_about_init() {
+ try {
+ // Firefox 4 and later; Mozilla 2 and later
+ Components.utils.import("resource://gre/modules/AddonManager.jsm");
+ AddonManager.getAddonByID("{e0204bd5-9d31-402b-a99d-a6aa8ffebdca}",function(addon) {
+ var extensionVersion = document.getElementById("torbuttonVersion");
+ extensionVersion.setAttribute("value", addon.version);
+ });
+ } catch (ex) {
+ // Firefox 3.6 and before; Mozilla 1.9.2 and before
+ var em = Components.classes["@mozilla.org/extensions/manager;1"]
+ .getService(Components.interfaces.nsIExtensionManager);
+ var addon = em.getItemForID("{e0204bd5-9d31-402b-a99d-a6aa8ffebdca}");
+ var extensionVersion = document.getElementById("torbuttonVersion");
+ extensionVersion.setAttribute("value", addon.version);
+ }
+
+}
+
+
diff --git a/src/chrome/locale/en/torbutton.dtd b/src/chrome/locale/en/torbutton.dtd
index 998eb76..0da56d5 100644
--- a/src/chrome/locale/en/torbutton.dtd
+++ b/src/chrome/locale/en/torbutton.dtd
@@ -16,6 +16,13 @@
<!ENTITY torbutton.prefs.proxy.host.socks "SOCKS Host:">
<!ENTITY torbutton.prefs.proxy.port "Port:">
<!ENTITY torbutton.about.title "About Torbutton">
+<!ENTITY torbutton.about.version "Version:">
+<!ENTITY torbutton.about.summary "Protects the privacy of your Tor browsing.">
+<!ENTITY torbutton.about.code "Code Contributors:">
+<!ENTITY torbutton.about.maintainer "Maintainer:">
+<!ENTITY torbutton.about.security_review "Security Review:">
+<!ENTITY torbutton.about.donate "If you like using Tor, you might consider">
+<!ENTITY torbutton.about.make_donation "making a donation.">
<!ENTITY torbutton.pref_connection.notice "Disable Torbutton to change these settings.">
<!ENTITY torbutton.pref_connection.more_info "More information">
<!ENTITY torbutton.pref_connection_more_info.title "Help">
1
0