tbb-commits
Threads by month
- ----- 2026 -----
- July
- June
- May
- April
- March
- February
- January
- ----- 2025 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- 1 participants
- 20633 discussions
[tor-browser/tor-browser-24.8.0esr-4.x-1] Merge remote-tracking branch 'brade/bug13049' into tor-browser-24.8.0esr-4.x-1
by mikeperry@torproject.org 23 Sep '14
by mikeperry@torproject.org 23 Sep '14
23 Sep '14
commit 4424293819b0ae7b184b5e0703e2b4511d1b24f4
Merge: b269bb0 9906e7e
Author: Mike Perry <mikeperry-git(a)torproject.org>
Date: Mon Sep 22 20:12:12 2014 -0700
Merge remote-tracking branch 'brade/bug13049' into tor-browser-24.8.0esr-4.x-1
browser/base/content/aboutDialog.js | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
1
0
[tor-browser/tor-browser-24.8.0esr-4.x-1] Bug 13047: Updater should not send Kernel/GTK version
by mikeperry@torproject.org 23 Sep '14
by mikeperry@torproject.org 23 Sep '14
23 Sep '14
commit e4eca4759ead07562e4f6526b1ce79fe056fd03a
Author: Kathy Brade <brade(a)pearlcrescent.com>
Date: Thu Sep 18 13:51:43 2014 -0400
Bug 13047: Updater should not send Kernel/GTK version
Removed the %OS_VERSION% component from the update URL and replaced the
/update/ component of the URL with /update_2/.
Added support for minSupportedOSVersion, an attribute of the <update> element
that may be used to trigger Firefox's "unsupported platform" behavior.
Older versions of TB will ignore this (unknown to them) attribiute.
---
browser/app/profile/firefox.js | 2 +-
toolkit/mozapps/update/nsUpdateService.js | 16 ++++++++++++----
2 files changed, 13 insertions(+), 5 deletions(-)
diff --git a/browser/app/profile/firefox.js b/browser/app/profile/firefox.js
index 3e3a77c..620a7a9 100644
--- a/browser/app/profile/firefox.js
+++ b/browser/app/profile/firefox.js
@@ -152,7 +152,7 @@ pref("app.update.silent", false);
pref("app.update.staging.enabled", true);
// Update service URL:
-pref("app.update.url", "https://www.torproject.org/dist/torbrowser/update/%CHANNEL%/%BUILD_TARGET%/…");
+pref("app.update.url", "https://www.torproject.org/dist/torbrowser/update_2/%CHANNEL%/%BUILD_TARGET…");
// app.update.url.manual is in branding section
// app.update.url.details is in branding section
diff --git a/toolkit/mozapps/update/nsUpdateService.js b/toolkit/mozapps/update/nsUpdateService.js
index eb4a74a..fbf99a7 100644
--- a/toolkit/mozapps/update/nsUpdateService.js
+++ b/toolkit/mozapps/update/nsUpdateService.js
@@ -1598,7 +1598,17 @@ function Update(update) {
this._patches.push(patch);
}
- if (this._patches.length == 0 && !update.hasAttribute("unsupported"))
+ if (update.hasAttribute("unsupported"))
+ this.unsupported = ("true" == update.getAttribute("unsupported"));
+ else if (update.hasAttribute("minSupportedOSVersion")) {
+ let minOSVersion = update.getAttribute("minSupportedOSVersion");
+ try {
+ let osVersion = Services.sysinfo.getProperty("version");
+ this.unsupported = (Services.vc.compare(osVersion, minOSVersion) < 0);
+ } catch (e) {}
+ }
+
+ if (this._patches.length == 0 && !this.unsupported)
throw Cr.NS_ERROR_ILLEGAL_VALUE;
// Fallback to the behavior prior to bug 530872 if the update does not have an
@@ -1643,15 +1653,13 @@ function Update(update) {
if(!isNaN(attr.value))
this.promptWaitTime = parseInt(attr.value);
}
- else if (attr.name == "unsupported")
- this.unsupported = attr.value == "true";
else if (attr.name == "version") {
// Prevent version from replacing displayVersion if displayVersion is
// present in the update xml.
if (!this.displayVersion)
this.displayVersion = attr.value;
}
- else {
+ else if (attr.name != "unsupported") {
this[attr.name] = attr.value;
switch (attr.name) {
1
0
[tor-browser/tor-browser-24.8.0esr-4.x-1] Bug 13049: updater fails (self.update is undefined).
by mikeperry@torproject.org 23 Sep '14
by mikeperry@torproject.org 23 Sep '14
23 Sep '14
commit 9906e7e26e1dcbf313121dbf46e5a22aa185fd05
Author: Kathy Brade <brade(a)pearlcrescent.com>
Date: Wed Sep 3 13:56:57 2014 -0400
Bug 13049: updater fails (self.update is undefined).
Replace "self.update" with "this.update" in two add-on compatibility check
functions. Using self.update (which is undefined) caused the updater to
silently fail if one or more installed add-ons were marked in their
install.rdf file as not compatible with the new platformVersion.
We also replaced "TBB" with "Tor Browser" in the about box text.
---
browser/base/content/aboutDialog.js | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/browser/base/content/aboutDialog.js b/browser/base/content/aboutDialog.js
index c72c828..431d520 100644
--- a/browser/base/content/aboutDialog.js
+++ b/browser/base/content/aboutDialog.js
@@ -49,7 +49,7 @@ function init(aEvent)
#ifdef TOR_BROWSER_VERSION
let versionElem = document.getElementById("version");
if (versionElem)
- versionElem.textContent += " (TBB " + TOR_BROWSER_VERSION + ")";
+ versionElem.textContent += " (Tor Browser " + TOR_BROWSER_VERSION + ")";
#endif
#ifdef MOZ_UPDATER
@@ -444,9 +444,9 @@ appUpdater.prototype =
checkAddonsForUpdates: function() {
this.addons.forEach(function(aAddon) {
#ifdef TOR_BROWSER_UPDATE
- let compatVersion = self.update.platformVersion;
+ let compatVersion = this.update.platformVersion;
#else
- let compatVersion = self.update.appVersion;
+ let compatVersion = this.update.appVersion;
#endif
aAddon.findUpdates(this, AddonManager.UPDATE_WHEN_NEW_APP_DETECTED,
compatVersion,
@@ -471,9 +471,9 @@ appUpdater.prototype =
*/
onUpdateAvailable: function(aAddon, aInstall) {
#ifdef TOR_BROWSER_UPDATE
- let compatVersion = self.update.platformVersion;
+ let compatVersion = this.update.platformVersion;
#else
- let compatVersion = self.update.appVersion;
+ let compatVersion = this.update.appVersion;
#endif
if (!Services.blocklist.isAddonBlocklisted(aAddon.id, aInstall.version,
compatVersion,
1
0
[torbutton/master] Bug 13091: Use "Tor Browser" everywhere (space included)
by mikeperry@torproject.org 23 Sep '14
by mikeperry@torproject.org 23 Sep '14
23 Sep '14
commit 1eaed5a1f0d9fc01c9db8e1759c7dc3fc17337ad
Author: Kathy Brade <brade(a)pearlcrescent.com>
Date: Tue Sep 9 16:57:54 2014 -0400
Bug 13091: Use "Tor Browser" everywhere (space included)
Changed MOZ_APP_DISPLAYNAME and brandShortName from "TorBrowser" to
"Tor Browser".
---
src/chrome/locale/af/brand.dtd | 2 +-
src/chrome/locale/af/brand.properties | 2 +-
src/chrome/locale/ak/brand.dtd | 2 +-
src/chrome/locale/ak/brand.properties | 2 +-
src/chrome/locale/am/brand.dtd | 2 +-
src/chrome/locale/am/brand.properties | 2 +-
src/chrome/locale/arn/brand.dtd | 2 +-
src/chrome/locale/arn/brand.properties | 2 +-
src/chrome/locale/ast/brand.dtd | 2 +-
src/chrome/locale/ast/brand.properties | 2 +-
src/chrome/locale/az/brand.dtd | 2 +-
src/chrome/locale/az/brand.properties | 2 +-
src/chrome/locale/be/brand.dtd | 2 +-
src/chrome/locale/be/brand.properties | 2 +-
src/chrome/locale/bg/brand.dtd | 2 +-
src/chrome/locale/bg/brand.properties | 2 +-
src/chrome/locale/bn-IN/brand.dtd | 2 +-
src/chrome/locale/bn-IN/brand.properties | 2 +-
src/chrome/locale/bn/brand.dtd | 2 +-
src/chrome/locale/bn/brand.properties | 2 +-
src/chrome/locale/bo/brand.dtd | 2 +-
src/chrome/locale/bo/brand.properties | 2 +-
src/chrome/locale/br/brand.dtd | 2 +-
src/chrome/locale/br/brand.properties | 2 +-
src/chrome/locale/bs/brand.dtd | 2 +-
src/chrome/locale/bs/brand.properties | 2 +-
src/chrome/locale/ca/brand.dtd | 2 +-
src/chrome/locale/ca/brand.properties | 2 +-
src/chrome/locale/cs/brand.dtd | 2 +-
src/chrome/locale/cs/brand.properties | 2 +-
src/chrome/locale/csb/brand.dtd | 2 +-
src/chrome/locale/csb/brand.properties | 2 +-
src/chrome/locale/cy/brand.dtd | 2 +-
src/chrome/locale/cy/brand.properties | 2 +-
src/chrome/locale/da/brand.dtd | 2 +-
src/chrome/locale/da/brand.properties | 2 +-
src/chrome/locale/de/brand.dtd | 2 +-
src/chrome/locale/de/brand.properties | 2 +-
src/chrome/locale/dz/brand.dtd | 2 +-
src/chrome/locale/dz/brand.properties | 2 +-
src/chrome/locale/el/brand.dtd | 2 +-
src/chrome/locale/el/brand.properties | 2 +-
src/chrome/locale/en/brand.dtd | 2 +-
src/chrome/locale/en/brand.properties | 2 +-
src/chrome/locale/eo/brand.dtd | 2 +-
src/chrome/locale/eo/brand.properties | 2 +-
src/chrome/locale/es/brand.dtd | 2 +-
src/chrome/locale/es/brand.properties | 2 +-
src/chrome/locale/et/brand.dtd | 2 +-
src/chrome/locale/et/brand.properties | 2 +-
src/chrome/locale/eu/brand.dtd | 2 +-
src/chrome/locale/eu/brand.properties | 2 +-
src/chrome/locale/fi/brand.dtd | 2 +-
src/chrome/locale/fi/brand.properties | 2 +-
src/chrome/locale/fil/brand.dtd | 2 +-
src/chrome/locale/fil/brand.properties | 2 +-
src/chrome/locale/fo/brand.dtd | 2 +-
src/chrome/locale/fo/brand.properties | 2 +-
src/chrome/locale/fur/brand.dtd | 2 +-
src/chrome/locale/fur/brand.properties | 2 +-
src/chrome/locale/fy/brand.dtd | 2 +-
src/chrome/locale/fy/brand.properties | 2 +-
src/chrome/locale/ga/brand.dtd | 2 +-
src/chrome/locale/ga/brand.properties | 2 +-
src/chrome/locale/gl/brand.dtd | 2 +-
src/chrome/locale/gl/brand.properties | 2 +-
src/chrome/locale/gu/brand.dtd | 2 +-
src/chrome/locale/gu/brand.properties | 2 +-
src/chrome/locale/gun/brand.dtd | 2 +-
src/chrome/locale/gun/brand.properties | 2 +-
src/chrome/locale/ha/brand.dtd | 2 +-
src/chrome/locale/ha/brand.properties | 2 +-
src/chrome/locale/he/brand.dtd | 2 +-
src/chrome/locale/he/brand.properties | 2 +-
src/chrome/locale/hi/brand.dtd | 2 +-
src/chrome/locale/hi/brand.properties | 2 +-
src/chrome/locale/hr/brand.dtd | 2 +-
src/chrome/locale/hr/brand.properties | 2 +-
src/chrome/locale/ht/brand.dtd | 2 +-
src/chrome/locale/ht/brand.properties | 2 +-
src/chrome/locale/hu/brand.dtd | 2 +-
src/chrome/locale/hu/brand.properties | 2 +-
src/chrome/locale/hy/brand.dtd | 2 +-
src/chrome/locale/hy/brand.properties | 2 +-
src/chrome/locale/id/brand.dtd | 2 +-
src/chrome/locale/id/brand.properties | 2 +-
src/chrome/locale/is/brand.dtd | 2 +-
src/chrome/locale/is/brand.properties | 2 +-
src/chrome/locale/it/brand.dtd | 2 +-
src/chrome/locale/it/brand.properties | 2 +-
src/chrome/locale/ja/brand.dtd | 2 +-
src/chrome/locale/ja/brand.properties | 2 +-
src/chrome/locale/jv/brand.dtd | 2 +-
src/chrome/locale/jv/brand.properties | 2 +-
src/chrome/locale/ka/brand.dtd | 2 +-
src/chrome/locale/ka/brand.properties | 2 +-
src/chrome/locale/km/brand.dtd | 2 +-
src/chrome/locale/km/brand.properties | 2 +-
src/chrome/locale/kn/brand.dtd | 2 +-
src/chrome/locale/kn/brand.properties | 2 +-
src/chrome/locale/ku/brand.dtd | 2 +-
src/chrome/locale/ku/brand.properties | 2 +-
src/chrome/locale/kw/brand.dtd | 2 +-
src/chrome/locale/kw/brand.properties | 2 +-
src/chrome/locale/ky/brand.dtd | 2 +-
src/chrome/locale/ky/brand.properties | 2 +-
src/chrome/locale/lb/brand.dtd | 2 +-
src/chrome/locale/lb/brand.properties | 2 +-
src/chrome/locale/ln/brand.dtd | 2 +-
src/chrome/locale/ln/brand.properties | 2 +-
src/chrome/locale/lo/brand.dtd | 2 +-
src/chrome/locale/lo/brand.properties | 2 +-
src/chrome/locale/lt/brand.dtd | 2 +-
src/chrome/locale/lt/brand.properties | 2 +-
src/chrome/locale/lv/brand.dtd | 2 +-
src/chrome/locale/lv/brand.properties | 2 +-
src/chrome/locale/mg/brand.dtd | 2 +-
src/chrome/locale/mg/brand.properties | 2 +-
src/chrome/locale/mi/brand.dtd | 2 +-
src/chrome/locale/mi/brand.properties | 2 +-
src/chrome/locale/mk/brand.dtd | 2 +-
src/chrome/locale/mk/brand.properties | 2 +-
src/chrome/locale/ml/brand.dtd | 2 +-
src/chrome/locale/ml/brand.properties | 2 +-
src/chrome/locale/mn/brand.dtd | 2 +-
src/chrome/locale/mn/brand.properties | 2 +-
src/chrome/locale/mr/brand.dtd | 2 +-
src/chrome/locale/mr/brand.properties | 2 +-
src/chrome/locale/ms/brand.dtd | 2 +-
src/chrome/locale/ms/brand.properties | 2 +-
src/chrome/locale/mt/brand.dtd | 2 +-
src/chrome/locale/mt/brand.properties | 2 +-
src/chrome/locale/my/brand.dtd | 2 +-
src/chrome/locale/my/brand.properties | 2 +-
src/chrome/locale/nah/brand.dtd | 2 +-
src/chrome/locale/nah/brand.properties | 2 +-
src/chrome/locale/nap/brand.dtd | 2 +-
src/chrome/locale/nap/brand.properties | 2 +-
src/chrome/locale/nb/brand.dtd | 2 +-
src/chrome/locale/nb/brand.properties | 2 +-
src/chrome/locale/ne/brand.dtd | 2 +-
src/chrome/locale/ne/brand.properties | 2 +-
src/chrome/locale/nl/brand.dtd | 2 +-
src/chrome/locale/nl/brand.properties | 2 +-
src/chrome/locale/nn/brand.dtd | 2 +-
src/chrome/locale/nn/brand.properties | 2 +-
src/chrome/locale/nso/brand.dtd | 2 +-
src/chrome/locale/nso/brand.properties | 2 +-
src/chrome/locale/oc/brand.dtd | 2 +-
src/chrome/locale/oc/brand.properties | 2 +-
src/chrome/locale/or/brand.dtd | 2 +-
src/chrome/locale/or/brand.properties | 2 +-
src/chrome/locale/pa/brand.dtd | 2 +-
src/chrome/locale/pa/brand.properties | 2 +-
src/chrome/locale/pap/brand.dtd | 2 +-
src/chrome/locale/pap/brand.properties | 2 +-
src/chrome/locale/pms/brand.dtd | 2 +-
src/chrome/locale/pms/brand.properties | 2 +-
src/chrome/locale/ps/brand.dtd | 2 +-
src/chrome/locale/ps/brand.properties | 2 +-
src/chrome/locale/pt-BR/brand.dtd | 2 +-
src/chrome/locale/pt-BR/brand.properties | 2 +-
src/chrome/locale/ro/brand.dtd | 2 +-
src/chrome/locale/ro/brand.properties | 2 +-
src/chrome/locale/ru/brand.dtd | 2 +-
src/chrome/locale/ru/brand.properties | 2 +-
src/chrome/locale/sco/brand.dtd | 2 +-
src/chrome/locale/sco/brand.properties | 2 +-
src/chrome/locale/sk/brand.dtd | 2 +-
src/chrome/locale/sk/brand.properties | 2 +-
src/chrome/locale/sl/brand.dtd | 2 +-
src/chrome/locale/sl/brand.properties | 2 +-
src/chrome/locale/so/brand.dtd | 2 +-
src/chrome/locale/so/brand.properties | 2 +-
src/chrome/locale/son/brand.dtd | 2 +-
src/chrome/locale/son/brand.properties | 2 +-
src/chrome/locale/sq/brand.dtd | 2 +-
src/chrome/locale/sq/brand.properties | 2 +-
src/chrome/locale/sr/brand.dtd | 2 +-
src/chrome/locale/sr/brand.properties | 2 +-
src/chrome/locale/st/brand.dtd | 2 +-
src/chrome/locale/st/brand.properties | 2 +-
src/chrome/locale/su/brand.dtd | 2 +-
src/chrome/locale/su/brand.properties | 2 +-
src/chrome/locale/sv/brand.dtd | 2 +-
src/chrome/locale/sv/brand.properties | 2 +-
src/chrome/locale/sw/brand.dtd | 2 +-
src/chrome/locale/sw/brand.properties | 2 +-
src/chrome/locale/ta/brand.dtd | 2 +-
src/chrome/locale/ta/brand.properties | 2 +-
src/chrome/locale/te/brand.dtd | 2 +-
src/chrome/locale/te/brand.properties | 2 +-
src/chrome/locale/tg/brand.dtd | 2 +-
src/chrome/locale/tg/brand.properties | 2 +-
src/chrome/locale/th/brand.dtd | 2 +-
src/chrome/locale/th/brand.properties | 2 +-
src/chrome/locale/ti/brand.dtd | 2 +-
src/chrome/locale/ti/brand.properties | 2 +-
src/chrome/locale/tk/brand.dtd | 2 +-
src/chrome/locale/tk/brand.properties | 2 +-
src/chrome/locale/tr/brand.dtd | 2 +-
src/chrome/locale/tr/brand.properties | 2 +-
src/chrome/locale/uk/brand.dtd | 2 +-
src/chrome/locale/uk/brand.properties | 2 +-
src/chrome/locale/ur/brand.dtd | 2 +-
src/chrome/locale/ur/brand.properties | 2 +-
src/chrome/locale/ve/brand.dtd | 2 +-
src/chrome/locale/ve/brand.properties | 2 +-
src/chrome/locale/vi/brand.dtd | 2 +-
src/chrome/locale/vi/brand.properties | 2 +-
src/chrome/locale/wa/brand.dtd | 2 +-
src/chrome/locale/wa/brand.properties | 2 +-
src/chrome/locale/wo/brand.dtd | 2 +-
src/chrome/locale/wo/brand.properties | 2 +-
src/chrome/locale/zh-CN/brand.dtd | 2 +-
src/chrome/locale/zh-CN/brand.properties | 2 +-
src/chrome/locale/zh-HK/brand.dtd | 2 +-
src/chrome/locale/zh-HK/brand.properties | 2 +-
src/chrome/locale/zh-TW/brand.dtd | 2 +-
src/chrome/locale/zh-TW/brand.properties | 2 +-
src/chrome/locale/zu/brand.dtd | 2 +-
src/chrome/locale/zu/brand.properties | 2 +-
222 files changed, 222 insertions(+), 222 deletions(-)
diff --git a/src/chrome/locale/af/brand.dtd b/src/chrome/locale/af/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/af/brand.dtd
+++ b/src/chrome/locale/af/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/af/brand.properties
+++ b/src/chrome/locale/af/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/ak/brand.dtd b/src/chrome/locale/ak/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/ak/brand.dtd
+++ b/src/chrome/locale/ak/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/ak/brand.properties
+++ b/src/chrome/locale/ak/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/am/brand.dtd b/src/chrome/locale/am/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/am/brand.dtd
+++ b/src/chrome/locale/am/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/am/brand.properties
+++ b/src/chrome/locale/am/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/arn/brand.dtd b/src/chrome/locale/arn/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/arn/brand.dtd
+++ b/src/chrome/locale/arn/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/arn/brand.properties
+++ b/src/chrome/locale/arn/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/ast/brand.dtd b/src/chrome/locale/ast/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/ast/brand.dtd
+++ b/src/chrome/locale/ast/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/ast/brand.properties
+++ b/src/chrome/locale/ast/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/az/brand.dtd b/src/chrome/locale/az/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/az/brand.dtd
+++ b/src/chrome/locale/az/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/az/brand.properties
+++ b/src/chrome/locale/az/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/be/brand.dtd b/src/chrome/locale/be/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/be/brand.dtd
+++ b/src/chrome/locale/be/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/be/brand.properties
+++ b/src/chrome/locale/be/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/bg/brand.dtd b/src/chrome/locale/bg/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/bg/brand.dtd
+++ b/src/chrome/locale/bg/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/bg/brand.properties
+++ b/src/chrome/locale/bg/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/bn-IN/brand.dtd b/src/chrome/locale/bn-IN/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/bn-IN/brand.dtd
+++ b/src/chrome/locale/bn-IN/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/bn-IN/brand.properties
+++ b/src/chrome/locale/bn-IN/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/bn/brand.dtd b/src/chrome/locale/bn/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/bn/brand.dtd
+++ b/src/chrome/locale/bn/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/bn/brand.properties
+++ b/src/chrome/locale/bn/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/bo/brand.dtd b/src/chrome/locale/bo/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/bo/brand.dtd
+++ b/src/chrome/locale/bo/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/bo/brand.properties
+++ b/src/chrome/locale/bo/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/br/brand.dtd b/src/chrome/locale/br/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/br/brand.dtd
+++ b/src/chrome/locale/br/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/br/brand.properties
+++ b/src/chrome/locale/br/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/bs/brand.dtd b/src/chrome/locale/bs/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/bs/brand.dtd
+++ b/src/chrome/locale/bs/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/bs/brand.properties
+++ b/src/chrome/locale/bs/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/ca/brand.dtd b/src/chrome/locale/ca/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/ca/brand.dtd
+++ b/src/chrome/locale/ca/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/ca/brand.properties
+++ b/src/chrome/locale/ca/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/cs/brand.dtd b/src/chrome/locale/cs/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/cs/brand.dtd
+++ b/src/chrome/locale/cs/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/cs/brand.properties
+++ b/src/chrome/locale/cs/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/csb/brand.dtd b/src/chrome/locale/csb/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/csb/brand.dtd
+++ b/src/chrome/locale/csb/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/csb/brand.properties
+++ b/src/chrome/locale/csb/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/cy/brand.dtd b/src/chrome/locale/cy/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/cy/brand.dtd
+++ b/src/chrome/locale/cy/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/cy/brand.properties
+++ b/src/chrome/locale/cy/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/da/brand.dtd b/src/chrome/locale/da/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/da/brand.dtd
+++ b/src/chrome/locale/da/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/da/brand.properties
+++ b/src/chrome/locale/da/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/de/brand.dtd b/src/chrome/locale/de/brand.dtd
index cbe3b6b..e3a2aae 100644
--- a/src/chrome/locale/de/brand.dtd
+++ b/src/chrome/locale/de/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor-Browser">
<!ENTITY brandFullName "Tor-Browser">
<!ENTITY vendorShortName "Tor-Projekt">
<!ENTITY trademarkInfo.part1 "Firefox und die Firefox-Logos sind Warenzeichen der Mozilla Foundation.">
diff --git a/src/chrome/locale/de/brand.properties b/src/chrome/locale/de/brand.properties
index 9e215e9..84e9a07 100644
--- a/src/chrome/locale/de/brand.properties
+++ b/src/chrome/locale/de/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor-Browser
brandFullName=Tor-Browser
vendorShortName=Tor-Projekt
diff --git a/src/chrome/locale/dz/brand.dtd b/src/chrome/locale/dz/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/dz/brand.dtd
+++ b/src/chrome/locale/dz/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/dz/brand.properties
+++ b/src/chrome/locale/dz/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/el/brand.dtd b/src/chrome/locale/el/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/el/brand.dtd
+++ b/src/chrome/locale/el/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/el/brand.properties
+++ b/src/chrome/locale/el/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/en/brand.dtd b/src/chrome/locale/en/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/en/brand.dtd
+++ b/src/chrome/locale/en/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/en/brand.properties
+++ b/src/chrome/locale/en/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/eo/brand.dtd b/src/chrome/locale/eo/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/eo/brand.dtd
+++ b/src/chrome/locale/eo/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/eo/brand.properties
+++ b/src/chrome/locale/eo/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/es/brand.dtd b/src/chrome/locale/es/brand.dtd
index b2fd420..7710d47 100644
--- a/src/chrome/locale/es/brand.dtd
+++ b/src/chrome/locale/es/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 "NavegadorTor">
+<!ENTITY brandShortName "Navegador Tor">
<!ENTITY brandFullName "Navegador Tor">
<!ENTITY vendorShortName "Proyecto Tor">
<!ENTITY trademarkInfo.part1 "Firefox y los logotipos de Firefox son marcas registradas de la Mozilla Foundation.">
diff --git a/src/chrome/locale/es/brand.properties b/src/chrome/locale/es/brand.properties
index 3015f97..035057f 100644
--- a/src/chrome/locale/es/brand.properties
+++ b/src/chrome/locale/es/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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=NavegadorTor
+brandShortName=Navegador Tor
brandFullName=Navegador Tor
vendorShortName=Proyecto Tor
diff --git a/src/chrome/locale/et/brand.dtd b/src/chrome/locale/et/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/et/brand.dtd
+++ b/src/chrome/locale/et/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/et/brand.properties
+++ b/src/chrome/locale/et/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/eu/brand.dtd b/src/chrome/locale/eu/brand.dtd
index 94325ee..f144e27 100644
--- a/src/chrome/locale/eu/brand.dtd
+++ b/src/chrome/locale/eu/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!ENTITY brandFullName "Tor Browser">
<!ENTITY vendorShortName "Tor Project">
<!ENTITY trademarkInfo.part1 "Firefox eta Firefox logoak Mozilla Fundazioaren marka errgistratuak dira.">
diff --git a/src/chrome/locale/eu/brand.properties b/src/chrome/locale/eu/brand.properties
index 0c4713e..341c4df 100644
--- a/src/chrome/locale/eu/brand.properties
+++ b/src/chrome/locale/eu/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/fi/brand.dtd b/src/chrome/locale/fi/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/fi/brand.dtd
+++ b/src/chrome/locale/fi/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/fi/brand.properties
+++ b/src/chrome/locale/fi/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/fil/brand.dtd b/src/chrome/locale/fil/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/fil/brand.dtd
+++ b/src/chrome/locale/fil/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/fil/brand.properties
+++ b/src/chrome/locale/fil/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/fo/brand.dtd b/src/chrome/locale/fo/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/fo/brand.dtd
+++ b/src/chrome/locale/fo/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/fo/brand.properties
+++ b/src/chrome/locale/fo/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/fur/brand.dtd b/src/chrome/locale/fur/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/fur/brand.dtd
+++ b/src/chrome/locale/fur/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/fur/brand.properties
+++ b/src/chrome/locale/fur/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/fy/brand.dtd b/src/chrome/locale/fy/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/fy/brand.dtd
+++ b/src/chrome/locale/fy/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/fy/brand.properties
+++ b/src/chrome/locale/fy/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/ga/brand.dtd b/src/chrome/locale/ga/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/ga/brand.dtd
+++ b/src/chrome/locale/ga/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/ga/brand.properties
+++ b/src/chrome/locale/ga/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/gl/brand.dtd b/src/chrome/locale/gl/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/gl/brand.dtd
+++ b/src/chrome/locale/gl/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/gl/brand.properties
+++ b/src/chrome/locale/gl/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/gu/brand.dtd b/src/chrome/locale/gu/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/gu/brand.dtd
+++ b/src/chrome/locale/gu/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/gu/brand.properties
+++ b/src/chrome/locale/gu/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/gun/brand.dtd b/src/chrome/locale/gun/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/gun/brand.dtd
+++ b/src/chrome/locale/gun/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/gun/brand.properties
+++ b/src/chrome/locale/gun/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/ha/brand.dtd b/src/chrome/locale/ha/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/ha/brand.dtd
+++ b/src/chrome/locale/ha/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/ha/brand.properties
+++ b/src/chrome/locale/ha/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/he/brand.dtd b/src/chrome/locale/he/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/he/brand.dtd
+++ b/src/chrome/locale/he/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/he/brand.properties
+++ b/src/chrome/locale/he/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/hi/brand.dtd b/src/chrome/locale/hi/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/hi/brand.dtd
+++ b/src/chrome/locale/hi/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/hi/brand.properties
+++ b/src/chrome/locale/hi/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/hr/brand.dtd b/src/chrome/locale/hr/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/hr/brand.dtd
+++ b/src/chrome/locale/hr/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/hr/brand.properties
+++ b/src/chrome/locale/hr/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/ht/brand.dtd b/src/chrome/locale/ht/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/ht/brand.dtd
+++ b/src/chrome/locale/ht/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/ht/brand.properties
+++ b/src/chrome/locale/ht/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/hu/brand.dtd b/src/chrome/locale/hu/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/hu/brand.dtd
+++ b/src/chrome/locale/hu/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/hu/brand.properties
+++ b/src/chrome/locale/hu/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/hy/brand.dtd b/src/chrome/locale/hy/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/hy/brand.dtd
+++ b/src/chrome/locale/hy/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/hy/brand.properties
+++ b/src/chrome/locale/hy/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/id/brand.dtd b/src/chrome/locale/id/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/id/brand.dtd
+++ b/src/chrome/locale/id/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/id/brand.properties
+++ b/src/chrome/locale/id/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/is/brand.dtd b/src/chrome/locale/is/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/is/brand.dtd
+++ b/src/chrome/locale/is/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/is/brand.properties
+++ b/src/chrome/locale/is/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/it/brand.dtd b/src/chrome/locale/it/brand.dtd
index b8f6fe9..f813020 100644
--- a/src/chrome/locale/it/brand.dtd
+++ b/src/chrome/locale/it/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!ENTITY brandFullName "Tor Browser">
<!ENTITY vendorShortName "Tor Project">
<!ENTITY trademarkInfo.part1 "Firefox e i loghi Firefox sono marchi registrati della Mozilla Foundation.">
diff --git a/src/chrome/locale/it/brand.properties b/src/chrome/locale/it/brand.properties
index ee1a15f..3308a03 100644
--- a/src/chrome/locale/it/brand.properties
+++ b/src/chrome/locale/it/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/ja/brand.dtd b/src/chrome/locale/ja/brand.dtd
index 72bd4a1..dd9e0d2 100644
--- a/src/chrome/locale/ja/brand.dtd
+++ b/src/chrome/locale/ja/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!ENTITY brandFullName "Tor Browser">
<!ENTITY vendorShortName "Tor Project">
<!ENTITY trademarkInfo.part1 "FirefoxおよびFirefoxのロゴはMozilla財団の登録商標です。">
diff --git a/src/chrome/locale/ja/brand.properties b/src/chrome/locale/ja/brand.properties
index 2f0fa2c..e7f8d56 100644
--- a/src/chrome/locale/ja/brand.properties
+++ b/src/chrome/locale/ja/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/jv/brand.dtd b/src/chrome/locale/jv/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/jv/brand.dtd
+++ b/src/chrome/locale/jv/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/jv/brand.properties
+++ b/src/chrome/locale/jv/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/ka/brand.dtd b/src/chrome/locale/ka/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/ka/brand.dtd
+++ b/src/chrome/locale/ka/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/ka/brand.properties
+++ b/src/chrome/locale/ka/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/km/brand.dtd b/src/chrome/locale/km/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/km/brand.dtd
+++ b/src/chrome/locale/km/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/km/brand.properties
+++ b/src/chrome/locale/km/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/kn/brand.dtd b/src/chrome/locale/kn/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/kn/brand.dtd
+++ b/src/chrome/locale/kn/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/kn/brand.properties
+++ b/src/chrome/locale/kn/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/ku/brand.dtd b/src/chrome/locale/ku/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/ku/brand.dtd
+++ b/src/chrome/locale/ku/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/ku/brand.properties
+++ b/src/chrome/locale/ku/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/kw/brand.dtd b/src/chrome/locale/kw/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/kw/brand.dtd
+++ b/src/chrome/locale/kw/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/kw/brand.properties
+++ b/src/chrome/locale/kw/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/ky/brand.dtd b/src/chrome/locale/ky/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/ky/brand.dtd
+++ b/src/chrome/locale/ky/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/ky/brand.properties
+++ b/src/chrome/locale/ky/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/lb/brand.dtd b/src/chrome/locale/lb/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/lb/brand.dtd
+++ b/src/chrome/locale/lb/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/lb/brand.properties
+++ b/src/chrome/locale/lb/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/ln/brand.dtd b/src/chrome/locale/ln/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/ln/brand.dtd
+++ b/src/chrome/locale/ln/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/ln/brand.properties
+++ b/src/chrome/locale/ln/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/lo/brand.dtd b/src/chrome/locale/lo/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/lo/brand.dtd
+++ b/src/chrome/locale/lo/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/lo/brand.properties
+++ b/src/chrome/locale/lo/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/lt/brand.dtd b/src/chrome/locale/lt/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/lt/brand.dtd
+++ b/src/chrome/locale/lt/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/lt/brand.properties
+++ b/src/chrome/locale/lt/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/lv/brand.dtd b/src/chrome/locale/lv/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/lv/brand.dtd
+++ b/src/chrome/locale/lv/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/lv/brand.properties
+++ b/src/chrome/locale/lv/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/mg/brand.dtd b/src/chrome/locale/mg/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/mg/brand.dtd
+++ b/src/chrome/locale/mg/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/mg/brand.properties
+++ b/src/chrome/locale/mg/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/mi/brand.dtd b/src/chrome/locale/mi/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/mi/brand.dtd
+++ b/src/chrome/locale/mi/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/mi/brand.properties
+++ b/src/chrome/locale/mi/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/mk/brand.dtd b/src/chrome/locale/mk/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/mk/brand.dtd
+++ b/src/chrome/locale/mk/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/mk/brand.properties
+++ b/src/chrome/locale/mk/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/ml/brand.dtd b/src/chrome/locale/ml/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/ml/brand.dtd
+++ b/src/chrome/locale/ml/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/ml/brand.properties
+++ b/src/chrome/locale/ml/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/mn/brand.dtd b/src/chrome/locale/mn/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/mn/brand.dtd
+++ b/src/chrome/locale/mn/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/mn/brand.properties
+++ b/src/chrome/locale/mn/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/mr/brand.dtd b/src/chrome/locale/mr/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/mr/brand.dtd
+++ b/src/chrome/locale/mr/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/mr/brand.properties
+++ b/src/chrome/locale/mr/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/ms/brand.dtd b/src/chrome/locale/ms/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/ms/brand.dtd
+++ b/src/chrome/locale/ms/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/ms/brand.properties
+++ b/src/chrome/locale/ms/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/mt/brand.dtd b/src/chrome/locale/mt/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/mt/brand.dtd
+++ b/src/chrome/locale/mt/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/mt/brand.properties
+++ b/src/chrome/locale/mt/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/my/brand.dtd b/src/chrome/locale/my/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/my/brand.dtd
+++ b/src/chrome/locale/my/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/my/brand.properties
+++ b/src/chrome/locale/my/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/nah/brand.dtd b/src/chrome/locale/nah/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/nah/brand.dtd
+++ b/src/chrome/locale/nah/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/nah/brand.properties
+++ b/src/chrome/locale/nah/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/nap/brand.dtd b/src/chrome/locale/nap/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/nap/brand.dtd
+++ b/src/chrome/locale/nap/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/nap/brand.properties
+++ b/src/chrome/locale/nap/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/nb/brand.dtd b/src/chrome/locale/nb/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/nb/brand.dtd
+++ b/src/chrome/locale/nb/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/nb/brand.properties
+++ b/src/chrome/locale/nb/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/ne/brand.dtd b/src/chrome/locale/ne/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/ne/brand.dtd
+++ b/src/chrome/locale/ne/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/ne/brand.properties
+++ b/src/chrome/locale/ne/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/nl/brand.dtd b/src/chrome/locale/nl/brand.dtd
index 111e9a9..af3e58a 100644
--- a/src/chrome/locale/nl/brand.dtd
+++ b/src/chrome/locale/nl/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!ENTITY brandFullName "Tor Browser">
<!ENTITY vendorShortName "Tor Project">
<!ENTITY trademarkInfo.part1 "Firefox and het Firefox logo zijn handelsmerken van de Mozilla Foundation.">
diff --git a/src/chrome/locale/nl/brand.properties b/src/chrome/locale/nl/brand.properties
index b03e3a7..33caa67 100644
--- a/src/chrome/locale/nl/brand.properties
+++ b/src/chrome/locale/nl/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/nn/brand.dtd b/src/chrome/locale/nn/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/nn/brand.dtd
+++ b/src/chrome/locale/nn/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/nn/brand.properties
+++ b/src/chrome/locale/nn/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/nso/brand.dtd b/src/chrome/locale/nso/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/nso/brand.dtd
+++ b/src/chrome/locale/nso/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/nso/brand.properties
+++ b/src/chrome/locale/nso/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/oc/brand.dtd b/src/chrome/locale/oc/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/oc/brand.dtd
+++ b/src/chrome/locale/oc/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/oc/brand.properties
+++ b/src/chrome/locale/oc/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/or/brand.dtd b/src/chrome/locale/or/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/or/brand.dtd
+++ b/src/chrome/locale/or/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/or/brand.properties
+++ b/src/chrome/locale/or/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/pa/brand.dtd b/src/chrome/locale/pa/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/pa/brand.dtd
+++ b/src/chrome/locale/pa/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/pa/brand.properties
+++ b/src/chrome/locale/pa/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/pap/brand.dtd b/src/chrome/locale/pap/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/pap/brand.dtd
+++ b/src/chrome/locale/pap/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/pap/brand.properties
+++ b/src/chrome/locale/pap/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/pms/brand.dtd b/src/chrome/locale/pms/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/pms/brand.dtd
+++ b/src/chrome/locale/pms/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/pms/brand.properties
+++ b/src/chrome/locale/pms/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/ps/brand.dtd b/src/chrome/locale/ps/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/ps/brand.dtd
+++ b/src/chrome/locale/ps/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/ps/brand.properties
+++ b/src/chrome/locale/ps/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/pt-BR/brand.dtd b/src/chrome/locale/pt-BR/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/pt-BR/brand.dtd
+++ b/src/chrome/locale/pt-BR/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/pt-BR/brand.properties
+++ b/src/chrome/locale/pt-BR/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/ro/brand.dtd b/src/chrome/locale/ro/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/ro/brand.dtd
+++ b/src/chrome/locale/ro/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/ro/brand.properties
+++ b/src/chrome/locale/ro/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/ru/brand.dtd b/src/chrome/locale/ru/brand.dtd
index b41f8ab..043e478 100644
--- a/src/chrome/locale/ru/brand.dtd
+++ b/src/chrome/locale/ru/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!ENTITY brandFullName "Tor Browser">
<!ENTITY vendorShortName "Проект Tor">
<!ENTITY trademarkInfo.part1 "Firefox и его логотипы это торговые знаки Mozilla Foundation.">
diff --git a/src/chrome/locale/ru/brand.properties b/src/chrome/locale/ru/brand.properties
index d4788a7..93347e1 100644
--- a/src/chrome/locale/ru/brand.properties
+++ b/src/chrome/locale/ru/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Проект Tor
diff --git a/src/chrome/locale/sco/brand.dtd b/src/chrome/locale/sco/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/sco/brand.dtd
+++ b/src/chrome/locale/sco/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/sco/brand.properties
+++ b/src/chrome/locale/sco/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/sk/brand.dtd b/src/chrome/locale/sk/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/sk/brand.dtd
+++ b/src/chrome/locale/sk/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/sk/brand.properties
+++ b/src/chrome/locale/sk/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/sl/brand.dtd b/src/chrome/locale/sl/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/sl/brand.dtd
+++ b/src/chrome/locale/sl/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/sl/brand.properties
+++ b/src/chrome/locale/sl/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/so/brand.dtd b/src/chrome/locale/so/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/so/brand.dtd
+++ b/src/chrome/locale/so/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/so/brand.properties
+++ b/src/chrome/locale/so/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/son/brand.dtd b/src/chrome/locale/son/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/son/brand.dtd
+++ b/src/chrome/locale/son/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/son/brand.properties
+++ b/src/chrome/locale/son/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/sq/brand.dtd b/src/chrome/locale/sq/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/sq/brand.dtd
+++ b/src/chrome/locale/sq/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/sq/brand.properties
+++ b/src/chrome/locale/sq/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/sr/brand.dtd b/src/chrome/locale/sr/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/sr/brand.dtd
+++ b/src/chrome/locale/sr/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/sr/brand.properties
+++ b/src/chrome/locale/sr/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/st/brand.dtd b/src/chrome/locale/st/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/st/brand.dtd
+++ b/src/chrome/locale/st/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/st/brand.properties
+++ b/src/chrome/locale/st/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/su/brand.dtd b/src/chrome/locale/su/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/su/brand.dtd
+++ b/src/chrome/locale/su/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/su/brand.properties
+++ b/src/chrome/locale/su/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/sv/brand.dtd b/src/chrome/locale/sv/brand.dtd
index bb0174f..72b2120 100644
--- a/src/chrome/locale/sv/brand.dtd
+++ b/src/chrome/locale/sv/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!ENTITY brandFullName "Tor webbläsaren">
<!ENTITY vendorShortName "Tor projektet">
<!ENTITY trademarkInfo.part1 "Firefox och Firefox logotypen är varumärken tillhörande Mozilla Foundation.">
diff --git a/src/chrome/locale/sv/brand.properties b/src/chrome/locale/sv/brand.properties
index 3bf264b..2b65162 100644
--- a/src/chrome/locale/sv/brand.properties
+++ b/src/chrome/locale/sv/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor webbläsaren
vendorShortName=Tor projektet
diff --git a/src/chrome/locale/sw/brand.dtd b/src/chrome/locale/sw/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/sw/brand.dtd
+++ b/src/chrome/locale/sw/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/sw/brand.properties
+++ b/src/chrome/locale/sw/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/ta/brand.dtd b/src/chrome/locale/ta/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/ta/brand.dtd
+++ b/src/chrome/locale/ta/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/ta/brand.properties
+++ b/src/chrome/locale/ta/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/te/brand.dtd b/src/chrome/locale/te/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/te/brand.dtd
+++ b/src/chrome/locale/te/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/te/brand.properties
+++ b/src/chrome/locale/te/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/tg/brand.dtd b/src/chrome/locale/tg/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/tg/brand.dtd
+++ b/src/chrome/locale/tg/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/tg/brand.properties
+++ b/src/chrome/locale/tg/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/th/brand.dtd b/src/chrome/locale/th/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/th/brand.dtd
+++ b/src/chrome/locale/th/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/th/brand.properties
+++ b/src/chrome/locale/th/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/ti/brand.dtd b/src/chrome/locale/ti/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/ti/brand.dtd
+++ b/src/chrome/locale/ti/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/ti/brand.properties
+++ b/src/chrome/locale/ti/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/tk/brand.dtd b/src/chrome/locale/tk/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/tk/brand.dtd
+++ b/src/chrome/locale/tk/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/tk/brand.properties
+++ b/src/chrome/locale/tk/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/tr/brand.dtd b/src/chrome/locale/tr/brand.dtd
index 68f8c1c..f07182a 100644
--- a/src/chrome/locale/tr/brand.dtd
+++ b/src/chrome/locale/tr/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 "TorTarayıcı">
+<!ENTITY brandShortName "Tor Tarayıcı">
<!ENTITY brandFullName "Tor Tarayıcı">
<!ENTITY vendorShortName "Tor Projesi">
<!ENTITY trademarkInfo.part1 "Firefox ve Firefox logoları Mozilla Vakfı'nın ticari markalarıdır.">
diff --git a/src/chrome/locale/tr/brand.properties b/src/chrome/locale/tr/brand.properties
index a4220f9..2ae02b1 100644
--- a/src/chrome/locale/tr/brand.properties
+++ b/src/chrome/locale/tr/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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=TorTarayıcı
+brandShortName=Tor Tarayıcı
brandFullName=Tor Tarayıcı
vendorShortName=Tor Projesi
diff --git a/src/chrome/locale/uk/brand.dtd b/src/chrome/locale/uk/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/uk/brand.dtd
+++ b/src/chrome/locale/uk/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/uk/brand.properties
+++ b/src/chrome/locale/uk/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/ur/brand.dtd b/src/chrome/locale/ur/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/ur/brand.dtd
+++ b/src/chrome/locale/ur/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/ur/brand.properties
+++ b/src/chrome/locale/ur/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/ve/brand.dtd b/src/chrome/locale/ve/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/ve/brand.dtd
+++ b/src/chrome/locale/ve/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/ve/brand.properties
+++ b/src/chrome/locale/ve/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/vi/brand.dtd b/src/chrome/locale/vi/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/vi/brand.dtd
+++ b/src/chrome/locale/vi/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 8f3610e..e2b5250 100644
--- a/src/chrome/locale/vi/brand.properties
+++ b/src/chrome/locale/vi/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/wa/brand.dtd b/src/chrome/locale/wa/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/wa/brand.dtd
+++ b/src/chrome/locale/wa/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/wa/brand.properties
+++ b/src/chrome/locale/wa/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/wo/brand.dtd b/src/chrome/locale/wo/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/wo/brand.dtd
+++ b/src/chrome/locale/wo/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/wo/brand.properties
+++ b/src/chrome/locale/wo/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/zh-CN/brand.dtd b/src/chrome/locale/zh-CN/brand.dtd
index e6464da..7868d2d 100644
--- a/src/chrome/locale/zh-CN/brand.dtd
+++ b/src/chrome/locale/zh-CN/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!ENTITY brandFullName "Tor Browser">
<!ENTITY vendorShortName "Tor Project">
<!ENTITY trademarkInfo.part1 "Firefox 与 Firefox 图标为 Mozilla Foundation 的商标。">
diff --git a/src/chrome/locale/zh-CN/brand.properties b/src/chrome/locale/zh-CN/brand.properties
index 151e991..5f9a8c7 100644
--- a/src/chrome/locale/zh-CN/brand.properties
+++ b/src/chrome/locale/zh-CN/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/zh-HK/brand.dtd b/src/chrome/locale/zh-HK/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/zh-HK/brand.dtd
+++ b/src/chrome/locale/zh-HK/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/zh-HK/brand.properties
+++ b/src/chrome/locale/zh-HK/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/zh-TW/brand.dtd b/src/chrome/locale/zh-TW/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/zh-TW/brand.dtd
+++ b/src/chrome/locale/zh-TW/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/zh-TW/brand.properties
+++ b/src/chrome/locale/zh-TW/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
diff --git a/src/chrome/locale/zu/brand.dtd b/src/chrome/locale/zu/brand.dtd
index 76e405d..59f665e 100644
--- a/src/chrome/locale/zu/brand.dtd
+++ b/src/chrome/locale/zu/brand.dtd
@@ -2,7 +2,7 @@
- License, v. 2.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 brandShortName "Tor Browser">
<!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
index 9ae168e..f63def3 100644
--- a/src/chrome/locale/zu/brand.properties
+++ b/src/chrome/locale/zu/brand.properties
@@ -2,7 +2,7 @@
# License, v. 2.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
+brandShortName=Tor Browser
brandFullName=Tor Browser
vendorShortName=Tor Project
1
0
23 Sep '14
commit 0683ce614724600e2d87c44726a11203e575ee11
Author: Mike Perry <mikeperry-git(a)torproject.org>
Date: Mon Sep 22 20:00:01 2014 -0700
Update translations from transifex.
---
src/chrome/locale/ja/torbutton.properties | 8 ++++----
src/chrome/locale/sv/torbutton.properties | 8 ++++----
src/chrome/locale/zh-CN/torbutton.properties | 2 +-
3 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/src/chrome/locale/ja/torbutton.properties b/src/chrome/locale/ja/torbutton.properties
index eda48d7..4d10949 100644
--- a/src/chrome/locale/ja/torbutton.properties
+++ b/src/chrome/locale/ja/torbutton.properties
@@ -48,10 +48,10 @@ torbutton.popup.confirm_plugins = Flashなどのプラグインはあなたの
torbutton.popup.never_ask_again = 次からはたずねない
# Canvas permission prompt. Strings are kept here for ease of translation.
-canvas.siteprompt=This website (%S) attempted to extract HTML5 canvas image data, which may be used to uniquely identify your computer.\n\nShould Tor Browser allow this website to extract HTML5 canvas image data?
-canvas.notNow=Not Now
+canvas.siteprompt=このWebサイト(%S)がHTML5 canvas画像を使用しようとしています。これはあなたのコンピューターを識別するために使われる可能性があります。\n\nTor ブラウザーにHTML5 canvas画像の使用を許可しますか?
+canvas.notNow=今は許可しない
canvas.notNowAccessKey=N
-canvas.allow=Allow in the future
+canvas.allow=許可する
canvas.allowAccessKey=A
-canvas.never=Never for this site (recommended)
+canvas.never=このサイトには許可しない(推奨)
canvas.neverAccessKey=e
diff --git a/src/chrome/locale/sv/torbutton.properties b/src/chrome/locale/sv/torbutton.properties
index aab3f2f..d1cc52a 100644
--- a/src/chrome/locale/sv/torbutton.properties
+++ b/src/chrome/locale/sv/torbutton.properties
@@ -48,10 +48,10 @@ torbutton.popup.confirm_plugins = Insticksmoduler så som Flash kan äventyra di
torbutton.popup.never_ask_again = Fråga aldrig igen
# Canvas permission prompt. Strings are kept here for ease of translation.
-canvas.siteprompt=This website (%S) attempted to extract HTML5 canvas image data, which may be used to uniquely identify your computer.\n\nShould Tor Browser allow this website to extract HTML5 canvas image data?
-canvas.notNow=Not Now
+canvas.siteprompt=Denna webbsida (%S) försökte komma åt HTML5-bilddata på ett kanvas, som skulle kunna användas för att identifiera just din dator.\n\nSka Tor Browser tillåta den här webbsidan att använda HTML5-bilddata på kanvas?
+canvas.notNow=Inte just nu
canvas.notNowAccessKey=N
-canvas.allow=Allow in the future
+canvas.allow=Ja, tillåt alltid
canvas.allowAccessKey=A
-canvas.never=Never for this site (recommended)
+canvas.never=Aldrig för denna sida (rekommenderas)
canvas.neverAccessKey=e
diff --git a/src/chrome/locale/zh-CN/torbutton.properties b/src/chrome/locale/zh-CN/torbutton.properties
index 619b638..6425d8c 100644
--- a/src/chrome/locale/zh-CN/torbutton.properties
+++ b/src/chrome/locale/zh-CN/torbutton.properties
@@ -6,7 +6,7 @@ torbutton.panel.plugins.disabled = 点击启用插件
torbutton.panel.plugins.enabled = 点击禁用插件
torbutton.panel.label.disabled = Tor 已禁用
torbutton.panel.label.enabled = Tor 已启用
-extensions.torbutton(a)torproject.org.description = Torbutton 提供了一个按钮,可对“Tor 设置”进行配置,并可快速而方便地清除浏览器隐私数据。
+extensions.torbutton(a)torproject.org.description = Torbutton 是一个可以配置Tor并能简单快速清理个人浏览数据的按钮。
torbutton.popup.history.warning = Torbutton 屏蔽了在其他 Tor 状态下加载的标签的活动。\n\n这是用于暂时解决 Firefox Bug 409737 和 417869。\n如果这个弹出窗口在您不知情的情况下弹出,则您的标签之一正试图在后台重新载入自己,然而这样的行为是被屏蔽的。\n\n要刷新当前 Tor 状态下的标签,将焦点置于在地址栏并按回车键。\n\n
torbutton.popup.plugin.warning = Torbutton 阻止了浏览器戴 Tor 时直接加载需要插件支持的内容。\n\n请使用“另存为”(保存后浏览)。\n\n
torbutton.popup.confirm_ca_certs = Torbutton 注意:浏览器似乎缺少自定义的CA(证书颁发机构)。检查CA列表是一项耗时的操作,障碍Tor的切换。您是否希望禁用对CA证书的隔离?)如果您不懂,可以选择“确定”)
1
0
[torbutton/master] Merge remote-tracking branch 'brade/bug13091'
by mikeperry@torproject.org 23 Sep '14
by mikeperry@torproject.org 23 Sep '14
23 Sep '14
commit d5a318e3c63e182e9760e19fb8c80d2071ddfdab
Merge: 0683ce6 1eaed5a
Author: Mike Perry <mikeperry-git(a)torproject.org>
Date: Mon Sep 22 20:00:19 2014 -0700
Merge remote-tracking branch 'brade/bug13091'
src/chrome/locale/af/brand.dtd | 2 +-
src/chrome/locale/af/brand.properties | 2 +-
src/chrome/locale/ak/brand.dtd | 2 +-
src/chrome/locale/ak/brand.properties | 2 +-
src/chrome/locale/am/brand.dtd | 2 +-
src/chrome/locale/am/brand.properties | 2 +-
src/chrome/locale/arn/brand.dtd | 2 +-
src/chrome/locale/arn/brand.properties | 2 +-
src/chrome/locale/ast/brand.dtd | 2 +-
src/chrome/locale/ast/brand.properties | 2 +-
src/chrome/locale/az/brand.dtd | 2 +-
src/chrome/locale/az/brand.properties | 2 +-
src/chrome/locale/be/brand.dtd | 2 +-
src/chrome/locale/be/brand.properties | 2 +-
src/chrome/locale/bg/brand.dtd | 2 +-
src/chrome/locale/bg/brand.properties | 2 +-
src/chrome/locale/bn-IN/brand.dtd | 2 +-
src/chrome/locale/bn-IN/brand.properties | 2 +-
src/chrome/locale/bn/brand.dtd | 2 +-
src/chrome/locale/bn/brand.properties | 2 +-
src/chrome/locale/bo/brand.dtd | 2 +-
src/chrome/locale/bo/brand.properties | 2 +-
src/chrome/locale/br/brand.dtd | 2 +-
src/chrome/locale/br/brand.properties | 2 +-
src/chrome/locale/bs/brand.dtd | 2 +-
src/chrome/locale/bs/brand.properties | 2 +-
src/chrome/locale/ca/brand.dtd | 2 +-
src/chrome/locale/ca/brand.properties | 2 +-
src/chrome/locale/cs/brand.dtd | 2 +-
src/chrome/locale/cs/brand.properties | 2 +-
src/chrome/locale/csb/brand.dtd | 2 +-
src/chrome/locale/csb/brand.properties | 2 +-
src/chrome/locale/cy/brand.dtd | 2 +-
src/chrome/locale/cy/brand.properties | 2 +-
src/chrome/locale/da/brand.dtd | 2 +-
src/chrome/locale/da/brand.properties | 2 +-
src/chrome/locale/de/brand.dtd | 2 +-
src/chrome/locale/de/brand.properties | 2 +-
src/chrome/locale/dz/brand.dtd | 2 +-
src/chrome/locale/dz/brand.properties | 2 +-
src/chrome/locale/el/brand.dtd | 2 +-
src/chrome/locale/el/brand.properties | 2 +-
src/chrome/locale/en/brand.dtd | 2 +-
src/chrome/locale/en/brand.properties | 2 +-
src/chrome/locale/eo/brand.dtd | 2 +-
src/chrome/locale/eo/brand.properties | 2 +-
src/chrome/locale/es/brand.dtd | 2 +-
src/chrome/locale/es/brand.properties | 2 +-
src/chrome/locale/et/brand.dtd | 2 +-
src/chrome/locale/et/brand.properties | 2 +-
src/chrome/locale/eu/brand.dtd | 2 +-
src/chrome/locale/eu/brand.properties | 2 +-
src/chrome/locale/fi/brand.dtd | 2 +-
src/chrome/locale/fi/brand.properties | 2 +-
src/chrome/locale/fil/brand.dtd | 2 +-
src/chrome/locale/fil/brand.properties | 2 +-
src/chrome/locale/fo/brand.dtd | 2 +-
src/chrome/locale/fo/brand.properties | 2 +-
src/chrome/locale/fur/brand.dtd | 2 +-
src/chrome/locale/fur/brand.properties | 2 +-
src/chrome/locale/fy/brand.dtd | 2 +-
src/chrome/locale/fy/brand.properties | 2 +-
src/chrome/locale/ga/brand.dtd | 2 +-
src/chrome/locale/ga/brand.properties | 2 +-
src/chrome/locale/gl/brand.dtd | 2 +-
src/chrome/locale/gl/brand.properties | 2 +-
src/chrome/locale/gu/brand.dtd | 2 +-
src/chrome/locale/gu/brand.properties | 2 +-
src/chrome/locale/gun/brand.dtd | 2 +-
src/chrome/locale/gun/brand.properties | 2 +-
src/chrome/locale/ha/brand.dtd | 2 +-
src/chrome/locale/ha/brand.properties | 2 +-
src/chrome/locale/he/brand.dtd | 2 +-
src/chrome/locale/he/brand.properties | 2 +-
src/chrome/locale/hi/brand.dtd | 2 +-
src/chrome/locale/hi/brand.properties | 2 +-
src/chrome/locale/hr/brand.dtd | 2 +-
src/chrome/locale/hr/brand.properties | 2 +-
src/chrome/locale/ht/brand.dtd | 2 +-
src/chrome/locale/ht/brand.properties | 2 +-
src/chrome/locale/hu/brand.dtd | 2 +-
src/chrome/locale/hu/brand.properties | 2 +-
src/chrome/locale/hy/brand.dtd | 2 +-
src/chrome/locale/hy/brand.properties | 2 +-
src/chrome/locale/id/brand.dtd | 2 +-
src/chrome/locale/id/brand.properties | 2 +-
src/chrome/locale/is/brand.dtd | 2 +-
src/chrome/locale/is/brand.properties | 2 +-
src/chrome/locale/it/brand.dtd | 2 +-
src/chrome/locale/it/brand.properties | 2 +-
src/chrome/locale/ja/brand.dtd | 2 +-
src/chrome/locale/ja/brand.properties | 2 +-
src/chrome/locale/jv/brand.dtd | 2 +-
src/chrome/locale/jv/brand.properties | 2 +-
src/chrome/locale/ka/brand.dtd | 2 +-
src/chrome/locale/ka/brand.properties | 2 +-
src/chrome/locale/km/brand.dtd | 2 +-
src/chrome/locale/km/brand.properties | 2 +-
src/chrome/locale/kn/brand.dtd | 2 +-
src/chrome/locale/kn/brand.properties | 2 +-
src/chrome/locale/ku/brand.dtd | 2 +-
src/chrome/locale/ku/brand.properties | 2 +-
src/chrome/locale/kw/brand.dtd | 2 +-
src/chrome/locale/kw/brand.properties | 2 +-
src/chrome/locale/ky/brand.dtd | 2 +-
src/chrome/locale/ky/brand.properties | 2 +-
src/chrome/locale/lb/brand.dtd | 2 +-
src/chrome/locale/lb/brand.properties | 2 +-
src/chrome/locale/ln/brand.dtd | 2 +-
src/chrome/locale/ln/brand.properties | 2 +-
src/chrome/locale/lo/brand.dtd | 2 +-
src/chrome/locale/lo/brand.properties | 2 +-
src/chrome/locale/lt/brand.dtd | 2 +-
src/chrome/locale/lt/brand.properties | 2 +-
src/chrome/locale/lv/brand.dtd | 2 +-
src/chrome/locale/lv/brand.properties | 2 +-
src/chrome/locale/mg/brand.dtd | 2 +-
src/chrome/locale/mg/brand.properties | 2 +-
src/chrome/locale/mi/brand.dtd | 2 +-
src/chrome/locale/mi/brand.properties | 2 +-
src/chrome/locale/mk/brand.dtd | 2 +-
src/chrome/locale/mk/brand.properties | 2 +-
src/chrome/locale/ml/brand.dtd | 2 +-
src/chrome/locale/ml/brand.properties | 2 +-
src/chrome/locale/mn/brand.dtd | 2 +-
src/chrome/locale/mn/brand.properties | 2 +-
src/chrome/locale/mr/brand.dtd | 2 +-
src/chrome/locale/mr/brand.properties | 2 +-
src/chrome/locale/ms/brand.dtd | 2 +-
src/chrome/locale/ms/brand.properties | 2 +-
src/chrome/locale/mt/brand.dtd | 2 +-
src/chrome/locale/mt/brand.properties | 2 +-
src/chrome/locale/my/brand.dtd | 2 +-
src/chrome/locale/my/brand.properties | 2 +-
src/chrome/locale/nah/brand.dtd | 2 +-
src/chrome/locale/nah/brand.properties | 2 +-
src/chrome/locale/nap/brand.dtd | 2 +-
src/chrome/locale/nap/brand.properties | 2 +-
src/chrome/locale/nb/brand.dtd | 2 +-
src/chrome/locale/nb/brand.properties | 2 +-
src/chrome/locale/ne/brand.dtd | 2 +-
src/chrome/locale/ne/brand.properties | 2 +-
src/chrome/locale/nl/brand.dtd | 2 +-
src/chrome/locale/nl/brand.properties | 2 +-
src/chrome/locale/nn/brand.dtd | 2 +-
src/chrome/locale/nn/brand.properties | 2 +-
src/chrome/locale/nso/brand.dtd | 2 +-
src/chrome/locale/nso/brand.properties | 2 +-
src/chrome/locale/oc/brand.dtd | 2 +-
src/chrome/locale/oc/brand.properties | 2 +-
src/chrome/locale/or/brand.dtd | 2 +-
src/chrome/locale/or/brand.properties | 2 +-
src/chrome/locale/pa/brand.dtd | 2 +-
src/chrome/locale/pa/brand.properties | 2 +-
src/chrome/locale/pap/brand.dtd | 2 +-
src/chrome/locale/pap/brand.properties | 2 +-
src/chrome/locale/pms/brand.dtd | 2 +-
src/chrome/locale/pms/brand.properties | 2 +-
src/chrome/locale/ps/brand.dtd | 2 +-
src/chrome/locale/ps/brand.properties | 2 +-
src/chrome/locale/pt-BR/brand.dtd | 2 +-
src/chrome/locale/pt-BR/brand.properties | 2 +-
src/chrome/locale/ro/brand.dtd | 2 +-
src/chrome/locale/ro/brand.properties | 2 +-
src/chrome/locale/ru/brand.dtd | 2 +-
src/chrome/locale/ru/brand.properties | 2 +-
src/chrome/locale/sco/brand.dtd | 2 +-
src/chrome/locale/sco/brand.properties | 2 +-
src/chrome/locale/sk/brand.dtd | 2 +-
src/chrome/locale/sk/brand.properties | 2 +-
src/chrome/locale/sl/brand.dtd | 2 +-
src/chrome/locale/sl/brand.properties | 2 +-
src/chrome/locale/so/brand.dtd | 2 +-
src/chrome/locale/so/brand.properties | 2 +-
src/chrome/locale/son/brand.dtd | 2 +-
src/chrome/locale/son/brand.properties | 2 +-
src/chrome/locale/sq/brand.dtd | 2 +-
src/chrome/locale/sq/brand.properties | 2 +-
src/chrome/locale/sr/brand.dtd | 2 +-
src/chrome/locale/sr/brand.properties | 2 +-
src/chrome/locale/st/brand.dtd | 2 +-
src/chrome/locale/st/brand.properties | 2 +-
src/chrome/locale/su/brand.dtd | 2 +-
src/chrome/locale/su/brand.properties | 2 +-
src/chrome/locale/sv/brand.dtd | 2 +-
src/chrome/locale/sv/brand.properties | 2 +-
src/chrome/locale/sw/brand.dtd | 2 +-
src/chrome/locale/sw/brand.properties | 2 +-
src/chrome/locale/ta/brand.dtd | 2 +-
src/chrome/locale/ta/brand.properties | 2 +-
src/chrome/locale/te/brand.dtd | 2 +-
src/chrome/locale/te/brand.properties | 2 +-
src/chrome/locale/tg/brand.dtd | 2 +-
src/chrome/locale/tg/brand.properties | 2 +-
src/chrome/locale/th/brand.dtd | 2 +-
src/chrome/locale/th/brand.properties | 2 +-
src/chrome/locale/ti/brand.dtd | 2 +-
src/chrome/locale/ti/brand.properties | 2 +-
src/chrome/locale/tk/brand.dtd | 2 +-
src/chrome/locale/tk/brand.properties | 2 +-
src/chrome/locale/tr/brand.dtd | 2 +-
src/chrome/locale/tr/brand.properties | 2 +-
src/chrome/locale/uk/brand.dtd | 2 +-
src/chrome/locale/uk/brand.properties | 2 +-
src/chrome/locale/ur/brand.dtd | 2 +-
src/chrome/locale/ur/brand.properties | 2 +-
src/chrome/locale/ve/brand.dtd | 2 +-
src/chrome/locale/ve/brand.properties | 2 +-
src/chrome/locale/vi/brand.dtd | 2 +-
src/chrome/locale/vi/brand.properties | 2 +-
src/chrome/locale/wa/brand.dtd | 2 +-
src/chrome/locale/wa/brand.properties | 2 +-
src/chrome/locale/wo/brand.dtd | 2 +-
src/chrome/locale/wo/brand.properties | 2 +-
src/chrome/locale/zh-CN/brand.dtd | 2 +-
src/chrome/locale/zh-CN/brand.properties | 2 +-
src/chrome/locale/zh-HK/brand.dtd | 2 +-
src/chrome/locale/zh-HK/brand.properties | 2 +-
src/chrome/locale/zh-TW/brand.dtd | 2 +-
src/chrome/locale/zh-TW/brand.properties | 2 +-
src/chrome/locale/zu/brand.dtd | 2 +-
src/chrome/locale/zu/brand.properties | 2 +-
222 files changed, 222 insertions(+), 222 deletions(-)
1
0
[torbutton/master] Bump version and update changelog for 1.6.12.2.
by mikeperry@torproject.org 23 Sep '14
by mikeperry@torproject.org 23 Sep '14
23 Sep '14
commit 0b02de380a388e8abe1be0a55631414c04dd71eb
Author: Mike Perry <mikeperry-git(a)torproject.org>
Date: Mon Sep 22 20:04:04 2014 -0700
Bump version and update changelog for 1.6.12.2.
---
src/CHANGELOG | 4 ++++
src/install.rdf | 2 +-
2 files changed, 5 insertions(+), 1 deletion(-)
diff --git a/src/CHANGELOG b/src/CHANGELOG
index 0943687..f5d32e9 100644
--- a/src/CHANGELOG
+++ b/src/CHANGELOG
@@ -1,3 +1,7 @@
+1.6.12.2
+ 22 Sep 2014
+ * Bug 13091: Use "Tor Browser" everywhere
+
1.6.12.1
1 Sep 2014
* Bug 12684: Add `canvas.notNow` UI strings to torbutton.properties file.
diff --git a/src/install.rdf b/src/install.rdf
index de66e4e..7e2f4fc 100644
--- a/src/install.rdf
+++ b/src/install.rdf
@@ -6,7 +6,7 @@
<em:name>Torbutton</em:name>
<em:creator>Mike Perry</em:creator>
<em:id>torbutton(a)torproject.org</em:id>
- <em:version>1.6.12.1</em:version>
+ <em:version>1.6.12.2</em:version>
<em:homepageURL>https://www.torproject.org/projects/torbrowser.html.en</em:homepageURL>
<em:optionsURL>chrome://torbutton/content/preferences.xul</em:optionsURL>
<em:iconURL>chrome://torbutton/skin/tor.png</em:iconURL>
1
0
[gitian-builder/tor-browser-builder-3] Bug 13215: Use 15GiB VM space if needed.
by gk@torproject.org 22 Sep '14
by gk@torproject.org 22 Sep '14
22 Sep '14
commit e371d36c295a11bca2c6d3f59777f8a1177e4c14
Author: Georg Koppen <gk(a)torproject.org>
Date: Mon Sep 22 11:55:42 2014 +0000
Bug 13215: Use 15GiB VM space if needed.
With Firefox ESR 31 10GiB is not enough anymore to build Tor Browser for
64 Bit Linux systems. We bump the upper limit to 15GiB in order to
account for the additional capacity needed when starting with the
hardened build series.
---
bin/make-base-vm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/bin/make-base-vm b/bin/make-base-vm
index dccd237..cc5fe5b 100755
--- a/bin/make-base-vm
+++ b/bin/make-base-vm
@@ -99,7 +99,7 @@ if [ -e $OUT.qcow2 ]; then
fi
rm -rf $OUT
-sudo vmbuilder kvm ubuntu --rootsize 10240 --arch=$ARCH --suite=$SUITE --addpkg=$addpkg --removepkg=$removepkg --ssh-key=var/id_dsa.pub --ssh-user-key=var/id_dsa.pub --mirror=$MIRROR --security-mirror=$SECURITY_MIRROR --dest=$OUT --flavour=$FLAVOUR --firstboot=`pwd`/target-bin/bootstrap-fixup
+sudo vmbuilder kvm ubuntu --rootsize 15360 --arch=$ARCH --suite=$SUITE --addpkg=$addpkg --removepkg=$removepkg --ssh-key=var/id_dsa.pub --ssh-user-key=var/id_dsa.pub --mirror=$MIRROR --security-mirror=$SECURITY_MIRROR --dest=$OUT --flavour=$FLAVOUR --firstboot=`pwd`/target-bin/bootstrap-fixup
mv $OUT/*.qcow2 $OUT.qcow2
rm -rf $OUT
1
0
[tor-browser-bundle/master] Bug 13031: Adding full RELRO protection on Linux.
by gk@torproject.org 22 Sep '14
by gk@torproject.org 22 Sep '14
22 Sep '14
commit 71f2ed613d2b2ce6fb40ef27f99fd140b1b86517
Author: Georg Koppen <gk(a)torproject.org>
Date: Mon Sep 22 10:04:12 2014 +0000
Bug 13031: Adding full RELRO protection on Linux.
Thanks to a patch by a cypherpunk we have now full RELRO protection when
using gold as our linker.
---
gitian/descriptors/linux/gitian-firefox.yml | 9 +++++++++
gitian/descriptors/linux/gitian-utils.yml | 6 +-----
2 files changed, 10 insertions(+), 5 deletions(-)
diff --git a/gitian/descriptors/linux/gitian-firefox.yml b/gitian/descriptors/linux/gitian-firefox.yml
index 0cd4b28..509f63a 100644
--- a/gitian/descriptors/linux/gitian-firefox.yml
+++ b/gitian/descriptors/linux/gitian-firefox.yml
@@ -65,6 +65,15 @@ script: |
export PATH=$INSTDIR/python/bin:$PATH
#
unzip -d $INSTDIR binutils-linux$GBUILD_BITS-utils.zip
+ # Make sure gold is used with the hardening wrapper for full RELRO, see
+ # #13031.
+ cd $INSTDIR/binutils/bin
+ rm ld
+ cp /usr/bin/hardened-ld ./
+ mv ld.gold ld.gold.real
+ ln -sf hardened-ld ld.gold
+ ln -sf ld.gold ld
+ cd ~/build
export PATH=$INSTDIR/binutils/bin:$PATH
mkdir -p $INSTDIR/Browser/
mkdir -p $INSTDIR/Debug/Browser/components
diff --git a/gitian/descriptors/linux/gitian-utils.yml b/gitian/descriptors/linux/gitian-utils.yml
index ea122db..074076e 100644
--- a/gitian/descriptors/linux/gitian-utils.yml
+++ b/gitian/descriptors/linux/gitian-utils.yml
@@ -60,11 +60,7 @@ script: |
./configure --prefix=$INSTDIR/binutils --disable-multilib --enable-gold
make $MAKEOPTS
make install
- # Make sure gold is used and not ld.
- cd $INSTDIR/binutils/bin
- rm ld
- ln -sf ld.gold ld
- cd ~/build
+ cd ..
# Building Libevent
cd libevent
1
0
commit 8c01d6bb195d38d3e236c5ff746b7bf7dc1c5562
Author: Georg Koppen <gk(a)torproject.org>
Date: Mon Sep 22 10:07:10 2014 +0000
Update changelog file.
---
Bundle-Data/Docs/ChangeLog.txt | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/Bundle-Data/Docs/ChangeLog.txt b/Bundle-Data/Docs/ChangeLog.txt
index bd49d11..24fb9b1 100644
--- a/Bundle-Data/Docs/ChangeLog.txt
+++ b/Bundle-Data/Docs/ChangeLog.txt
@@ -1,4 +1,4 @@
-Tor Browser 4.0-alpha-3 -- Sep 21 2014
+Tor Browser 4.0-alpha-3 -- Sep 24 2014
* All Platforms
* Update Tor to 0.2.5.7-rc
* Update meek to 0.11
@@ -10,6 +10,7 @@ Tor Browser 4.0-alpha-3 -- Sep 21 2014
* Bug 13047: Updater should not send Kernel and GTK version
* Linux:
* Bug 9150: Make RPATH unavailable on Tor binary.
+ * Bug 13031: Add full RELRO protection.
Tor Browser Bundle 4.0-alpha-2 -- Sep 2 2014
* All Platforms
1
0