tor-commits
Threads by month
- ----- 2025 -----
- 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
May 2013
- 20 participants
- 1497 discussions

[tor/maint-0.2.4] Fix socks5 handshake for username/password auth
by nickm@torproject.org 15 May '13
by nickm@torproject.org 15 May '13
15 May '13
commit 0bfaf86612eddbd586d648f3b642dac26f134fca
Author: Roger Dingledine <arma(a)torproject.org>
Date: Wed May 15 03:34:37 2013 -0400
Fix socks5 handshake for username/password auth
The fix for bug 8117 exposed this bug, and it turns out real-world
applications like Pidgin do care. Bugfix on 0.2.3.2-alpha; fixes bug 8879.
---
changes/bug8879 | 5 +++++
src/or/buffers.c | 2 +-
2 files changed, 6 insertions(+), 1 deletions(-)
diff --git a/changes/bug8879 b/changes/bug8879
new file mode 100644
index 0000000..0d2a700
--- /dev/null
+++ b/changes/bug8879
@@ -0,0 +1,5 @@
+ o Major bugfixes:
+ - Follow the socks5 protocol when offering username/password
+ authentication. The fix for bug 8117 exposed this bug, and it
+ turns out real-world applications like Pidgin do care. Bugfix on
+ 0.2.3.2-alpha; fixes bug 8879.
diff --git a/src/or/buffers.c b/src/or/buffers.c
index d063d23..c4c847e 100644
--- a/src/or/buffers.c
+++ b/src/or/buffers.c
@@ -1751,7 +1751,7 @@ parse_socks(const char *data, size_t datalen, socks_request_t *req,
return 0;
}
req->replylen = 2; /* 2 bytes of response */
- req->reply[0] = 5;
+ req->reply[0] = 1; /* authversion == 1 */
req->reply[1] = 0; /* authentication successful */
log_debug(LD_APP,
"socks5: Accepted username/password without checking.");
1
0

15 May '13
commit 73a3f6f806b0ab0750beb15bfe62ab5a1b854fcb
Merge: f5fd154 16f41c0
Author: Arturo Filastò <art(a)fuffa.org>
Date: Wed May 15 16:41:44 2013 +0200
Merge branch 'add_inputProcessors_to_nettests'
* add_inputProcessors_to_nettests:
Add URL inputProcessor to tcpconnect
Add inputProcessor to http_host
nettests/blocking/tcpconnect.py | 18 ++++++++++++++++++
nettests/manipulation/http_host.py | 10 ++++++++++
2 files changed, 28 insertions(+), 0 deletions(-)
1
0

15 May '13
commit 16f41c0f74f9d61b7e8439c719d73641da3e24c8
Author: aagbsn <aagbsn(a)extc.org>
Date: Sat May 4 16:49:51 2013 +0800
Add URL inputProcessor to tcpconnect
---
nettests/blocking/tcpconnect.py | 18 ++++++++++++++++++
1 files changed, 18 insertions(+), 0 deletions(-)
diff --git a/nettests/blocking/tcpconnect.py b/nettests/blocking/tcpconnect.py
index 3b22427..11c5558 100644
--- a/nettests/blocking/tcpconnect.py
+++ b/nettests/blocking/tcpconnect.py
@@ -43,3 +43,21 @@ class TCPConnectTest(nettest.NetTestCase):
d.addErrback(connectionFailed)
return d
+ def inputProcessor(self, filename=None):
+ """
+ This inputProcessor extracts name:port pairs from urls
+ XXX: Does not support unusual port numbers
+ """
+ if filename:
+ fp = open(filename)
+ for x in fp.readlines():
+ proto, path = x.strip().split('://')
+ proto = proto.lower()
+ host = path.split('/')[0]
+ if proto == 'http':
+ yield "%s:80" % host
+ if proto == 'https':
+ yield "%s:443" % host
+ fp.close()
+ else:
+ pass
1
0
commit 57a300305cd569f444d641cf1b25237e1e4b9be9
Author: aagbsn <aagbsn(a)extc.org>
Date: Fri May 3 14:28:25 2013 +0800
Add inputProcessor to http_host
---
nettests/manipulation/http_host.py | 10 ++++++++++
1 files changed, 10 insertions(+), 0 deletions(-)
diff --git a/nettests/manipulation/http_host.py b/nettests/manipulation/http_host.py
index d95d836..3f1e0c6 100644
--- a/nettests/manipulation/http_host.py
+++ b/nettests/manipulation/http_host.py
@@ -139,3 +139,13 @@ class HTTPHost(httpt.HTTPTest):
self.report['transparent_http_proxy'] = True
self.check_for_censorship(body)
+ def inputProcessor(self, filename=None):
+ """
+ This inputProcessor extracts domain names from urls
+ """
+ if filename:
+ fp = open(filename)
+ for x in fp.readlines():
+ yield x.strip().split('//')[-1].split('/')[0]
+ fp.close()
+ else: pass
1
0

[torbutton/master] Add browser branding files to trans_tools merge script.
by mikeperry@torproject.org 15 May '13
by mikeperry@torproject.org 15 May '13
15 May '13
commit 955dc4e56c0d9072179d30ec8bc7696e655bcaae
Author: Mike Perry <mikeperry-git(a)fscked.org>
Date: Tue May 14 17:38:35 2013 -0700
Add browser branding files to trans_tools merge script.
---
trans_tools/new_tb_strings.sh | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/trans_tools/new_tb_strings.sh b/trans_tools/new_tb_strings.sh
index 854f61c..b0b4e30 100755
--- a/trans_tools/new_tb_strings.sh
+++ b/trans_tools/new_tb_strings.sh
@@ -6,6 +6,8 @@ for i in `ls -1 po`
do
msgmerge -U ./po/$i/torbutton.dtd.po ./po/templates/torbutton.dtd.pot
msgmerge -U ./po/$i/torbutton.properties.po ./po/templates/torbutton.properties.pot
+ msgmerge -U ./po/$i/browser.dtd.po ./po/templates/browser.dtd.pot
+ msgmerge -U ./po/$i/browser.properties.po ./po/templates/browser.properties.pot
done
svn diff po
1
0

[torbutton/master] Incorporate browser branding, search engine overrides, etc.
by mikeperry@torproject.org 15 May '13
by mikeperry@torproject.org 15 May '13
15 May '13
commit 3dabcaf86daeeb101b6055890be37e41e780b571
Author: Kathy Brade <brade(a)pearlcrescent.com>
Date: Thu May 9 16:45:42 2013 -0400
Incorporate browser branding, search engine overrides, etc.
---
src/chrome.manifest | 4 ++++
src/chrome/locale/en/brand.dtd | 8 ++++++++
src/chrome/locale/en/brand.properties | 15 +++++++++++++++
src/chrome/locale/en/browser.properties | 13 +++++++++++++
src/defaults/preferences/preferences.js | 8 ++++++++
5 files changed, 48 insertions(+), 0 deletions(-)
diff --git a/src/chrome.manifest b/src/chrome.manifest
index 99cb6b7..e57e62f 100644
--- a/src/chrome.manifest
+++ b/src/chrome.manifest
@@ -4,6 +4,10 @@ overlay chrome://browser/content/preferences/connection.xul chrome://torbutton/c
overlay chrome://messenger/content/messenger.xul chrome://torbutton/content/torbutton_tb.xul
overlay chrome://messenger/content/messengercompose/messengercompose.xul chrome://torbutton/content/torbutton_tb.xul
+# browser branding
+override chrome://branding/locale/brand.dtd chrome://torbutton/locale/brand.dtd
+override chrome://branding/locale/brand.properties chrome://torbutton/locale/brand.properties
+
locale torbutton af chrome/locale/af/
locale torbutton ak chrome/locale/ak/
locale torbutton am chrome/locale/am/
diff --git a/src/chrome/locale/en/brand.dtd b/src/chrome/locale/en/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/en/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/en/brand.properties b/src/chrome/locale/en/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/en/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/en/browser.properties b/src/chrome/locale/en/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/en/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/defaults/preferences/preferences.js b/src/defaults/preferences/preferences.js
index c5cf4d4..7559977 100644
--- a/src/defaults/preferences/preferences.js
+++ b/src/defaults/preferences/preferences.js
@@ -218,3 +218,11 @@ pref("extensions.torbutton.dual_key_cookies",false);
pref("extensions.torbutton.cookie_js_allow", true);
pref("extensions.torbutton.prompt_torbrowser", true);
pref("extensions.torbutton.confirm_plugins", true);
+
+// Browser home page, spell checker dictionary, and search engine overrides:
+pref("browser.startup.homepage", "chrome://torbutton/locale/browser.properties");
+pref("spellchecker.dictionary", "chrome://torbutton/locale/browser.properties");
+pref("browser.search.defaultenginename", "chrome://torbutton/locale/browser.properties");
+pref("browser.search.order.1", "chrome://torbutton/locale/browser.properties");
+pref("browser.search.order.2", "chrome://torbutton/locale/browser.properties");
+pref("browser.search.order.3", "chrome://torbutton/locale/browser.properties");
1
0

15 May '13
commit 886b3608ca634c430d6ee02a8fed69476014a253
Author: Mike Perry <mikeperry-git(a)fscked.org>
Date: Tue May 14 17:46:18 2013 -0700
Add branding dtd and property files.
---
src/chrome/locale/af/brand.dtd | 8 ++++++++
src/chrome/locale/af/brand.properties | 15 +++++++++++++++
src/chrome/locale/af/browser.properties | 13 +++++++++++++
src/chrome/locale/ak/brand.dtd | 8 ++++++++
src/chrome/locale/ak/brand.properties | 15 +++++++++++++++
src/chrome/locale/ak/browser.properties | 13 +++++++++++++
src/chrome/locale/am/brand.dtd | 8 ++++++++
src/chrome/locale/am/brand.properties | 15 +++++++++++++++
src/chrome/locale/am/browser.properties | 13 +++++++++++++
src/chrome/locale/ar/brand.dtd | 8 ++++++++
src/chrome/locale/ar/brand.properties | 15 +++++++++++++++
src/chrome/locale/ar/browser.properties | 13 +++++++++++++
src/chrome/locale/arn/brand.dtd | 8 ++++++++
src/chrome/locale/arn/brand.properties | 15 +++++++++++++++
src/chrome/locale/arn/browser.properties | 13 +++++++++++++
src/chrome/locale/ast/brand.dtd | 8 ++++++++
src/chrome/locale/ast/brand.properties | 15 +++++++++++++++
src/chrome/locale/ast/browser.properties | 13 +++++++++++++
src/chrome/locale/az/brand.dtd | 8 ++++++++
src/chrome/locale/az/brand.properties | 15 +++++++++++++++
src/chrome/locale/az/browser.properties | 13 +++++++++++++
src/chrome/locale/be/brand.dtd | 8 ++++++++
src/chrome/locale/be/brand.properties | 15 +++++++++++++++
src/chrome/locale/be/browser.properties | 13 +++++++++++++
src/chrome/locale/bg/brand.dtd | 8 ++++++++
src/chrome/locale/bg/brand.properties | 15 +++++++++++++++
src/chrome/locale/bg/browser.properties | 13 +++++++++++++
src/chrome/locale/bn-IN/brand.dtd | 8 ++++++++
src/chrome/locale/bn-IN/brand.properties | 15 +++++++++++++++
src/chrome/locale/bn-IN/browser.properties | 13 +++++++++++++
src/chrome/locale/bn/brand.dtd | 8 ++++++++
src/chrome/locale/bn/brand.properties | 15 +++++++++++++++
src/chrome/locale/bn/browser.properties | 13 +++++++++++++
src/chrome/locale/bo/brand.dtd | 8 ++++++++
src/chrome/locale/bo/brand.properties | 15 +++++++++++++++
src/chrome/locale/bo/browser.properties | 13 +++++++++++++
src/chrome/locale/br/brand.dtd | 8 ++++++++
src/chrome/locale/br/brand.properties | 15 +++++++++++++++
src/chrome/locale/br/browser.properties | 13 +++++++++++++
src/chrome/locale/bs/brand.dtd | 8 ++++++++
src/chrome/locale/bs/brand.properties | 15 +++++++++++++++
src/chrome/locale/bs/browser.properties | 13 +++++++++++++
src/chrome/locale/ca/brand.dtd | 8 ++++++++
src/chrome/locale/ca/brand.properties | 15 +++++++++++++++
src/chrome/locale/ca/browser.properties | 13 +++++++++++++
src/chrome/locale/cs/brand.dtd | 8 ++++++++
src/chrome/locale/cs/brand.properties | 15 +++++++++++++++
src/chrome/locale/cs/browser.properties | 13 +++++++++++++
src/chrome/locale/csb/brand.dtd | 8 ++++++++
src/chrome/locale/csb/brand.properties | 15 +++++++++++++++
src/chrome/locale/csb/browser.properties | 13 +++++++++++++
src/chrome/locale/cy/brand.dtd | 8 ++++++++
src/chrome/locale/cy/brand.properties | 15 +++++++++++++++
src/chrome/locale/cy/browser.properties | 13 +++++++++++++
src/chrome/locale/da/brand.dtd | 8 ++++++++
src/chrome/locale/da/brand.properties | 15 +++++++++++++++
src/chrome/locale/da/browser.properties | 13 +++++++++++++
src/chrome/locale/de/brand.dtd | 8 ++++++++
src/chrome/locale/de/brand.properties | 15 +++++++++++++++
src/chrome/locale/de/browser.properties | 13 +++++++++++++
src/chrome/locale/dz/brand.dtd | 8 ++++++++
src/chrome/locale/dz/brand.properties | 15 +++++++++++++++
src/chrome/locale/dz/browser.properties | 13 +++++++++++++
src/chrome/locale/el/brand.dtd | 8 ++++++++
src/chrome/locale/el/brand.properties | 15 +++++++++++++++
src/chrome/locale/el/browser.properties | 13 +++++++++++++
src/chrome/locale/eo/brand.dtd | 8 ++++++++
src/chrome/locale/eo/brand.properties | 15 +++++++++++++++
src/chrome/locale/eo/browser.properties | 13 +++++++++++++
src/chrome/locale/es/brand.dtd | 8 ++++++++
src/chrome/locale/es/brand.properties | 15 +++++++++++++++
src/chrome/locale/es/browser.properties | 13 +++++++++++++
src/chrome/locale/et/brand.dtd | 8 ++++++++
src/chrome/locale/et/brand.properties | 15 +++++++++++++++
src/chrome/locale/et/browser.properties | 13 +++++++++++++
src/chrome/locale/eu/brand.dtd | 8 ++++++++
src/chrome/locale/eu/brand.properties | 15 +++++++++++++++
src/chrome/locale/eu/browser.properties | 13 +++++++++++++
src/chrome/locale/fa/brand.dtd | 8 ++++++++
src/chrome/locale/fa/brand.properties | 15 +++++++++++++++
src/chrome/locale/fa/browser.properties | 13 +++++++++++++
src/chrome/locale/fi/brand.dtd | 8 ++++++++
src/chrome/locale/fi/brand.properties | 15 +++++++++++++++
src/chrome/locale/fi/browser.properties | 13 +++++++++++++
src/chrome/locale/fil/brand.dtd | 8 ++++++++
src/chrome/locale/fil/brand.properties | 15 +++++++++++++++
src/chrome/locale/fil/browser.properties | 13 +++++++++++++
src/chrome/locale/fo/brand.dtd | 8 ++++++++
src/chrome/locale/fo/brand.properties | 15 +++++++++++++++
src/chrome/locale/fo/browser.properties | 13 +++++++++++++
src/chrome/locale/fr/brand.dtd | 8 ++++++++
src/chrome/locale/fr/brand.properties | 15 +++++++++++++++
src/chrome/locale/fr/browser.properties | 13 +++++++++++++
src/chrome/locale/fur/brand.dtd | 8 ++++++++
src/chrome/locale/fur/brand.properties | 15 +++++++++++++++
src/chrome/locale/fur/browser.properties | 13 +++++++++++++
src/chrome/locale/fy/brand.dtd | 8 ++++++++
src/chrome/locale/fy/brand.properties | 15 +++++++++++++++
src/chrome/locale/fy/browser.properties | 13 +++++++++++++
src/chrome/locale/ga/brand.dtd | 8 ++++++++
src/chrome/locale/ga/brand.properties | 15 +++++++++++++++
src/chrome/locale/ga/browser.properties | 13 +++++++++++++
src/chrome/locale/gl/brand.dtd | 8 ++++++++
src/chrome/locale/gl/brand.properties | 15 +++++++++++++++
src/chrome/locale/gl/browser.properties | 13 +++++++++++++
src/chrome/locale/gu/brand.dtd | 8 ++++++++
src/chrome/locale/gu/brand.properties | 15 +++++++++++++++
src/chrome/locale/gu/browser.properties | 13 +++++++++++++
src/chrome/locale/gun/brand.dtd | 8 ++++++++
src/chrome/locale/gun/brand.properties | 15 +++++++++++++++
src/chrome/locale/gun/browser.properties | 13 +++++++++++++
src/chrome/locale/ha/brand.dtd | 8 ++++++++
src/chrome/locale/ha/brand.properties | 15 +++++++++++++++
src/chrome/locale/ha/browser.properties | 13 +++++++++++++
src/chrome/locale/he/brand.dtd | 8 ++++++++
src/chrome/locale/he/brand.properties | 15 +++++++++++++++
src/chrome/locale/he/browser.properties | 13 +++++++++++++
src/chrome/locale/hi/brand.dtd | 8 ++++++++
src/chrome/locale/hi/brand.properties | 15 +++++++++++++++
src/chrome/locale/hi/browser.properties | 13 +++++++++++++
src/chrome/locale/hr/brand.dtd | 8 ++++++++
src/chrome/locale/hr/brand.properties | 15 +++++++++++++++
src/chrome/locale/hr/browser.properties | 13 +++++++++++++
src/chrome/locale/ht/brand.dtd | 8 ++++++++
src/chrome/locale/ht/brand.properties | 15 +++++++++++++++
src/chrome/locale/ht/browser.properties | 13 +++++++++++++
src/chrome/locale/hu/brand.dtd | 8 ++++++++
src/chrome/locale/hu/brand.properties | 15 +++++++++++++++
src/chrome/locale/hu/browser.properties | 13 +++++++++++++
src/chrome/locale/hy/brand.dtd | 8 ++++++++
src/chrome/locale/hy/brand.properties | 15 +++++++++++++++
src/chrome/locale/hy/browser.properties | 13 +++++++++++++
src/chrome/locale/id/brand.dtd | 8 ++++++++
src/chrome/locale/id/brand.properties | 15 +++++++++++++++
src/chrome/locale/id/browser.properties | 13 +++++++++++++
src/chrome/locale/is/brand.dtd | 8 ++++++++
src/chrome/locale/is/brand.properties | 15 +++++++++++++++
src/chrome/locale/is/browser.properties | 13 +++++++++++++
src/chrome/locale/it/brand.dtd | 8 ++++++++
src/chrome/locale/it/brand.properties | 15 +++++++++++++++
src/chrome/locale/it/browser.properties | 13 +++++++++++++
src/chrome/locale/ja/brand.dtd | 8 ++++++++
src/chrome/locale/ja/brand.properties | 15 +++++++++++++++
src/chrome/locale/ja/browser.properties | 13 +++++++++++++
src/chrome/locale/jv/brand.dtd | 8 ++++++++
src/chrome/locale/jv/brand.properties | 15 +++++++++++++++
src/chrome/locale/jv/browser.properties | 13 +++++++++++++
src/chrome/locale/ka/brand.dtd | 8 ++++++++
src/chrome/locale/ka/brand.properties | 15 +++++++++++++++
src/chrome/locale/ka/browser.properties | 13 +++++++++++++
src/chrome/locale/km/brand.dtd | 8 ++++++++
src/chrome/locale/km/brand.properties | 15 +++++++++++++++
src/chrome/locale/km/browser.properties | 13 +++++++++++++
src/chrome/locale/kn/brand.dtd | 8 ++++++++
src/chrome/locale/kn/brand.properties | 15 +++++++++++++++
src/chrome/locale/kn/browser.properties | 13 +++++++++++++
src/chrome/locale/ko/brand.dtd | 8 ++++++++
src/chrome/locale/ko/brand.properties | 15 +++++++++++++++
src/chrome/locale/ko/browser.properties | 13 +++++++++++++
src/chrome/locale/ku/brand.dtd | 8 ++++++++
src/chrome/locale/ku/brand.properties | 15 +++++++++++++++
src/chrome/locale/ku/browser.properties | 13 +++++++++++++
src/chrome/locale/kw/brand.dtd | 8 ++++++++
src/chrome/locale/kw/brand.properties | 15 +++++++++++++++
src/chrome/locale/kw/browser.properties | 13 +++++++++++++
src/chrome/locale/ky/brand.dtd | 8 ++++++++
src/chrome/locale/ky/brand.properties | 15 +++++++++++++++
src/chrome/locale/ky/browser.properties | 13 +++++++++++++
src/chrome/locale/lb/brand.dtd | 8 ++++++++
src/chrome/locale/lb/brand.properties | 15 +++++++++++++++
src/chrome/locale/lb/browser.properties | 13 +++++++++++++
src/chrome/locale/ln/brand.dtd | 8 ++++++++
src/chrome/locale/ln/brand.properties | 15 +++++++++++++++
src/chrome/locale/ln/browser.properties | 13 +++++++++++++
src/chrome/locale/lo/brand.dtd | 8 ++++++++
src/chrome/locale/lo/brand.properties | 15 +++++++++++++++
src/chrome/locale/lo/browser.properties | 13 +++++++++++++
src/chrome/locale/lt/brand.dtd | 8 ++++++++
src/chrome/locale/lt/brand.properties | 15 +++++++++++++++
src/chrome/locale/lt/browser.properties | 13 +++++++++++++
src/chrome/locale/lv/brand.dtd | 8 ++++++++
src/chrome/locale/lv/brand.properties | 15 +++++++++++++++
src/chrome/locale/lv/browser.properties | 13 +++++++++++++
src/chrome/locale/mg/brand.dtd | 8 ++++++++
src/chrome/locale/mg/brand.properties | 15 +++++++++++++++
src/chrome/locale/mg/browser.properties | 13 +++++++++++++
src/chrome/locale/mi/brand.dtd | 8 ++++++++
src/chrome/locale/mi/brand.properties | 15 +++++++++++++++
src/chrome/locale/mi/browser.properties | 13 +++++++++++++
src/chrome/locale/mk/brand.dtd | 8 ++++++++
src/chrome/locale/mk/brand.properties | 15 +++++++++++++++
src/chrome/locale/mk/browser.properties | 13 +++++++++++++
src/chrome/locale/ml/brand.dtd | 8 ++++++++
src/chrome/locale/ml/brand.properties | 15 +++++++++++++++
src/chrome/locale/ml/browser.properties | 13 +++++++++++++
src/chrome/locale/mn/brand.dtd | 8 ++++++++
src/chrome/locale/mn/brand.properties | 15 +++++++++++++++
src/chrome/locale/mn/browser.properties | 13 +++++++++++++
src/chrome/locale/mr/brand.dtd | 8 ++++++++
src/chrome/locale/mr/brand.properties | 15 +++++++++++++++
src/chrome/locale/mr/browser.properties | 13 +++++++++++++
src/chrome/locale/ms/brand.dtd | 8 ++++++++
src/chrome/locale/ms/brand.properties | 15 +++++++++++++++
src/chrome/locale/ms/browser.properties | 13 +++++++++++++
src/chrome/locale/mt/brand.dtd | 8 ++++++++
src/chrome/locale/mt/brand.properties | 15 +++++++++++++++
src/chrome/locale/mt/browser.properties | 13 +++++++++++++
src/chrome/locale/my/brand.dtd | 8 ++++++++
src/chrome/locale/my/brand.properties | 15 +++++++++++++++
src/chrome/locale/my/browser.properties | 13 +++++++++++++
src/chrome/locale/nah/brand.dtd | 8 ++++++++
src/chrome/locale/nah/brand.properties | 15 +++++++++++++++
src/chrome/locale/nah/browser.properties | 13 +++++++++++++
src/chrome/locale/nap/brand.dtd | 8 ++++++++
src/chrome/locale/nap/brand.properties | 15 +++++++++++++++
src/chrome/locale/nap/browser.properties | 13 +++++++++++++
src/chrome/locale/nb/brand.dtd | 8 ++++++++
src/chrome/locale/nb/brand.properties | 15 +++++++++++++++
src/chrome/locale/nb/browser.properties | 13 +++++++++++++
src/chrome/locale/ne/brand.dtd | 8 ++++++++
src/chrome/locale/ne/brand.properties | 15 +++++++++++++++
src/chrome/locale/ne/browser.properties | 13 +++++++++++++
src/chrome/locale/nl/brand.dtd | 8 ++++++++
src/chrome/locale/nl/brand.properties | 15 +++++++++++++++
src/chrome/locale/nl/browser.properties | 13 +++++++++++++
src/chrome/locale/nn/brand.dtd | 8 ++++++++
src/chrome/locale/nn/brand.properties | 15 +++++++++++++++
src/chrome/locale/nn/browser.properties | 13 +++++++++++++
src/chrome/locale/nso/brand.dtd | 8 ++++++++
src/chrome/locale/nso/brand.properties | 15 +++++++++++++++
src/chrome/locale/nso/browser.properties | 13 +++++++++++++
src/chrome/locale/oc/brand.dtd | 8 ++++++++
src/chrome/locale/oc/brand.properties | 15 +++++++++++++++
src/chrome/locale/oc/browser.properties | 13 +++++++++++++
src/chrome/locale/or/brand.dtd | 8 ++++++++
src/chrome/locale/or/brand.properties | 15 +++++++++++++++
src/chrome/locale/or/browser.properties | 13 +++++++++++++
src/chrome/locale/pa/brand.dtd | 8 ++++++++
src/chrome/locale/pa/brand.properties | 15 +++++++++++++++
src/chrome/locale/pa/browser.properties | 13 +++++++++++++
src/chrome/locale/pap/brand.dtd | 8 ++++++++
src/chrome/locale/pap/brand.properties | 15 +++++++++++++++
src/chrome/locale/pap/browser.properties | 13 +++++++++++++
src/chrome/locale/pl/brand.dtd | 8 ++++++++
src/chrome/locale/pl/brand.properties | 15 +++++++++++++++
src/chrome/locale/pl/browser.properties | 13 +++++++++++++
src/chrome/locale/pms/brand.dtd | 8 ++++++++
src/chrome/locale/pms/brand.properties | 15 +++++++++++++++
src/chrome/locale/pms/browser.properties | 13 +++++++++++++
src/chrome/locale/ps/brand.dtd | 8 ++++++++
src/chrome/locale/ps/brand.properties | 15 +++++++++++++++
src/chrome/locale/ps/browser.properties | 13 +++++++++++++
src/chrome/locale/pt-BR/brand.dtd | 8 ++++++++
src/chrome/locale/pt-BR/brand.properties | 15 +++++++++++++++
src/chrome/locale/pt-BR/browser.properties | 13 +++++++++++++
src/chrome/locale/pt/brand.dtd | 8 ++++++++
src/chrome/locale/pt/brand.properties | 15 +++++++++++++++
src/chrome/locale/pt/browser.properties | 13 +++++++++++++
src/chrome/locale/ro/brand.dtd | 8 ++++++++
src/chrome/locale/ro/brand.properties | 15 +++++++++++++++
src/chrome/locale/ro/browser.properties | 13 +++++++++++++
src/chrome/locale/ru/brand.dtd | 8 ++++++++
src/chrome/locale/ru/brand.properties | 15 +++++++++++++++
src/chrome/locale/ru/browser.properties | 13 +++++++++++++
src/chrome/locale/sco/brand.dtd | 8 ++++++++
src/chrome/locale/sco/brand.properties | 15 +++++++++++++++
src/chrome/locale/sco/browser.properties | 13 +++++++++++++
src/chrome/locale/sk/brand.dtd | 8 ++++++++
src/chrome/locale/sk/brand.properties | 15 +++++++++++++++
src/chrome/locale/sk/browser.properties | 13 +++++++++++++
src/chrome/locale/sl/brand.dtd | 8 ++++++++
src/chrome/locale/sl/brand.properties | 15 +++++++++++++++
src/chrome/locale/sl/browser.properties | 13 +++++++++++++
src/chrome/locale/so/brand.dtd | 8 ++++++++
src/chrome/locale/so/brand.properties | 15 +++++++++++++++
src/chrome/locale/so/browser.properties | 13 +++++++++++++
src/chrome/locale/son/brand.dtd | 8 ++++++++
src/chrome/locale/son/brand.properties | 15 +++++++++++++++
src/chrome/locale/son/browser.properties | 13 +++++++++++++
src/chrome/locale/sq/brand.dtd | 8 ++++++++
src/chrome/locale/sq/brand.properties | 15 +++++++++++++++
src/chrome/locale/sq/browser.properties | 13 +++++++++++++
src/chrome/locale/sr/brand.dtd | 8 ++++++++
src/chrome/locale/sr/brand.properties | 15 +++++++++++++++
src/chrome/locale/sr/browser.properties | 13 +++++++++++++
src/chrome/locale/st/brand.dtd | 8 ++++++++
src/chrome/locale/st/brand.properties | 15 +++++++++++++++
src/chrome/locale/st/browser.properties | 13 +++++++++++++
src/chrome/locale/su/brand.dtd | 8 ++++++++
src/chrome/locale/su/brand.properties | 15 +++++++++++++++
src/chrome/locale/su/browser.properties | 13 +++++++++++++
src/chrome/locale/sv/brand.dtd | 8 ++++++++
src/chrome/locale/sv/brand.properties | 15 +++++++++++++++
src/chrome/locale/sv/browser.properties | 13 +++++++++++++
src/chrome/locale/sw/brand.dtd | 8 ++++++++
src/chrome/locale/sw/brand.properties | 15 +++++++++++++++
src/chrome/locale/sw/browser.properties | 13 +++++++++++++
src/chrome/locale/ta/brand.dtd | 8 ++++++++
src/chrome/locale/ta/brand.properties | 15 +++++++++++++++
src/chrome/locale/ta/browser.properties | 13 +++++++++++++
src/chrome/locale/te/brand.dtd | 8 ++++++++
src/chrome/locale/te/brand.properties | 15 +++++++++++++++
src/chrome/locale/te/browser.properties | 13 +++++++++++++
src/chrome/locale/tg/brand.dtd | 8 ++++++++
src/chrome/locale/tg/brand.properties | 15 +++++++++++++++
src/chrome/locale/tg/browser.properties | 13 +++++++++++++
src/chrome/locale/th/brand.dtd | 8 ++++++++
src/chrome/locale/th/brand.properties | 15 +++++++++++++++
src/chrome/locale/th/browser.properties | 13 +++++++++++++
src/chrome/locale/ti/brand.dtd | 8 ++++++++
src/chrome/locale/ti/brand.properties | 15 +++++++++++++++
src/chrome/locale/ti/browser.properties | 13 +++++++++++++
src/chrome/locale/tk/brand.dtd | 8 ++++++++
src/chrome/locale/tk/brand.properties | 15 +++++++++++++++
src/chrome/locale/tk/browser.properties | 13 +++++++++++++
src/chrome/locale/tr/brand.dtd | 8 ++++++++
src/chrome/locale/tr/brand.properties | 15 +++++++++++++++
src/chrome/locale/tr/browser.properties | 13 +++++++++++++
src/chrome/locale/uk/brand.dtd | 8 ++++++++
src/chrome/locale/uk/brand.properties | 15 +++++++++++++++
src/chrome/locale/uk/browser.properties | 13 +++++++++++++
src/chrome/locale/ur/brand.dtd | 8 ++++++++
src/chrome/locale/ur/brand.properties | 15 +++++++++++++++
src/chrome/locale/ur/browser.properties | 13 +++++++++++++
src/chrome/locale/ve/brand.dtd | 8 ++++++++
src/chrome/locale/ve/brand.properties | 15 +++++++++++++++
src/chrome/locale/ve/browser.properties | 13 +++++++++++++
src/chrome/locale/vi/brand.dtd | 8 ++++++++
src/chrome/locale/vi/brand.properties | 15 +++++++++++++++
src/chrome/locale/vi/browser.properties | 13 +++++++++++++
src/chrome/locale/wa/brand.dtd | 8 ++++++++
src/chrome/locale/wa/brand.properties | 15 +++++++++++++++
src/chrome/locale/wa/browser.properties | 13 +++++++++++++
src/chrome/locale/wo/brand.dtd | 8 ++++++++
src/chrome/locale/wo/brand.properties | 15 +++++++++++++++
src/chrome/locale/wo/browser.properties | 13 +++++++++++++
src/chrome/locale/zh-CN/brand.dtd | 8 ++++++++
src/chrome/locale/zh-CN/brand.properties | 15 +++++++++++++++
src/chrome/locale/zh-CN/browser.properties | 13 +++++++++++++
src/chrome/locale/zh-HK/brand.dtd | 8 ++++++++
src/chrome/locale/zh-HK/brand.properties | 15 +++++++++++++++
src/chrome/locale/zh-HK/browser.properties | 13 +++++++++++++
src/chrome/locale/zh-TW/brand.dtd | 8 ++++++++
src/chrome/locale/zh-TW/brand.properties | 15 +++++++++++++++
src/chrome/locale/zh-TW/browser.properties | 13 +++++++++++++
src/chrome/locale/zu/brand.dtd | 8 ++++++++
src/chrome/locale/zu/brand.properties | 15 +++++++++++++++
src/chrome/locale/zu/browser.properties | 13 +++++++++++++
348 files changed, 4176 insertions(+), 0 deletions(-)
diff --git a/src/chrome/locale/af/brand.dtd b/src/chrome/locale/af/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/af/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/af/brand.properties b/src/chrome/locale/af/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/af/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/af/browser.properties b/src/chrome/locale/af/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/af/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/ak/brand.dtd b/src/chrome/locale/ak/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/ak/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/ak/brand.properties b/src/chrome/locale/ak/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/ak/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/ak/browser.properties b/src/chrome/locale/ak/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/ak/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/am/brand.dtd b/src/chrome/locale/am/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/am/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/am/brand.properties b/src/chrome/locale/am/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/am/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/am/browser.properties b/src/chrome/locale/am/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/am/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/ar/brand.dtd b/src/chrome/locale/ar/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/ar/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/ar/brand.properties b/src/chrome/locale/ar/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/ar/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/ar/browser.properties b/src/chrome/locale/ar/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/ar/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/arn/brand.dtd b/src/chrome/locale/arn/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/arn/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/arn/brand.properties b/src/chrome/locale/arn/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/arn/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/arn/browser.properties b/src/chrome/locale/arn/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/arn/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/ast/brand.dtd b/src/chrome/locale/ast/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/ast/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/ast/brand.properties b/src/chrome/locale/ast/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/ast/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/ast/browser.properties b/src/chrome/locale/ast/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/ast/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/az/brand.dtd b/src/chrome/locale/az/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/az/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/az/brand.properties b/src/chrome/locale/az/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/az/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/az/browser.properties b/src/chrome/locale/az/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/az/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/be/brand.dtd b/src/chrome/locale/be/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/be/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/be/brand.properties b/src/chrome/locale/be/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/be/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/be/browser.properties b/src/chrome/locale/be/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/be/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/bg/brand.dtd b/src/chrome/locale/bg/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/bg/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/bg/brand.properties b/src/chrome/locale/bg/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/bg/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/bg/browser.properties b/src/chrome/locale/bg/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/bg/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/bn-IN/brand.dtd b/src/chrome/locale/bn-IN/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/bn-IN/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/bn-IN/brand.properties b/src/chrome/locale/bn-IN/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/bn-IN/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/bn-IN/browser.properties b/src/chrome/locale/bn-IN/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/bn-IN/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/bn/brand.dtd b/src/chrome/locale/bn/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/bn/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/bn/brand.properties b/src/chrome/locale/bn/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/bn/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/bn/browser.properties b/src/chrome/locale/bn/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/bn/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/bo/brand.dtd b/src/chrome/locale/bo/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/bo/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/bo/brand.properties b/src/chrome/locale/bo/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/bo/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/bo/browser.properties b/src/chrome/locale/bo/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/bo/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/br/brand.dtd b/src/chrome/locale/br/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/br/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/br/brand.properties b/src/chrome/locale/br/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/br/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/br/browser.properties b/src/chrome/locale/br/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/br/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/bs/brand.dtd b/src/chrome/locale/bs/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/bs/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/bs/brand.properties b/src/chrome/locale/bs/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/bs/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/bs/browser.properties b/src/chrome/locale/bs/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/bs/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/ca/brand.dtd b/src/chrome/locale/ca/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/ca/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/ca/brand.properties b/src/chrome/locale/ca/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/ca/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/ca/browser.properties b/src/chrome/locale/ca/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/ca/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/cs/brand.dtd b/src/chrome/locale/cs/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/cs/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/cs/brand.properties b/src/chrome/locale/cs/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/cs/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/cs/browser.properties b/src/chrome/locale/cs/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/cs/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/csb/brand.dtd b/src/chrome/locale/csb/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/csb/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/csb/brand.properties b/src/chrome/locale/csb/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/csb/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/csb/browser.properties b/src/chrome/locale/csb/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/csb/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/cy/brand.dtd b/src/chrome/locale/cy/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/cy/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/cy/brand.properties b/src/chrome/locale/cy/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/cy/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/cy/browser.properties b/src/chrome/locale/cy/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/cy/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/da/brand.dtd b/src/chrome/locale/da/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/da/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/da/brand.properties b/src/chrome/locale/da/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/da/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/da/browser.properties b/src/chrome/locale/da/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/da/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/de/brand.dtd b/src/chrome/locale/de/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/de/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/de/brand.properties b/src/chrome/locale/de/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/de/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/de/browser.properties b/src/chrome/locale/de/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/de/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/dz/brand.dtd b/src/chrome/locale/dz/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/dz/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/dz/brand.properties b/src/chrome/locale/dz/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/dz/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/dz/browser.properties b/src/chrome/locale/dz/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/dz/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/el/brand.dtd b/src/chrome/locale/el/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/el/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/el/brand.properties b/src/chrome/locale/el/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/el/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/el/browser.properties b/src/chrome/locale/el/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/el/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/eo/brand.dtd b/src/chrome/locale/eo/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/eo/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/eo/brand.properties b/src/chrome/locale/eo/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/eo/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/eo/browser.properties b/src/chrome/locale/eo/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/eo/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/es/brand.dtd b/src/chrome/locale/es/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/es/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/es/brand.properties b/src/chrome/locale/es/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/es/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/es/browser.properties b/src/chrome/locale/es/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/es/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/et/brand.dtd b/src/chrome/locale/et/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/et/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/et/brand.properties b/src/chrome/locale/et/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/et/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/et/browser.properties b/src/chrome/locale/et/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/et/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/eu/brand.dtd b/src/chrome/locale/eu/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/eu/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/eu/brand.properties b/src/chrome/locale/eu/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/eu/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/eu/browser.properties b/src/chrome/locale/eu/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/eu/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/fa/brand.dtd b/src/chrome/locale/fa/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/fa/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/fa/brand.properties b/src/chrome/locale/fa/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/fa/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/fa/browser.properties b/src/chrome/locale/fa/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/fa/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/fi/brand.dtd b/src/chrome/locale/fi/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/fi/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/fi/brand.properties b/src/chrome/locale/fi/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/fi/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/fi/browser.properties b/src/chrome/locale/fi/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/fi/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/fil/brand.dtd b/src/chrome/locale/fil/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/fil/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/fil/brand.properties b/src/chrome/locale/fil/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/fil/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/fil/browser.properties b/src/chrome/locale/fil/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/fil/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/fo/brand.dtd b/src/chrome/locale/fo/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/fo/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/fo/brand.properties b/src/chrome/locale/fo/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/fo/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/fo/browser.properties b/src/chrome/locale/fo/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/fo/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/fr/brand.dtd b/src/chrome/locale/fr/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/fr/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/fr/brand.properties b/src/chrome/locale/fr/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/fr/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/fr/browser.properties b/src/chrome/locale/fr/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/fr/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/fur/brand.dtd b/src/chrome/locale/fur/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/fur/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/fur/brand.properties b/src/chrome/locale/fur/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/fur/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/fur/browser.properties b/src/chrome/locale/fur/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/fur/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/fy/brand.dtd b/src/chrome/locale/fy/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/fy/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/fy/brand.properties b/src/chrome/locale/fy/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/fy/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/fy/browser.properties b/src/chrome/locale/fy/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/fy/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/ga/brand.dtd b/src/chrome/locale/ga/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/ga/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/ga/brand.properties b/src/chrome/locale/ga/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/ga/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/ga/browser.properties b/src/chrome/locale/ga/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/ga/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/gl/brand.dtd b/src/chrome/locale/gl/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/gl/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/gl/brand.properties b/src/chrome/locale/gl/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/gl/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/gl/browser.properties b/src/chrome/locale/gl/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/gl/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/gu/brand.dtd b/src/chrome/locale/gu/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/gu/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/gu/brand.properties b/src/chrome/locale/gu/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/gu/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/gu/browser.properties b/src/chrome/locale/gu/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/gu/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/gun/brand.dtd b/src/chrome/locale/gun/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/gun/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/gun/brand.properties b/src/chrome/locale/gun/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/gun/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/gun/browser.properties b/src/chrome/locale/gun/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/gun/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/ha/brand.dtd b/src/chrome/locale/ha/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/ha/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/ha/brand.properties b/src/chrome/locale/ha/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/ha/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/ha/browser.properties b/src/chrome/locale/ha/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/ha/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/he/brand.dtd b/src/chrome/locale/he/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/he/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/he/brand.properties b/src/chrome/locale/he/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/he/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/he/browser.properties b/src/chrome/locale/he/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/he/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/hi/brand.dtd b/src/chrome/locale/hi/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/hi/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/hi/brand.properties b/src/chrome/locale/hi/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/hi/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/hi/browser.properties b/src/chrome/locale/hi/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/hi/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/hr/brand.dtd b/src/chrome/locale/hr/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/hr/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/hr/brand.properties b/src/chrome/locale/hr/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/hr/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/hr/browser.properties b/src/chrome/locale/hr/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/hr/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/ht/brand.dtd b/src/chrome/locale/ht/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/ht/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/ht/brand.properties b/src/chrome/locale/ht/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/ht/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/ht/browser.properties b/src/chrome/locale/ht/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/ht/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/hu/brand.dtd b/src/chrome/locale/hu/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/hu/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/hu/brand.properties b/src/chrome/locale/hu/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/hu/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/hu/browser.properties b/src/chrome/locale/hu/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/hu/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/hy/brand.dtd b/src/chrome/locale/hy/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/hy/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/hy/brand.properties b/src/chrome/locale/hy/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/hy/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/hy/browser.properties b/src/chrome/locale/hy/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/hy/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/id/brand.dtd b/src/chrome/locale/id/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/id/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/id/brand.properties b/src/chrome/locale/id/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/id/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/id/browser.properties b/src/chrome/locale/id/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/id/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/is/brand.dtd b/src/chrome/locale/is/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/is/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/is/brand.properties b/src/chrome/locale/is/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/is/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/is/browser.properties b/src/chrome/locale/is/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/is/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/it/brand.dtd b/src/chrome/locale/it/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/it/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/it/brand.properties b/src/chrome/locale/it/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/it/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/it/browser.properties b/src/chrome/locale/it/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/it/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/ja/brand.dtd b/src/chrome/locale/ja/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/ja/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/ja/brand.properties b/src/chrome/locale/ja/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/ja/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/ja/browser.properties b/src/chrome/locale/ja/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/ja/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/jv/brand.dtd b/src/chrome/locale/jv/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/jv/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/jv/brand.properties b/src/chrome/locale/jv/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/jv/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/jv/browser.properties b/src/chrome/locale/jv/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/jv/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/ka/brand.dtd b/src/chrome/locale/ka/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/ka/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/ka/brand.properties b/src/chrome/locale/ka/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/ka/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/ka/browser.properties b/src/chrome/locale/ka/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/ka/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/km/brand.dtd b/src/chrome/locale/km/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/km/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/km/brand.properties b/src/chrome/locale/km/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/km/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/km/browser.properties b/src/chrome/locale/km/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/km/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/kn/brand.dtd b/src/chrome/locale/kn/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/kn/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/kn/brand.properties b/src/chrome/locale/kn/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/kn/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/kn/browser.properties b/src/chrome/locale/kn/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/kn/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/ko/brand.dtd b/src/chrome/locale/ko/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/ko/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/ko/brand.properties b/src/chrome/locale/ko/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/ko/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/ko/browser.properties b/src/chrome/locale/ko/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/ko/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/ku/brand.dtd b/src/chrome/locale/ku/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/ku/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/ku/brand.properties b/src/chrome/locale/ku/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/ku/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/ku/browser.properties b/src/chrome/locale/ku/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/ku/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/kw/brand.dtd b/src/chrome/locale/kw/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/kw/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/kw/brand.properties b/src/chrome/locale/kw/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/kw/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/kw/browser.properties b/src/chrome/locale/kw/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/kw/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/ky/brand.dtd b/src/chrome/locale/ky/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/ky/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/ky/brand.properties b/src/chrome/locale/ky/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/ky/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/ky/browser.properties b/src/chrome/locale/ky/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/ky/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/lb/brand.dtd b/src/chrome/locale/lb/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/lb/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/lb/brand.properties b/src/chrome/locale/lb/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/lb/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/lb/browser.properties b/src/chrome/locale/lb/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/lb/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/ln/brand.dtd b/src/chrome/locale/ln/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/ln/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/ln/brand.properties b/src/chrome/locale/ln/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/ln/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/ln/browser.properties b/src/chrome/locale/ln/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/ln/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/lo/brand.dtd b/src/chrome/locale/lo/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/lo/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/lo/brand.properties b/src/chrome/locale/lo/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/lo/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/lo/browser.properties b/src/chrome/locale/lo/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/lo/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/lt/brand.dtd b/src/chrome/locale/lt/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/lt/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/lt/brand.properties b/src/chrome/locale/lt/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/lt/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/lt/browser.properties b/src/chrome/locale/lt/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/lt/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/lv/brand.dtd b/src/chrome/locale/lv/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/lv/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/lv/brand.properties b/src/chrome/locale/lv/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/lv/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/lv/browser.properties b/src/chrome/locale/lv/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/lv/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/mg/brand.dtd b/src/chrome/locale/mg/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/mg/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/mg/brand.properties b/src/chrome/locale/mg/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/mg/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/mg/browser.properties b/src/chrome/locale/mg/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/mg/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/mi/brand.dtd b/src/chrome/locale/mi/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/mi/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/mi/brand.properties b/src/chrome/locale/mi/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/mi/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/mi/browser.properties b/src/chrome/locale/mi/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/mi/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/mk/brand.dtd b/src/chrome/locale/mk/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/mk/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/mk/brand.properties b/src/chrome/locale/mk/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/mk/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/mk/browser.properties b/src/chrome/locale/mk/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/mk/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/ml/brand.dtd b/src/chrome/locale/ml/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/ml/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/ml/brand.properties b/src/chrome/locale/ml/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/ml/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/ml/browser.properties b/src/chrome/locale/ml/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/ml/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/mn/brand.dtd b/src/chrome/locale/mn/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/mn/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/mn/brand.properties b/src/chrome/locale/mn/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/mn/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/mn/browser.properties b/src/chrome/locale/mn/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/mn/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/mr/brand.dtd b/src/chrome/locale/mr/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/mr/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/mr/brand.properties b/src/chrome/locale/mr/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/mr/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/mr/browser.properties b/src/chrome/locale/mr/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/mr/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/ms/brand.dtd b/src/chrome/locale/ms/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/ms/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/ms/brand.properties b/src/chrome/locale/ms/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/ms/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/ms/browser.properties b/src/chrome/locale/ms/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/ms/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/mt/brand.dtd b/src/chrome/locale/mt/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/mt/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/mt/brand.properties b/src/chrome/locale/mt/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/mt/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/mt/browser.properties b/src/chrome/locale/mt/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/mt/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/my/brand.dtd b/src/chrome/locale/my/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/my/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/my/brand.properties b/src/chrome/locale/my/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/my/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/my/browser.properties b/src/chrome/locale/my/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/my/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/nah/brand.dtd b/src/chrome/locale/nah/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/nah/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/nah/brand.properties b/src/chrome/locale/nah/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/nah/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/nah/browser.properties b/src/chrome/locale/nah/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/nah/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/nap/brand.dtd b/src/chrome/locale/nap/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/nap/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/nap/brand.properties b/src/chrome/locale/nap/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/nap/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/nap/browser.properties b/src/chrome/locale/nap/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/nap/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/nb/brand.dtd b/src/chrome/locale/nb/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/nb/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/nb/brand.properties b/src/chrome/locale/nb/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/nb/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/nb/browser.properties b/src/chrome/locale/nb/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/nb/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/ne/brand.dtd b/src/chrome/locale/ne/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/ne/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/ne/brand.properties b/src/chrome/locale/ne/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/ne/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/ne/browser.properties b/src/chrome/locale/ne/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/ne/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/nl/brand.dtd b/src/chrome/locale/nl/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/nl/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/nl/brand.properties b/src/chrome/locale/nl/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/nl/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/nl/browser.properties b/src/chrome/locale/nl/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/nl/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/nn/brand.dtd b/src/chrome/locale/nn/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/nn/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/nn/brand.properties b/src/chrome/locale/nn/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/nn/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/nn/browser.properties b/src/chrome/locale/nn/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/nn/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/nso/brand.dtd b/src/chrome/locale/nso/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/nso/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/nso/brand.properties b/src/chrome/locale/nso/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/nso/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/nso/browser.properties b/src/chrome/locale/nso/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/nso/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/oc/brand.dtd b/src/chrome/locale/oc/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/oc/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/oc/brand.properties b/src/chrome/locale/oc/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/oc/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/oc/browser.properties b/src/chrome/locale/oc/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/oc/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/or/brand.dtd b/src/chrome/locale/or/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/or/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/or/brand.properties b/src/chrome/locale/or/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/or/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/or/browser.properties b/src/chrome/locale/or/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/or/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/pa/brand.dtd b/src/chrome/locale/pa/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/pa/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/pa/brand.properties b/src/chrome/locale/pa/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/pa/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/pa/browser.properties b/src/chrome/locale/pa/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/pa/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/pap/brand.dtd b/src/chrome/locale/pap/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/pap/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/pap/brand.properties b/src/chrome/locale/pap/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/pap/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/pap/browser.properties b/src/chrome/locale/pap/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/pap/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/pl/brand.dtd b/src/chrome/locale/pl/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/pl/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/pl/brand.properties b/src/chrome/locale/pl/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/pl/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/pl/browser.properties b/src/chrome/locale/pl/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/pl/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/pms/brand.dtd b/src/chrome/locale/pms/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/pms/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/pms/brand.properties b/src/chrome/locale/pms/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/pms/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/pms/browser.properties b/src/chrome/locale/pms/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/pms/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/ps/brand.dtd b/src/chrome/locale/ps/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/ps/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/ps/brand.properties b/src/chrome/locale/ps/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/ps/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/ps/browser.properties b/src/chrome/locale/ps/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/ps/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/pt-BR/brand.dtd b/src/chrome/locale/pt-BR/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/pt-BR/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/pt-BR/brand.properties b/src/chrome/locale/pt-BR/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/pt-BR/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/pt-BR/browser.properties b/src/chrome/locale/pt-BR/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/pt-BR/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/pt/brand.dtd b/src/chrome/locale/pt/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/pt/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/pt/brand.properties b/src/chrome/locale/pt/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/pt/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/pt/browser.properties b/src/chrome/locale/pt/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/pt/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/ro/brand.dtd b/src/chrome/locale/ro/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/ro/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/ro/brand.properties b/src/chrome/locale/ro/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/ro/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/ro/browser.properties b/src/chrome/locale/ro/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/ro/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/ru/brand.dtd b/src/chrome/locale/ru/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/ru/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/ru/brand.properties b/src/chrome/locale/ru/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/ru/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/ru/browser.properties b/src/chrome/locale/ru/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/ru/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/sco/brand.dtd b/src/chrome/locale/sco/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/sco/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/sco/brand.properties b/src/chrome/locale/sco/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/sco/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/sco/browser.properties b/src/chrome/locale/sco/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/sco/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/sk/brand.dtd b/src/chrome/locale/sk/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/sk/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/sk/brand.properties b/src/chrome/locale/sk/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/sk/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/sk/browser.properties b/src/chrome/locale/sk/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/sk/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/sl/brand.dtd b/src/chrome/locale/sl/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/sl/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/sl/brand.properties b/src/chrome/locale/sl/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/sl/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/sl/browser.properties b/src/chrome/locale/sl/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/sl/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/so/brand.dtd b/src/chrome/locale/so/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/so/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/so/brand.properties b/src/chrome/locale/so/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/so/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/so/browser.properties b/src/chrome/locale/so/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/so/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/son/brand.dtd b/src/chrome/locale/son/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/son/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/son/brand.properties b/src/chrome/locale/son/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/son/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/son/browser.properties b/src/chrome/locale/son/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/son/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/sq/brand.dtd b/src/chrome/locale/sq/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/sq/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/sq/brand.properties b/src/chrome/locale/sq/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/sq/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/sq/browser.properties b/src/chrome/locale/sq/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/sq/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/sr/brand.dtd b/src/chrome/locale/sr/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/sr/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/sr/brand.properties b/src/chrome/locale/sr/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/sr/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/sr/browser.properties b/src/chrome/locale/sr/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/sr/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/st/brand.dtd b/src/chrome/locale/st/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/st/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/st/brand.properties b/src/chrome/locale/st/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/st/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/st/browser.properties b/src/chrome/locale/st/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/st/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/su/brand.dtd b/src/chrome/locale/su/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/su/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/su/brand.properties b/src/chrome/locale/su/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/su/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/su/browser.properties b/src/chrome/locale/su/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/su/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/sv/brand.dtd b/src/chrome/locale/sv/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/sv/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/sv/brand.properties b/src/chrome/locale/sv/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/sv/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/sv/browser.properties b/src/chrome/locale/sv/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/sv/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/sw/brand.dtd b/src/chrome/locale/sw/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/sw/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/sw/brand.properties b/src/chrome/locale/sw/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/sw/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/sw/browser.properties b/src/chrome/locale/sw/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/sw/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/ta/brand.dtd b/src/chrome/locale/ta/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/ta/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/ta/brand.properties b/src/chrome/locale/ta/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/ta/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/ta/browser.properties b/src/chrome/locale/ta/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/ta/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/te/brand.dtd b/src/chrome/locale/te/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/te/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/te/brand.properties b/src/chrome/locale/te/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/te/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/te/browser.properties b/src/chrome/locale/te/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/te/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/tg/brand.dtd b/src/chrome/locale/tg/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/tg/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/tg/brand.properties b/src/chrome/locale/tg/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/tg/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/tg/browser.properties b/src/chrome/locale/tg/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/tg/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/th/brand.dtd b/src/chrome/locale/th/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/th/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/th/brand.properties b/src/chrome/locale/th/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/th/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/th/browser.properties b/src/chrome/locale/th/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/th/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/ti/brand.dtd b/src/chrome/locale/ti/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/ti/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/ti/brand.properties b/src/chrome/locale/ti/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/ti/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/ti/browser.properties b/src/chrome/locale/ti/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/ti/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/tk/brand.dtd b/src/chrome/locale/tk/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/tk/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/tk/brand.properties b/src/chrome/locale/tk/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/tk/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/tk/browser.properties b/src/chrome/locale/tk/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/tk/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/tr/brand.dtd b/src/chrome/locale/tr/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/tr/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/tr/brand.properties b/src/chrome/locale/tr/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/tr/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/tr/browser.properties b/src/chrome/locale/tr/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/tr/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/uk/brand.dtd b/src/chrome/locale/uk/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/uk/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/uk/brand.properties b/src/chrome/locale/uk/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/uk/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/uk/browser.properties b/src/chrome/locale/uk/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/uk/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/ur/brand.dtd b/src/chrome/locale/ur/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/ur/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/ur/brand.properties b/src/chrome/locale/ur/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/ur/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/ur/browser.properties b/src/chrome/locale/ur/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/ur/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/ve/brand.dtd b/src/chrome/locale/ve/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/ve/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/ve/brand.properties b/src/chrome/locale/ve/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/ve/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/ve/browser.properties b/src/chrome/locale/ve/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/ve/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/vi/brand.dtd b/src/chrome/locale/vi/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/vi/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/vi/brand.properties b/src/chrome/locale/vi/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/vi/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/vi/browser.properties b/src/chrome/locale/vi/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/vi/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/wa/brand.dtd b/src/chrome/locale/wa/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/wa/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/wa/brand.properties b/src/chrome/locale/wa/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/wa/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/wa/browser.properties b/src/chrome/locale/wa/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/wa/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/wo/brand.dtd b/src/chrome/locale/wo/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/wo/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/wo/brand.properties b/src/chrome/locale/wo/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/wo/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/wo/browser.properties b/src/chrome/locale/wo/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/wo/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/zh-CN/brand.dtd b/src/chrome/locale/zh-CN/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/zh-CN/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/zh-CN/brand.properties b/src/chrome/locale/zh-CN/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/zh-CN/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/zh-CN/browser.properties b/src/chrome/locale/zh-CN/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/zh-CN/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/zh-HK/brand.dtd b/src/chrome/locale/zh-HK/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/zh-HK/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/zh-HK/brand.properties b/src/chrome/locale/zh-HK/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/zh-HK/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/zh-HK/browser.properties b/src/chrome/locale/zh-HK/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/zh-HK/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/zh-TW/brand.dtd b/src/chrome/locale/zh-TW/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/zh-TW/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/zh-TW/brand.properties b/src/chrome/locale/zh-TW/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/zh-TW/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/zh-TW/browser.properties b/src/chrome/locale/zh-TW/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/zh-TW/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
diff --git a/src/chrome/locale/zu/brand.dtd b/src/chrome/locale/zu/brand.dtd
new file mode 100644
index 0000000..76e405d
--- /dev/null
+++ b/src/chrome/locale/zu/brand.dtd
@@ -0,0 +1,8 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<!ENTITY brandShortName "TorBrowser">
+<!ENTITY brandFullName "Tor Browser">
+<!ENTITY vendorShortName "Tor Project">
+<!ENTITY trademarkInfo.part1 "Firefox and the Firefox logos are trademarks of the Mozilla Foundation.">
diff --git a/src/chrome/locale/zu/brand.properties b/src/chrome/locale/zu/brand.properties
new file mode 100644
index 0000000..9ae168e
--- /dev/null
+++ b/src/chrome/locale/zu/brand.properties
@@ -0,0 +1,15 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+brandShortName=TorBrowser
+brandFullName=Tor Browser
+vendorShortName=Tor Project
+
+homePageSingleStartMain=Firefox Start, a fast home page with built-in search
+homePageImport=Import your home page from %S
+
+homePageMigrationPageTitle=Home Page Selection
+homePageMigrationDescription=Please select the home page you wish to use:
+
+syncBrandShortName=Sync
diff --git a/src/chrome/locale/zu/browser.properties b/src/chrome/locale/zu/browser.properties
new file mode 100644
index 0000000..395bdba
--- /dev/null
+++ b/src/chrome/locale/zu/browser.properties
@@ -0,0 +1,13 @@
+# Default home page
+browser.startup.homepage=https://check.torproject.org/?lang=en-US&small=1&uptodate=1
+
+# Spell checker dictionary
+spellchecker.dictionary=en_US
+
+# Default search engine
+browser.search.defaultenginename=Startpage
+
+# Search engine order (order displayed in the search bar dropdown)
+browser.search.order.1=Startpage
+browser.search.order.2=DuckDuckGo
+browser.search.order.3=Google
1
0
Author: mikeperry
Date: 2013-05-15 00:09:47 +0000 (Wed, 15 May 2013)
New Revision: 26186
Modified:
translation/trunk/projects/torbutton/po/af/browser.properties.po
translation/trunk/projects/torbutton/po/ak/browser.properties.po
translation/trunk/projects/torbutton/po/am/browser.properties.po
translation/trunk/projects/torbutton/po/ar/browser.properties.po
translation/trunk/projects/torbutton/po/arn/browser.properties.po
translation/trunk/projects/torbutton/po/ast/browser.properties.po
translation/trunk/projects/torbutton/po/az/browser.properties.po
translation/trunk/projects/torbutton/po/be/browser.properties.po
translation/trunk/projects/torbutton/po/bg/browser.properties.po
translation/trunk/projects/torbutton/po/bn/browser.properties.po
translation/trunk/projects/torbutton/po/bn_IN/browser.properties.po
translation/trunk/projects/torbutton/po/bo/browser.properties.po
translation/trunk/projects/torbutton/po/br/browser.properties.po
translation/trunk/projects/torbutton/po/bs/browser.properties.po
translation/trunk/projects/torbutton/po/ca/browser.properties.po
translation/trunk/projects/torbutton/po/cs/browser.properties.po
translation/trunk/projects/torbutton/po/csb/browser.properties.po
translation/trunk/projects/torbutton/po/cy/browser.properties.po
translation/trunk/projects/torbutton/po/da/browser.properties.po
translation/trunk/projects/torbutton/po/de/browser.properties.po
translation/trunk/projects/torbutton/po/dz/browser.properties.po
translation/trunk/projects/torbutton/po/el/browser.properties.po
translation/trunk/projects/torbutton/po/en/browser.properties.po
translation/trunk/projects/torbutton/po/en/torbutton.dtd.po
translation/trunk/projects/torbutton/po/en/torbutton.properties.po
translation/trunk/projects/torbutton/po/eo/browser.properties.po
translation/trunk/projects/torbutton/po/es/browser.properties.po
translation/trunk/projects/torbutton/po/et/browser.properties.po
translation/trunk/projects/torbutton/po/eu/browser.properties.po
translation/trunk/projects/torbutton/po/fa/browser.properties.po
translation/trunk/projects/torbutton/po/fi/browser.properties.po
translation/trunk/projects/torbutton/po/fil/browser.properties.po
translation/trunk/projects/torbutton/po/fo/browser.properties.po
translation/trunk/projects/torbutton/po/fr/browser.properties.po
translation/trunk/projects/torbutton/po/fur/browser.properties.po
translation/trunk/projects/torbutton/po/fy/browser.properties.po
translation/trunk/projects/torbutton/po/ga/browser.properties.po
translation/trunk/projects/torbutton/po/gl/browser.properties.po
translation/trunk/projects/torbutton/po/gu/browser.properties.po
translation/trunk/projects/torbutton/po/gun/browser.properties.po
translation/trunk/projects/torbutton/po/ha/browser.properties.po
translation/trunk/projects/torbutton/po/he/browser.properties.po
translation/trunk/projects/torbutton/po/hi/browser.properties.po
translation/trunk/projects/torbutton/po/hr/browser.properties.po
translation/trunk/projects/torbutton/po/ht/browser.properties.po
translation/trunk/projects/torbutton/po/hu/browser.properties.po
translation/trunk/projects/torbutton/po/hy/browser.properties.po
translation/trunk/projects/torbutton/po/id/browser.properties.po
translation/trunk/projects/torbutton/po/is/browser.properties.po
translation/trunk/projects/torbutton/po/it/browser.properties.po
translation/trunk/projects/torbutton/po/ja/browser.properties.po
translation/trunk/projects/torbutton/po/jv/browser.properties.po
translation/trunk/projects/torbutton/po/ka/browser.properties.po
translation/trunk/projects/torbutton/po/km/browser.properties.po
translation/trunk/projects/torbutton/po/kn/browser.properties.po
translation/trunk/projects/torbutton/po/ko/browser.properties.po
translation/trunk/projects/torbutton/po/ku/browser.properties.po
translation/trunk/projects/torbutton/po/kw/browser.properties.po
translation/trunk/projects/torbutton/po/ky/browser.properties.po
translation/trunk/projects/torbutton/po/lb/browser.properties.po
translation/trunk/projects/torbutton/po/ln/browser.properties.po
translation/trunk/projects/torbutton/po/lo/browser.properties.po
translation/trunk/projects/torbutton/po/lt/browser.properties.po
translation/trunk/projects/torbutton/po/lv/browser.properties.po
translation/trunk/projects/torbutton/po/mg/browser.properties.po
translation/trunk/projects/torbutton/po/mi/browser.properties.po
translation/trunk/projects/torbutton/po/mk/browser.properties.po
translation/trunk/projects/torbutton/po/ml/browser.properties.po
translation/trunk/projects/torbutton/po/mn/browser.properties.po
translation/trunk/projects/torbutton/po/mr/browser.properties.po
translation/trunk/projects/torbutton/po/ms/browser.properties.po
translation/trunk/projects/torbutton/po/mt/browser.properties.po
translation/trunk/projects/torbutton/po/my/browser.properties.po
translation/trunk/projects/torbutton/po/nah/browser.properties.po
translation/trunk/projects/torbutton/po/nap/browser.properties.po
translation/trunk/projects/torbutton/po/nb/browser.properties.po
translation/trunk/projects/torbutton/po/ne/browser.properties.po
translation/trunk/projects/torbutton/po/nl/browser.properties.po
translation/trunk/projects/torbutton/po/nn/browser.properties.po
translation/trunk/projects/torbutton/po/nso/browser.properties.po
translation/trunk/projects/torbutton/po/oc/browser.properties.po
translation/trunk/projects/torbutton/po/or/browser.properties.po
translation/trunk/projects/torbutton/po/pa/browser.properties.po
translation/trunk/projects/torbutton/po/pap/browser.properties.po
translation/trunk/projects/torbutton/po/pl/browser.properties.po
translation/trunk/projects/torbutton/po/pms/browser.properties.po
translation/trunk/projects/torbutton/po/ps/browser.properties.po
translation/trunk/projects/torbutton/po/pt/browser.properties.po
translation/trunk/projects/torbutton/po/pt_BR/browser.properties.po
translation/trunk/projects/torbutton/po/ro/browser.properties.po
translation/trunk/projects/torbutton/po/ru/browser.properties.po
translation/trunk/projects/torbutton/po/sco/browser.properties.po
translation/trunk/projects/torbutton/po/sk/browser.properties.po
translation/trunk/projects/torbutton/po/sl/browser.properties.po
translation/trunk/projects/torbutton/po/so/browser.properties.po
translation/trunk/projects/torbutton/po/son/browser.properties.po
translation/trunk/projects/torbutton/po/sq/browser.properties.po
translation/trunk/projects/torbutton/po/sr/browser.properties.po
translation/trunk/projects/torbutton/po/st/browser.properties.po
translation/trunk/projects/torbutton/po/su/browser.properties.po
translation/trunk/projects/torbutton/po/sv/browser.properties.po
translation/trunk/projects/torbutton/po/sw/browser.properties.po
translation/trunk/projects/torbutton/po/ta/browser.properties.po
translation/trunk/projects/torbutton/po/te/browser.properties.po
translation/trunk/projects/torbutton/po/templates/brand.dtd.pot
translation/trunk/projects/torbutton/po/templates/brand.properties.pot
translation/trunk/projects/torbutton/po/templates/browser.properties.po
translation/trunk/projects/torbutton/po/templates/browser.properties.pot
translation/trunk/projects/torbutton/po/templates/torbutton.dtd.pot
translation/trunk/projects/torbutton/po/templates/torbutton.properties.pot
translation/trunk/projects/torbutton/po/tg/browser.properties.po
translation/trunk/projects/torbutton/po/th/browser.properties.po
translation/trunk/projects/torbutton/po/ti/browser.properties.po
translation/trunk/projects/torbutton/po/tk/browser.properties.po
translation/trunk/projects/torbutton/po/tr/browser.properties.po
translation/trunk/projects/torbutton/po/uk/browser.properties.po
translation/trunk/projects/torbutton/po/ur/browser.properties.po
translation/trunk/projects/torbutton/po/ve/browser.properties.po
translation/trunk/projects/torbutton/po/vi/browser.properties.po
translation/trunk/projects/torbutton/po/wa/browser.properties.po
translation/trunk/projects/torbutton/po/wo/browser.properties.po
translation/trunk/projects/torbutton/po/zh_CN/browser.properties.po
translation/trunk/projects/torbutton/po/zh_HK/browser.properties.po
translation/trunk/projects/torbutton/po/zh_TW/browser.properties.po
translation/trunk/projects/torbutton/po/zu/browser.properties.po
Log:
Msgmerge changes..
Modified: translation/trunk/projects/torbutton/po/af/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/af/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/af/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/ak/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ak/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/ak/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/am/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/am/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/am/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/ar/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ar/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/ar/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/arn/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/arn/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/arn/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/ast/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ast/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/ast/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/az/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/az/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/az/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/be/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/be/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/be/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/bg/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/bg/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/bg/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/bn/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/bn/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/bn/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/bn_IN/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/bn_IN/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/bn_IN/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/bo/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/bo/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/bo/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/br/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/br/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/br/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/bs/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/bs/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/bs/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/ca/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ca/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/ca/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/cs/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/cs/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/cs/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/csb/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/csb/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/csb/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/cy/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/cy/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/cy/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/da/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/da/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/da/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/de/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/de/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/de/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/dz/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/dz/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/dz/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/el/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/el/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/el/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/en/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/en/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/en/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/en/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/en/torbutton.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/en/torbutton.dtd.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@@ -597,8 +598,7 @@
#: torbutton.prefs.block_disk
msgid ""
-"Don't record browsing history or website data (enables Private Browsing "
-"Mode)"
+"Don't record browsing history or website data (enables Private Browsing Mode)"
msgstr ""
#: torbutton.prefs.restrict_thirdparty
Modified: translation/trunk/projects/torbutton/po/en/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/en/torbutton.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/en/torbutton.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@@ -84,7 +85,8 @@
msgid ""
"Warning!\n"
"\n"
-"Torbutton on Firefox 3 is known to leak your timezone and livemarks via Tor.\n"
+"Torbutton on Firefox 3 is known to leak your timezone and livemarks via "
+"Tor.\n"
"\n"
"Do you wish to continue anyway?"
msgstr ""
Modified: translation/trunk/projects/torbutton/po/eo/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/eo/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/eo/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/es/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/es/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/es/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/et/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/et/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/et/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/eu/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/eu/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/eu/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/fa/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/fa/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/fa/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/fi/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/fi/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/fi/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/fil/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/fil/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/fil/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/fo/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/fo/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/fo/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/fr/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/fr/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/fr/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/fur/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/fur/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/fur/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/fy/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/fy/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/fy/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/ga/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ga/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/ga/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/gl/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/gl/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/gl/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/gu/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/gu/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/gu/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/gun/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/gun/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/gun/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/ha/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ha/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/ha/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/he/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/he/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/he/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/hi/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/hi/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/hi/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/hr/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/hr/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/hr/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/ht/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ht/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/ht/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/hu/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/hu/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/hu/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/hy/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/hy/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/hy/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/id/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/id/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/id/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/is/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/is/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/is/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/it/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/it/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/it/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/ja/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ja/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/ja/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/jv/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/jv/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/jv/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/ka/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ka/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/ka/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/km/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/km/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/km/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/kn/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/kn/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/kn/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/ko/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ko/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/ko/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/ku/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ku/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/ku/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/kw/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/kw/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/kw/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/ky/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ky/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/ky/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/lb/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/lb/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/lb/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/ln/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ln/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/ln/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/lo/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/lo/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/lo/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/lt/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/lt/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/lt/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/lv/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/lv/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/lv/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/mg/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/mg/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/mg/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/mi/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/mi/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/mi/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/mk/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/mk/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/mk/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/ml/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ml/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/ml/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/mn/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/mn/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/mn/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/mr/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/mr/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/mr/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/ms/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ms/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/ms/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/mt/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/mt/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/mt/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/my/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/my/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/my/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/nah/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/nah/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/nah/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/nap/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/nap/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/nap/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/nb/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/nb/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/nb/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/ne/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ne/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/ne/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/nl/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/nl/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/nl/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/nn/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/nn/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/nn/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/nso/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/nso/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/nso/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/oc/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/oc/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/oc/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/or/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/or/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/or/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/pa/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/pa/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/pa/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/pap/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/pap/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/pap/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/pl/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/pl/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/pl/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/pms/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/pms/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/pms/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/ps/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ps/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/ps/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/pt/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/pt/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/pt/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/pt_BR/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/pt_BR/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/pt_BR/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/ro/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ro/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/ro/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/ru/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ru/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/ru/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/sco/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/sco/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/sco/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/sk/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/sk/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/sk/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/sl/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/sl/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/sl/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/so/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/so/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/so/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/son/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/son/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/son/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/sq/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/sq/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/sq/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/sr/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/sr/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/sr/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/st/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/st/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/st/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/su/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/su/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/su/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/sv/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/sv/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/sv/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/sw/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/sw/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/sw/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/ta/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ta/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/ta/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/te/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/te/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/te/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/templates/brand.dtd.pot
===================================================================
--- translation/trunk/projects/torbutton/po/templates/brand.dtd.pot 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/templates/brand.dtd.pot 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,7 +3,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:39-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
Modified: translation/trunk/projects/torbutton/po/templates/brand.properties.pot
===================================================================
--- translation/trunk/projects/torbutton/po/templates/brand.properties.pot 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/templates/brand.properties.pot 2013-05-15 00:09:47 UTC (rev 26186)
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:39-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
Modified: translation/trunk/projects/torbutton/po/templates/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/templates/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/templates/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/templates/browser.properties.pot
===================================================================
--- translation/trunk/projects/torbutton/po/templates/browser.properties.pot 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/templates/browser.properties.pot 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,7 +3,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:39-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
Modified: translation/trunk/projects/torbutton/po/templates/torbutton.dtd.pot
===================================================================
--- translation/trunk/projects/torbutton/po/templates/torbutton.dtd.pot 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/templates/torbutton.dtd.pot 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,7 +3,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:39-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
Modified: translation/trunk/projects/torbutton/po/templates/torbutton.properties.pot
===================================================================
--- translation/trunk/projects/torbutton/po/templates/torbutton.properties.pot 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/templates/torbutton.properties.pot 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,7 +3,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:39-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
Modified: translation/trunk/projects/torbutton/po/tg/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/tg/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/tg/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/th/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/th/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/th/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/ti/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ti/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/ti/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/tk/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/tk/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/tk/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/tr/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/tr/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/tr/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/uk/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/uk/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/uk/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/ur/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ur/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/ur/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/ve/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ve/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/ve/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/vi/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/vi/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/vi/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/wa/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/wa/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/wa/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/wo/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/wo/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/wo/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/zh_CN/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/zh_CN/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/zh_CN/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/zh_HK/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/zh_HK/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/zh_HK/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/zh_TW/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/zh_TW/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/zh_TW/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
Modified: translation/trunk/projects/torbutton/po/zu/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/zu/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
+++ translation/trunk/projects/torbutton/po/zu/browser.properties.po 2013-05-15 00:09:47 UTC (rev 26186)
@@ -3,10 +3,11 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-05-14 15:22-0700\n"
+"POT-Creation-Date: 2013-05-14 17:02-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"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
1
0
Author: mikeperry
Date: 2013-05-14 23:54:06 +0000 (Tue, 14 May 2013)
New Revision: 26185
Added:
translation/trunk/projects/torbutton/po/af/brand.dtd.po
translation/trunk/projects/torbutton/po/af/brand.properties.po
translation/trunk/projects/torbutton/po/af/browser.properties.po
translation/trunk/projects/torbutton/po/ak/brand.dtd.po
translation/trunk/projects/torbutton/po/ak/brand.properties.po
translation/trunk/projects/torbutton/po/ak/browser.properties.po
translation/trunk/projects/torbutton/po/am/brand.dtd.po
translation/trunk/projects/torbutton/po/am/brand.properties.po
translation/trunk/projects/torbutton/po/am/browser.properties.po
translation/trunk/projects/torbutton/po/ar/brand.dtd.po
translation/trunk/projects/torbutton/po/ar/brand.properties.po
translation/trunk/projects/torbutton/po/ar/browser.properties.po
translation/trunk/projects/torbutton/po/arn/brand.dtd.po
translation/trunk/projects/torbutton/po/arn/brand.properties.po
translation/trunk/projects/torbutton/po/arn/browser.properties.po
translation/trunk/projects/torbutton/po/ast/brand.dtd.po
translation/trunk/projects/torbutton/po/ast/brand.properties.po
translation/trunk/projects/torbutton/po/ast/browser.properties.po
translation/trunk/projects/torbutton/po/az/brand.dtd.po
translation/trunk/projects/torbutton/po/az/brand.properties.po
translation/trunk/projects/torbutton/po/az/browser.properties.po
translation/trunk/projects/torbutton/po/be/brand.dtd.po
translation/trunk/projects/torbutton/po/be/brand.properties.po
translation/trunk/projects/torbutton/po/be/browser.properties.po
translation/trunk/projects/torbutton/po/bg/brand.dtd.po
translation/trunk/projects/torbutton/po/bg/brand.properties.po
translation/trunk/projects/torbutton/po/bg/browser.properties.po
translation/trunk/projects/torbutton/po/bn/brand.dtd.po
translation/trunk/projects/torbutton/po/bn/brand.properties.po
translation/trunk/projects/torbutton/po/bn/browser.properties.po
translation/trunk/projects/torbutton/po/bn_IN/brand.dtd.po
translation/trunk/projects/torbutton/po/bn_IN/brand.properties.po
translation/trunk/projects/torbutton/po/bn_IN/browser.properties.po
translation/trunk/projects/torbutton/po/bo/brand.dtd.po
translation/trunk/projects/torbutton/po/bo/brand.properties.po
translation/trunk/projects/torbutton/po/bo/browser.properties.po
translation/trunk/projects/torbutton/po/br/brand.dtd.po
translation/trunk/projects/torbutton/po/br/brand.properties.po
translation/trunk/projects/torbutton/po/br/browser.properties.po
translation/trunk/projects/torbutton/po/bs/brand.dtd.po
translation/trunk/projects/torbutton/po/bs/brand.properties.po
translation/trunk/projects/torbutton/po/bs/browser.properties.po
translation/trunk/projects/torbutton/po/ca/brand.dtd.po
translation/trunk/projects/torbutton/po/ca/brand.properties.po
translation/trunk/projects/torbutton/po/ca/browser.properties.po
translation/trunk/projects/torbutton/po/cs/brand.dtd.po
translation/trunk/projects/torbutton/po/cs/brand.properties.po
translation/trunk/projects/torbutton/po/cs/browser.properties.po
translation/trunk/projects/torbutton/po/csb/brand.dtd.po
translation/trunk/projects/torbutton/po/csb/brand.properties.po
translation/trunk/projects/torbutton/po/csb/browser.properties.po
translation/trunk/projects/torbutton/po/cy/brand.dtd.po
translation/trunk/projects/torbutton/po/cy/brand.properties.po
translation/trunk/projects/torbutton/po/cy/browser.properties.po
translation/trunk/projects/torbutton/po/da/brand.dtd.po
translation/trunk/projects/torbutton/po/da/brand.properties.po
translation/trunk/projects/torbutton/po/da/browser.properties.po
translation/trunk/projects/torbutton/po/de/brand.dtd.po
translation/trunk/projects/torbutton/po/de/brand.properties.po
translation/trunk/projects/torbutton/po/de/browser.properties.po
translation/trunk/projects/torbutton/po/dz/brand.dtd.po
translation/trunk/projects/torbutton/po/dz/brand.properties.po
translation/trunk/projects/torbutton/po/dz/browser.properties.po
translation/trunk/projects/torbutton/po/el/brand.dtd.po
translation/trunk/projects/torbutton/po/el/brand.properties.po
translation/trunk/projects/torbutton/po/el/browser.properties.po
translation/trunk/projects/torbutton/po/eo/brand.dtd.po
translation/trunk/projects/torbutton/po/eo/brand.properties.po
translation/trunk/projects/torbutton/po/eo/browser.properties.po
translation/trunk/projects/torbutton/po/es/brand.dtd.po
translation/trunk/projects/torbutton/po/es/brand.properties.po
translation/trunk/projects/torbutton/po/es/browser.properties.po
translation/trunk/projects/torbutton/po/et/brand.dtd.po
translation/trunk/projects/torbutton/po/et/brand.properties.po
translation/trunk/projects/torbutton/po/et/browser.properties.po
translation/trunk/projects/torbutton/po/eu/brand.dtd.po
translation/trunk/projects/torbutton/po/eu/brand.properties.po
translation/trunk/projects/torbutton/po/eu/browser.properties.po
translation/trunk/projects/torbutton/po/fa/brand.dtd.po
translation/trunk/projects/torbutton/po/fa/brand.properties.po
translation/trunk/projects/torbutton/po/fa/browser.properties.po
translation/trunk/projects/torbutton/po/fi/brand.dtd.po
translation/trunk/projects/torbutton/po/fi/brand.properties.po
translation/trunk/projects/torbutton/po/fi/browser.properties.po
translation/trunk/projects/torbutton/po/fil/brand.dtd.po
translation/trunk/projects/torbutton/po/fil/brand.properties.po
translation/trunk/projects/torbutton/po/fil/browser.properties.po
translation/trunk/projects/torbutton/po/fo/brand.dtd.po
translation/trunk/projects/torbutton/po/fo/brand.properties.po
translation/trunk/projects/torbutton/po/fo/browser.properties.po
translation/trunk/projects/torbutton/po/fr/brand.dtd.po
translation/trunk/projects/torbutton/po/fr/brand.properties.po
translation/trunk/projects/torbutton/po/fr/browser.properties.po
translation/trunk/projects/torbutton/po/fur/brand.dtd.po
translation/trunk/projects/torbutton/po/fur/brand.properties.po
translation/trunk/projects/torbutton/po/fur/browser.properties.po
translation/trunk/projects/torbutton/po/fy/brand.dtd.po
translation/trunk/projects/torbutton/po/fy/brand.properties.po
translation/trunk/projects/torbutton/po/fy/browser.properties.po
translation/trunk/projects/torbutton/po/ga/brand.dtd.po
translation/trunk/projects/torbutton/po/ga/brand.properties.po
translation/trunk/projects/torbutton/po/ga/browser.properties.po
translation/trunk/projects/torbutton/po/gl/brand.dtd.po
translation/trunk/projects/torbutton/po/gl/brand.properties.po
translation/trunk/projects/torbutton/po/gl/browser.properties.po
translation/trunk/projects/torbutton/po/gu/brand.dtd.po
translation/trunk/projects/torbutton/po/gu/brand.properties.po
translation/trunk/projects/torbutton/po/gu/browser.properties.po
translation/trunk/projects/torbutton/po/gun/brand.dtd.po
translation/trunk/projects/torbutton/po/gun/brand.properties.po
translation/trunk/projects/torbutton/po/gun/browser.properties.po
translation/trunk/projects/torbutton/po/ha/brand.dtd.po
translation/trunk/projects/torbutton/po/ha/brand.properties.po
translation/trunk/projects/torbutton/po/ha/browser.properties.po
translation/trunk/projects/torbutton/po/he/brand.dtd.po
translation/trunk/projects/torbutton/po/he/brand.properties.po
translation/trunk/projects/torbutton/po/he/browser.properties.po
translation/trunk/projects/torbutton/po/hi/brand.dtd.po
translation/trunk/projects/torbutton/po/hi/brand.properties.po
translation/trunk/projects/torbutton/po/hi/browser.properties.po
translation/trunk/projects/torbutton/po/hr/brand.dtd.po
translation/trunk/projects/torbutton/po/hr/brand.properties.po
translation/trunk/projects/torbutton/po/hr/browser.properties.po
translation/trunk/projects/torbutton/po/ht/brand.dtd.po
translation/trunk/projects/torbutton/po/ht/brand.properties.po
translation/trunk/projects/torbutton/po/ht/browser.properties.po
translation/trunk/projects/torbutton/po/hu/brand.dtd.po
translation/trunk/projects/torbutton/po/hu/brand.properties.po
translation/trunk/projects/torbutton/po/hu/browser.properties.po
translation/trunk/projects/torbutton/po/hy/brand.dtd.po
translation/trunk/projects/torbutton/po/hy/brand.properties.po
translation/trunk/projects/torbutton/po/hy/browser.properties.po
translation/trunk/projects/torbutton/po/id/brand.dtd.po
translation/trunk/projects/torbutton/po/id/brand.properties.po
translation/trunk/projects/torbutton/po/id/browser.properties.po
translation/trunk/projects/torbutton/po/is/brand.dtd.po
translation/trunk/projects/torbutton/po/is/brand.properties.po
translation/trunk/projects/torbutton/po/is/browser.properties.po
translation/trunk/projects/torbutton/po/it/brand.dtd.po
translation/trunk/projects/torbutton/po/it/brand.properties.po
translation/trunk/projects/torbutton/po/it/browser.properties.po
translation/trunk/projects/torbutton/po/ja/brand.dtd.po
translation/trunk/projects/torbutton/po/ja/brand.properties.po
translation/trunk/projects/torbutton/po/ja/browser.properties.po
translation/trunk/projects/torbutton/po/jv/brand.dtd.po
translation/trunk/projects/torbutton/po/jv/brand.properties.po
translation/trunk/projects/torbutton/po/jv/browser.properties.po
translation/trunk/projects/torbutton/po/ka/brand.dtd.po
translation/trunk/projects/torbutton/po/ka/brand.properties.po
translation/trunk/projects/torbutton/po/ka/browser.properties.po
translation/trunk/projects/torbutton/po/km/brand.dtd.po
translation/trunk/projects/torbutton/po/km/brand.properties.po
translation/trunk/projects/torbutton/po/km/browser.properties.po
translation/trunk/projects/torbutton/po/kn/brand.dtd.po
translation/trunk/projects/torbutton/po/kn/brand.properties.po
translation/trunk/projects/torbutton/po/kn/browser.properties.po
translation/trunk/projects/torbutton/po/ko/brand.dtd.po
translation/trunk/projects/torbutton/po/ko/brand.properties.po
translation/trunk/projects/torbutton/po/ko/browser.properties.po
translation/trunk/projects/torbutton/po/ku/brand.dtd.po
translation/trunk/projects/torbutton/po/ku/brand.properties.po
translation/trunk/projects/torbutton/po/ku/browser.properties.po
translation/trunk/projects/torbutton/po/kw/brand.dtd.po
translation/trunk/projects/torbutton/po/kw/brand.properties.po
translation/trunk/projects/torbutton/po/kw/browser.properties.po
translation/trunk/projects/torbutton/po/ky/brand.dtd.po
translation/trunk/projects/torbutton/po/ky/brand.properties.po
translation/trunk/projects/torbutton/po/ky/browser.properties.po
translation/trunk/projects/torbutton/po/lb/brand.dtd.po
translation/trunk/projects/torbutton/po/lb/brand.properties.po
translation/trunk/projects/torbutton/po/lb/browser.properties.po
translation/trunk/projects/torbutton/po/ln/brand.dtd.po
translation/trunk/projects/torbutton/po/ln/brand.properties.po
translation/trunk/projects/torbutton/po/ln/browser.properties.po
translation/trunk/projects/torbutton/po/lo/brand.dtd.po
translation/trunk/projects/torbutton/po/lo/brand.properties.po
translation/trunk/projects/torbutton/po/lo/browser.properties.po
translation/trunk/projects/torbutton/po/lt/brand.dtd.po
translation/trunk/projects/torbutton/po/lt/brand.properties.po
translation/trunk/projects/torbutton/po/lt/browser.properties.po
translation/trunk/projects/torbutton/po/lv/brand.dtd.po
translation/trunk/projects/torbutton/po/lv/brand.properties.po
translation/trunk/projects/torbutton/po/lv/browser.properties.po
translation/trunk/projects/torbutton/po/mg/brand.dtd.po
translation/trunk/projects/torbutton/po/mg/brand.properties.po
translation/trunk/projects/torbutton/po/mg/browser.properties.po
translation/trunk/projects/torbutton/po/mi/brand.dtd.po
translation/trunk/projects/torbutton/po/mi/brand.properties.po
translation/trunk/projects/torbutton/po/mi/browser.properties.po
translation/trunk/projects/torbutton/po/mk/brand.dtd.po
translation/trunk/projects/torbutton/po/mk/brand.properties.po
translation/trunk/projects/torbutton/po/mk/browser.properties.po
translation/trunk/projects/torbutton/po/ml/brand.dtd.po
translation/trunk/projects/torbutton/po/ml/brand.properties.po
translation/trunk/projects/torbutton/po/ml/browser.properties.po
translation/trunk/projects/torbutton/po/mn/brand.dtd.po
translation/trunk/projects/torbutton/po/mn/brand.properties.po
translation/trunk/projects/torbutton/po/mn/browser.properties.po
translation/trunk/projects/torbutton/po/mr/brand.dtd.po
translation/trunk/projects/torbutton/po/mr/brand.properties.po
translation/trunk/projects/torbutton/po/mr/browser.properties.po
translation/trunk/projects/torbutton/po/ms/brand.dtd.po
translation/trunk/projects/torbutton/po/ms/brand.properties.po
translation/trunk/projects/torbutton/po/ms/browser.properties.po
translation/trunk/projects/torbutton/po/mt/brand.dtd.po
translation/trunk/projects/torbutton/po/mt/brand.properties.po
translation/trunk/projects/torbutton/po/mt/browser.properties.po
translation/trunk/projects/torbutton/po/my/brand.dtd.po
translation/trunk/projects/torbutton/po/my/brand.properties.po
translation/trunk/projects/torbutton/po/my/browser.properties.po
translation/trunk/projects/torbutton/po/nah/brand.dtd.po
translation/trunk/projects/torbutton/po/nah/brand.properties.po
translation/trunk/projects/torbutton/po/nah/browser.properties.po
translation/trunk/projects/torbutton/po/nap/brand.dtd.po
translation/trunk/projects/torbutton/po/nap/brand.properties.po
translation/trunk/projects/torbutton/po/nap/browser.properties.po
translation/trunk/projects/torbutton/po/nb/brand.dtd.po
translation/trunk/projects/torbutton/po/nb/brand.properties.po
translation/trunk/projects/torbutton/po/nb/browser.properties.po
translation/trunk/projects/torbutton/po/ne/brand.dtd.po
translation/trunk/projects/torbutton/po/ne/brand.properties.po
translation/trunk/projects/torbutton/po/ne/browser.properties.po
translation/trunk/projects/torbutton/po/nl/brand.dtd.po
translation/trunk/projects/torbutton/po/nl/brand.properties.po
translation/trunk/projects/torbutton/po/nl/browser.properties.po
translation/trunk/projects/torbutton/po/nn/brand.dtd.po
translation/trunk/projects/torbutton/po/nn/brand.properties.po
translation/trunk/projects/torbutton/po/nn/browser.properties.po
translation/trunk/projects/torbutton/po/nso/brand.dtd.po
translation/trunk/projects/torbutton/po/nso/brand.properties.po
translation/trunk/projects/torbutton/po/nso/browser.properties.po
translation/trunk/projects/torbutton/po/oc/brand.dtd.po
translation/trunk/projects/torbutton/po/oc/brand.properties.po
translation/trunk/projects/torbutton/po/oc/browser.properties.po
translation/trunk/projects/torbutton/po/or/brand.dtd.po
translation/trunk/projects/torbutton/po/or/brand.properties.po
translation/trunk/projects/torbutton/po/or/browser.properties.po
translation/trunk/projects/torbutton/po/pa/brand.dtd.po
translation/trunk/projects/torbutton/po/pa/brand.properties.po
translation/trunk/projects/torbutton/po/pa/browser.properties.po
translation/trunk/projects/torbutton/po/pap/brand.dtd.po
translation/trunk/projects/torbutton/po/pap/brand.properties.po
translation/trunk/projects/torbutton/po/pap/browser.properties.po
translation/trunk/projects/torbutton/po/pl/brand.dtd.po
translation/trunk/projects/torbutton/po/pl/brand.properties.po
translation/trunk/projects/torbutton/po/pl/browser.properties.po
translation/trunk/projects/torbutton/po/pms/brand.dtd.po
translation/trunk/projects/torbutton/po/pms/brand.properties.po
translation/trunk/projects/torbutton/po/pms/browser.properties.po
translation/trunk/projects/torbutton/po/ps/brand.dtd.po
translation/trunk/projects/torbutton/po/ps/brand.properties.po
translation/trunk/projects/torbutton/po/ps/browser.properties.po
translation/trunk/projects/torbutton/po/pt/brand.dtd.po
translation/trunk/projects/torbutton/po/pt/brand.properties.po
translation/trunk/projects/torbutton/po/pt/browser.properties.po
translation/trunk/projects/torbutton/po/pt_BR/brand.dtd.po
translation/trunk/projects/torbutton/po/pt_BR/brand.properties.po
translation/trunk/projects/torbutton/po/pt_BR/browser.properties.po
translation/trunk/projects/torbutton/po/ro/brand.dtd.po
translation/trunk/projects/torbutton/po/ro/brand.properties.po
translation/trunk/projects/torbutton/po/ro/browser.properties.po
translation/trunk/projects/torbutton/po/ru/brand.dtd.po
translation/trunk/projects/torbutton/po/ru/brand.properties.po
translation/trunk/projects/torbutton/po/ru/browser.properties.po
translation/trunk/projects/torbutton/po/sco/brand.dtd.po
translation/trunk/projects/torbutton/po/sco/brand.properties.po
translation/trunk/projects/torbutton/po/sco/browser.properties.po
translation/trunk/projects/torbutton/po/sk/brand.dtd.po
translation/trunk/projects/torbutton/po/sk/brand.properties.po
translation/trunk/projects/torbutton/po/sk/browser.properties.po
translation/trunk/projects/torbutton/po/sl/brand.dtd.po
translation/trunk/projects/torbutton/po/sl/brand.properties.po
translation/trunk/projects/torbutton/po/sl/browser.properties.po
translation/trunk/projects/torbutton/po/so/brand.dtd.po
translation/trunk/projects/torbutton/po/so/brand.properties.po
translation/trunk/projects/torbutton/po/so/browser.properties.po
translation/trunk/projects/torbutton/po/son/brand.dtd.po
translation/trunk/projects/torbutton/po/son/brand.properties.po
translation/trunk/projects/torbutton/po/son/browser.properties.po
translation/trunk/projects/torbutton/po/sq/brand.dtd.po
translation/trunk/projects/torbutton/po/sq/brand.properties.po
translation/trunk/projects/torbutton/po/sq/browser.properties.po
translation/trunk/projects/torbutton/po/sr/brand.dtd.po
translation/trunk/projects/torbutton/po/sr/brand.properties.po
translation/trunk/projects/torbutton/po/sr/browser.properties.po
translation/trunk/projects/torbutton/po/st/brand.dtd.po
translation/trunk/projects/torbutton/po/st/brand.properties.po
translation/trunk/projects/torbutton/po/st/browser.properties.po
translation/trunk/projects/torbutton/po/su/brand.dtd.po
translation/trunk/projects/torbutton/po/su/brand.properties.po
translation/trunk/projects/torbutton/po/su/browser.properties.po
translation/trunk/projects/torbutton/po/sv/brand.dtd.po
translation/trunk/projects/torbutton/po/sv/brand.properties.po
translation/trunk/projects/torbutton/po/sv/browser.properties.po
translation/trunk/projects/torbutton/po/sw/brand.dtd.po
translation/trunk/projects/torbutton/po/sw/brand.properties.po
translation/trunk/projects/torbutton/po/sw/browser.properties.po
translation/trunk/projects/torbutton/po/ta/brand.dtd.po
translation/trunk/projects/torbutton/po/ta/brand.properties.po
translation/trunk/projects/torbutton/po/ta/browser.properties.po
translation/trunk/projects/torbutton/po/te/brand.dtd.po
translation/trunk/projects/torbutton/po/te/brand.properties.po
translation/trunk/projects/torbutton/po/te/browser.properties.po
translation/trunk/projects/torbutton/po/templates/brand.dtd.po
translation/trunk/projects/torbutton/po/templates/brand.properties.po
translation/trunk/projects/torbutton/po/templates/browser.properties.po
translation/trunk/projects/torbutton/po/tg/brand.dtd.po
translation/trunk/projects/torbutton/po/tg/brand.properties.po
translation/trunk/projects/torbutton/po/tg/browser.properties.po
translation/trunk/projects/torbutton/po/th/brand.dtd.po
translation/trunk/projects/torbutton/po/th/brand.properties.po
translation/trunk/projects/torbutton/po/th/browser.properties.po
translation/trunk/projects/torbutton/po/ti/brand.dtd.po
translation/trunk/projects/torbutton/po/ti/brand.properties.po
translation/trunk/projects/torbutton/po/ti/browser.properties.po
translation/trunk/projects/torbutton/po/tk/brand.dtd.po
translation/trunk/projects/torbutton/po/tk/brand.properties.po
translation/trunk/projects/torbutton/po/tk/browser.properties.po
translation/trunk/projects/torbutton/po/tr/brand.dtd.po
translation/trunk/projects/torbutton/po/tr/brand.properties.po
translation/trunk/projects/torbutton/po/tr/browser.properties.po
translation/trunk/projects/torbutton/po/uk/brand.dtd.po
translation/trunk/projects/torbutton/po/uk/brand.properties.po
translation/trunk/projects/torbutton/po/uk/browser.properties.po
translation/trunk/projects/torbutton/po/ur/brand.dtd.po
translation/trunk/projects/torbutton/po/ur/brand.properties.po
translation/trunk/projects/torbutton/po/ur/browser.properties.po
translation/trunk/projects/torbutton/po/ve/brand.dtd.po
translation/trunk/projects/torbutton/po/ve/brand.properties.po
translation/trunk/projects/torbutton/po/ve/browser.properties.po
translation/trunk/projects/torbutton/po/vi/brand.dtd.po
translation/trunk/projects/torbutton/po/vi/brand.properties.po
translation/trunk/projects/torbutton/po/vi/browser.properties.po
translation/trunk/projects/torbutton/po/wa/brand.dtd.po
translation/trunk/projects/torbutton/po/wa/brand.properties.po
translation/trunk/projects/torbutton/po/wa/browser.properties.po
translation/trunk/projects/torbutton/po/wo/brand.dtd.po
translation/trunk/projects/torbutton/po/wo/brand.properties.po
translation/trunk/projects/torbutton/po/wo/browser.properties.po
translation/trunk/projects/torbutton/po/zh_CN/brand.dtd.po
translation/trunk/projects/torbutton/po/zh_CN/brand.properties.po
translation/trunk/projects/torbutton/po/zh_CN/browser.properties.po
translation/trunk/projects/torbutton/po/zh_HK/brand.dtd.po
translation/trunk/projects/torbutton/po/zh_HK/brand.properties.po
translation/trunk/projects/torbutton/po/zh_HK/browser.properties.po
translation/trunk/projects/torbutton/po/zh_TW/brand.dtd.po
translation/trunk/projects/torbutton/po/zh_TW/brand.properties.po
translation/trunk/projects/torbutton/po/zh_TW/browser.properties.po
translation/trunk/projects/torbutton/po/zu/brand.dtd.po
translation/trunk/projects/torbutton/po/zu/brand.properties.po
translation/trunk/projects/torbutton/po/zu/browser.properties.po
Log:
Add branding strings to all languages.
Added: translation/trunk/projects/torbutton/po/af/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/af/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/af/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/af/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/af/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/af/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/af/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/af/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/af/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ak/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/ak/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ak/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ak/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ak/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ak/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ak/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ak/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ak/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/am/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/am/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/am/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/am/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/am/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/am/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/am/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/am/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/am/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ar/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/ar/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ar/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ar/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ar/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ar/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ar/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ar/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ar/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/arn/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/arn/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/arn/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/arn/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/arn/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/arn/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/arn/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/arn/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/arn/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ast/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/ast/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ast/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ast/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ast/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ast/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ast/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ast/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ast/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/az/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/az/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/az/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/az/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/az/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/az/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/az/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/az/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/az/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/be/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/be/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/be/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/be/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/be/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/be/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/be/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/be/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/be/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/bg/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/bg/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/bg/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/bg/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/bg/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/bg/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/bg/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/bg/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/bg/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/bn/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/bn/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/bn/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/bn/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/bn/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/bn/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/bn/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/bn/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/bn/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/bn_IN/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/bn_IN/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/bn_IN/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/bn_IN/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/bn_IN/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/bn_IN/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/bn_IN/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/bn_IN/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/bn_IN/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/bo/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/bo/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/bo/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/bo/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/bo/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/bo/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/bo/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/bo/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/bo/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/br/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/br/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/br/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/br/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/br/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/br/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/br/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/br/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/br/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/bs/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/bs/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/bs/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/bs/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/bs/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/bs/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/bs/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/bs/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/bs/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ca/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/ca/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ca/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ca/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ca/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ca/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ca/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ca/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ca/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/cs/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/cs/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/cs/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/cs/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/cs/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/cs/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/cs/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/cs/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/cs/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/csb/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/csb/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/csb/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/csb/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/csb/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/csb/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/csb/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/csb/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/csb/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/cy/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/cy/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/cy/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/cy/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/cy/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/cy/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/cy/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/cy/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/cy/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/da/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/da/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/da/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/da/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/da/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/da/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/da/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/da/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/da/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/de/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/de/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/de/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/de/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/de/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/de/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/de/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/de/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/de/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/dz/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/dz/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/dz/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/dz/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/dz/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/dz/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/dz/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/dz/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/dz/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/el/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/el/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/el/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/el/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/el/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/el/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/el/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/el/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/el/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/eo/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/eo/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/eo/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/eo/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/eo/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/eo/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/eo/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/eo/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/eo/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/es/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/es/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/es/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/es/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/es/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/es/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/es/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/es/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/es/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/et/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/et/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/et/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/et/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/et/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/et/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/et/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/et/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/et/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/eu/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/eu/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/eu/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/eu/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/eu/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/eu/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/eu/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/eu/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/eu/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/fa/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/fa/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/fa/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/fa/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/fa/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/fa/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/fa/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/fa/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/fa/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/fi/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/fi/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/fi/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/fi/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/fi/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/fi/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/fi/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/fi/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/fi/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/fil/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/fil/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/fil/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/fil/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/fil/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/fil/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/fil/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/fil/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/fil/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/fo/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/fo/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/fo/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/fo/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/fo/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/fo/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/fo/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/fo/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/fo/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/fr/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/fr/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/fr/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/fr/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/fr/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/fr/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/fr/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/fr/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/fr/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/fur/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/fur/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/fur/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/fur/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/fur/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/fur/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/fur/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/fur/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/fur/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/fy/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/fy/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/fy/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/fy/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/fy/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/fy/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/fy/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/fy/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/fy/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ga/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/ga/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ga/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ga/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ga/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ga/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ga/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ga/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ga/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/gl/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/gl/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/gl/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/gl/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/gl/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/gl/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/gl/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/gl/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/gl/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/gu/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/gu/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/gu/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/gu/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/gu/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/gu/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/gu/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/gu/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/gu/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/gun/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/gun/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/gun/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/gun/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/gun/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/gun/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/gun/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/gun/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/gun/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ha/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/ha/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ha/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ha/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ha/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ha/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ha/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ha/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ha/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/he/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/he/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/he/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/he/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/he/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/he/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/he/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/he/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/he/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/hi/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/hi/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/hi/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/hi/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/hi/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/hi/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/hi/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/hi/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/hi/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/hr/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/hr/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/hr/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/hr/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/hr/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/hr/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/hr/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/hr/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/hr/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ht/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/ht/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ht/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ht/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ht/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ht/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ht/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ht/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ht/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/hu/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/hu/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/hu/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/hu/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/hu/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/hu/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/hu/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/hu/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/hu/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/hy/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/hy/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/hy/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/hy/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/hy/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/hy/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/hy/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/hy/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/hy/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/id/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/id/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/id/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/id/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/id/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/id/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/id/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/id/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/id/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/is/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/is/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/is/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/is/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/is/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/is/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/is/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/is/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/is/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/it/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/it/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/it/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/it/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/it/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/it/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/it/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/it/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/it/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ja/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/ja/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ja/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ja/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ja/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ja/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ja/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ja/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ja/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/jv/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/jv/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/jv/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/jv/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/jv/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/jv/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/jv/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/jv/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/jv/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ka/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/ka/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ka/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ka/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ka/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ka/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ka/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ka/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ka/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/km/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/km/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/km/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/km/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/km/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/km/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/km/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/km/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/km/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/kn/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/kn/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/kn/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/kn/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/kn/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/kn/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/kn/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/kn/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/kn/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ko/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/ko/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ko/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ko/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ko/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ko/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ko/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ko/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ko/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ku/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/ku/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ku/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ku/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ku/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ku/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ku/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ku/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ku/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/kw/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/kw/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/kw/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/kw/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/kw/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/kw/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/kw/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/kw/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/kw/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ky/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/ky/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ky/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ky/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ky/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ky/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ky/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ky/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ky/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/lb/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/lb/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/lb/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/lb/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/lb/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/lb/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/lb/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/lb/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/lb/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ln/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/ln/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ln/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ln/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ln/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ln/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ln/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ln/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ln/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/lo/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/lo/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/lo/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/lo/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/lo/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/lo/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/lo/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/lo/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/lo/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/lt/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/lt/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/lt/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/lt/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/lt/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/lt/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/lt/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/lt/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/lt/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/lv/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/lv/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/lv/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/lv/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/lv/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/lv/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/lv/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/lv/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/lv/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/mg/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/mg/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/mg/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/mg/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/mg/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/mg/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/mg/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/mg/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/mg/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/mi/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/mi/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/mi/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/mi/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/mi/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/mi/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/mi/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/mi/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/mi/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/mk/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/mk/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/mk/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/mk/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/mk/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/mk/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/mk/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/mk/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/mk/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ml/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/ml/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ml/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ml/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ml/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ml/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ml/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ml/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ml/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/mn/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/mn/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/mn/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/mn/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/mn/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/mn/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/mn/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/mn/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/mn/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/mr/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/mr/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/mr/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/mr/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/mr/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/mr/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/mr/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/mr/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/mr/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ms/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/ms/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ms/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ms/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ms/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ms/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ms/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ms/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ms/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/mt/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/mt/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/mt/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/mt/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/mt/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/mt/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/mt/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/mt/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/mt/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/my/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/my/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/my/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/my/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/my/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/my/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/my/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/my/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/my/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/nah/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/nah/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/nah/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/nah/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/nah/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/nah/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/nah/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/nah/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/nah/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/nap/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/nap/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/nap/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/nap/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/nap/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/nap/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/nap/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/nap/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/nap/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/nb/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/nb/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/nb/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/nb/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/nb/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/nb/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/nb/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/nb/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/nb/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ne/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/ne/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ne/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ne/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ne/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ne/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ne/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ne/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ne/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/nl/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/nl/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/nl/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/nl/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/nl/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/nl/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/nl/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/nl/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/nl/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/nn/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/nn/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/nn/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/nn/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/nn/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/nn/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/nn/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/nn/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/nn/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/nso/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/nso/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/nso/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/nso/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/nso/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/nso/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/nso/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/nso/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/nso/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/oc/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/oc/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/oc/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/oc/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/oc/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/oc/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/oc/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/oc/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/oc/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/or/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/or/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/or/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/or/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/or/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/or/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/or/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/or/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/or/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/pa/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/pa/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/pa/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/pa/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/pa/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/pa/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/pa/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/pa/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/pa/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/pap/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/pap/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/pap/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/pap/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/pap/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/pap/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/pap/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/pap/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/pap/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/pl/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/pl/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/pl/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/pl/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/pl/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/pl/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/pl/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/pl/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/pl/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/pms/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/pms/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/pms/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/pms/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/pms/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/pms/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/pms/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/pms/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/pms/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ps/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/ps/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ps/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ps/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ps/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ps/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ps/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ps/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ps/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/pt/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/pt/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/pt/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/pt/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/pt/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/pt/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/pt/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/pt/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/pt/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/pt_BR/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/pt_BR/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/pt_BR/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/pt_BR/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/pt_BR/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/pt_BR/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/pt_BR/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/pt_BR/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/pt_BR/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ro/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/ro/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ro/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ro/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ro/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ro/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ro/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ro/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ro/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ru/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/ru/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ru/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ru/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ru/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ru/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ru/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ru/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ru/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/sco/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/sco/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/sco/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/sco/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/sco/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/sco/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/sco/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/sco/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/sco/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/sk/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/sk/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/sk/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/sk/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/sk/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/sk/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/sk/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/sk/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/sk/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/sl/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/sl/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/sl/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/sl/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/sl/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/sl/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/sl/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/sl/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/sl/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/so/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/so/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/so/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/so/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/so/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/so/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/so/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/so/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/so/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/son/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/son/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/son/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/son/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/son/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/son/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/son/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/son/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/son/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/sq/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/sq/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/sq/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/sq/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/sq/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/sq/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/sq/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/sq/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/sq/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/sr/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/sr/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/sr/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/sr/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/sr/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/sr/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/sr/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/sr/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/sr/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/st/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/st/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/st/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/st/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/st/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/st/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/st/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/st/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/st/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/su/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/su/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/su/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/su/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/su/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/su/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/su/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/su/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/su/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/sv/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/sv/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/sv/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/sv/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/sv/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/sv/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/sv/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/sv/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/sv/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/sw/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/sw/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/sw/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/sw/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/sw/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/sw/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/sw/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/sw/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/sw/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ta/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/ta/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ta/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ta/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ta/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ta/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ta/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ta/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ta/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/te/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/te/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/te/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/te/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/te/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/te/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/te/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/te/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/te/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/templates/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/templates/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/templates/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/templates/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/templates/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/templates/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/templates/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/templates/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/templates/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/tg/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/tg/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/tg/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/tg/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/tg/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/tg/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/tg/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/tg/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/tg/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/th/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/th/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/th/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/th/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/th/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/th/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/th/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/th/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/th/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ti/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/ti/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ti/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ti/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ti/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ti/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ti/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ti/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ti/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/tk/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/tk/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/tk/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/tk/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/tk/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/tk/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/tk/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/tk/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/tk/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/tr/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/tr/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/tr/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/tr/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/tr/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/tr/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/tr/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/tr/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/tr/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/uk/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/uk/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/uk/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/uk/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/uk/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/uk/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/uk/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/uk/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/uk/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ur/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/ur/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ur/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ur/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ur/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ur/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ur/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ur/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ur/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ve/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/ve/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ve/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ve/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ve/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ve/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/ve/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/ve/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/ve/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/vi/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/vi/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/vi/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/vi/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/vi/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/vi/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/vi/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/vi/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/vi/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/wa/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/wa/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/wa/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/wa/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/wa/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/wa/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/wa/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/wa/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/wa/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/wo/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/wo/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/wo/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/wo/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/wo/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/wo/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/wo/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/wo/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/wo/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/zh_CN/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/zh_CN/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/zh_CN/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/zh_CN/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/zh_CN/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/zh_CN/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/zh_CN/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/zh_CN/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/zh_CN/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/zh_HK/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/zh_HK/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/zh_HK/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/zh_HK/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/zh_HK/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/zh_HK/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/zh_HK/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/zh_HK/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/zh_HK/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/zh_TW/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/zh_TW/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/zh_TW/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/zh_TW/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/zh_TW/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/zh_TW/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/zh_TW/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/zh_TW/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/zh_TW/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/zu/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/zu/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/zu/brand.dtd.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/zu/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/zu/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/zu/brand.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/zu/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/zu/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/zu/browser.properties.po 2013-05-14 23:54:06 UTC (rev 26185)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
1
0

r26184: {translation} Add branding strings for translation. (in translation/trunk/projects/torbutton/po: en templates)
by Mike Perry 14 May '13
by Mike Perry 14 May '13
14 May '13
Author: mikeperry
Date: 2013-05-14 23:26:27 +0000 (Tue, 14 May 2013)
New Revision: 26184
Added:
translation/trunk/projects/torbutton/po/en/brand.dtd.po
translation/trunk/projects/torbutton/po/en/brand.properties.po
translation/trunk/projects/torbutton/po/en/browser.properties.po
translation/trunk/projects/torbutton/po/templates/brand.dtd.pot
translation/trunk/projects/torbutton/po/templates/brand.properties.pot
translation/trunk/projects/torbutton/po/templates/browser.properties.pot
Modified:
translation/trunk/projects/torbutton/po/en/torbutton.dtd.po
translation/trunk/projects/torbutton/po/en/torbutton.properties.po
translation/trunk/projects/torbutton/po/templates/torbutton.dtd.pot
translation/trunk/projects/torbutton/po/templates/torbutton.properties.pot
Log:
Add branding strings for translation.
Added: translation/trunk/projects/torbutton/po/en/brand.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/en/brand.dtd.po (rev 0)
+++ translation/trunk/projects/torbutton/po/en/brand.dtd.po 2013-05-14 23:26:27 UTC (rev 26184)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/en/brand.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/en/brand.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/en/brand.properties.po 2013-05-14 23:26:27 UTC (rev 26184)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/en/browser.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/en/browser.properties.po (rev 0)
+++ translation/trunk/projects/torbutton/po/en/browser.properties.po 2013-05-14 23:26:27 UTC (rev 26184)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:22-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Modified: translation/trunk/projects/torbutton/po/en/torbutton.dtd.po
===================================================================
--- translation/trunk/projects/torbutton/po/en/torbutton.dtd.po 2013-05-14 12:11:30 UTC (rev 26183)
+++ translation/trunk/projects/torbutton/po/en/torbutton.dtd.po 2013-05-14 23:26:27 UTC (rev 26184)
@@ -1,18 +1,16 @@
-# extracted from ../src/chrome/locale/en-US/torbutton.dtd
#. extracted from ../src/chrome/locale/en/torbutton.dtd
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-04-22 15:03-0700\n"
-"PO-Revision-Date: 2009-07-27 05:34+0000\n"
-"Last-Translator: Joshua M. Biscarra <joshuamayobiscarra(a)gmail.com>\n"
+"POT-Creation-Date: 2013-05-14 15:22-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"
-"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
"X-Accelerator-Marker: &\n"
#: torbutton.prefs.title
@@ -599,7 +597,8 @@
#: torbutton.prefs.block_disk
msgid ""
-"Don't record browsing history or website data (enables Private Browsing Mode)"
+"Don't record browsing history or website data (enables Private Browsing "
+"Mode)"
msgstr ""
#: torbutton.prefs.restrict_thirdparty
Modified: translation/trunk/projects/torbutton/po/en/torbutton.properties.po
===================================================================
--- translation/trunk/projects/torbutton/po/en/torbutton.properties.po 2013-05-14 12:11:30 UTC (rev 26183)
+++ translation/trunk/projects/torbutton/po/en/torbutton.properties.po 2013-05-14 23:26:27 UTC (rev 26184)
@@ -1,19 +1,16 @@
-# extracted from ../src/chrome/locale/en-US/torbutton.properties
#. extracted from ../src/chrome/locale/en/torbutton.properties
-#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-07 14:18-0700\n"
+"POT-Creation-Date: 2013-05-14 15:22-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"
-"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"X-Generator: Translate Toolkit 1.9.0\n"
"X-Accelerator-Marker: &\n"
#: torbutton.button.tooltip.disabled
@@ -87,8 +84,7 @@
msgid ""
"Warning!\n"
"\n"
-"Torbutton on Firefox 3 is known to leak your timezone and livemarks via "
-"Tor.\n"
+"Torbutton on Firefox 3 is known to leak your timezone and livemarks via Tor.\n"
"\n"
"Do you wish to continue anyway?"
msgstr ""
Added: translation/trunk/projects/torbutton/po/templates/brand.dtd.pot
===================================================================
--- translation/trunk/projects/torbutton/po/templates/brand.dtd.pot (rev 0)
+++ translation/trunk/projects/torbutton/po/templates/brand.dtd.pot 2013-05-14 23:26:27 UTC (rev 26184)
@@ -0,0 +1,33 @@
+#. extracted from ../src/chrome/locale/en/brand.dtd
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:39-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. This Source Code Form is subject to the terms of the Mozilla Public
+#. - License, v. 2.0. If a copy of the MPL was not distributed with this
+#. - file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: trademarkInfo.part1
+msgid "Firefox and the Firefox logos are trademarks of the Mozilla Foundation."
+msgstr ""
Added: translation/trunk/projects/torbutton/po/templates/brand.properties.pot
===================================================================
--- translation/trunk/projects/torbutton/po/templates/brand.properties.pot (rev 0)
+++ translation/trunk/projects/torbutton/po/templates/brand.properties.pot 2013-05-14 23:26:27 UTC (rev 26184)
@@ -0,0 +1,49 @@
+#. # This Source Code Form is subject to the terms of the Mozilla Public
+#. # License, v. 2.0. If a copy of the MPL was not distributed with this
+#. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#. extracted from ../src/chrome/locale/en/brand.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:39-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#: brandShortName
+msgid "TorBrowser"
+msgstr ""
+
+#: brandFullName
+msgid "Tor Browser"
+msgstr ""
+
+#: vendorShortName
+msgid "Tor Project"
+msgstr ""
+
+#: homePageSingleStartMain
+msgid "Firefox Start, a fast home page with built-in search"
+msgstr ""
+
+#: homePageImport
+msgid "Import your home page from %S"
+msgstr ""
+
+#: homePageMigrationPageTitle
+msgid "Home Page Selection"
+msgstr ""
+
+#: homePageMigrationDescription
+msgid "Please select the home page you wish to use:"
+msgstr ""
+
+#: syncBrandShortName
+msgid "Sync"
+msgstr ""
Added: translation/trunk/projects/torbutton/po/templates/browser.properties.pot
===================================================================
--- translation/trunk/projects/torbutton/po/templates/browser.properties.pot (rev 0)
+++ translation/trunk/projects/torbutton/po/templates/browser.properties.pot 2013-05-14 23:26:27 UTC (rev 26184)
@@ -0,0 +1,44 @@
+#. extracted from ../src/chrome/locale/en/browser.properties
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-05-14 15:39-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.9.0\n"
+"X-Accelerator-Marker: &\n"
+
+#. # Default home page
+#: browser.startup.homepage
+msgid "https://check.torproject.org/?lang=en-US&small=1&uptodate=1"
+msgstr ""
+
+#. # Spell checker dictionary
+#: spellchecker.dictionary
+msgid "en_US"
+msgstr ""
+
+#. # Default search engine
+#: browser.search.defaultenginename
+msgctxt "browser.search.defaultenginename"
+msgid "Startpage"
+msgstr ""
+
+#. # Search engine order (order displayed in the search bar dropdown)
+#: browser.search.order.1
+msgctxt "browser.search.order.1"
+msgid "Startpage"
+msgstr ""
+
+#: browser.search.order.2
+msgid "DuckDuckGo"
+msgstr ""
+
+#: browser.search.order.3
+msgid "Google"
+msgstr ""
Modified: translation/trunk/projects/torbutton/po/templates/torbutton.dtd.pot
===================================================================
--- translation/trunk/projects/torbutton/po/templates/torbutton.dtd.pot 2013-05-14 12:11:30 UTC (rev 26183)
+++ translation/trunk/projects/torbutton/po/templates/torbutton.dtd.pot 2013-05-14 23:26:27 UTC (rev 26184)
@@ -3,7 +3,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-04-22 15:03-0700\n"
+"POT-Creation-Date: 2013-05-14 15:39-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"
Modified: translation/trunk/projects/torbutton/po/templates/torbutton.properties.pot
===================================================================
--- translation/trunk/projects/torbutton/po/templates/torbutton.properties.pot 2013-05-14 12:11:30 UTC (rev 26183)
+++ translation/trunk/projects/torbutton/po/templates/torbutton.properties.pot 2013-05-14 23:26:27 UTC (rev 26184)
@@ -3,7 +3,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-04-22 15:03-0700\n"
+"POT-Creation-Date: 2013-05-14 15:39-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"
1
0