tbb-commits
Threads by month
- ----- 2026 -----
- 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
- 20078 discussions
[torbutton/master] Bug 10804: Relocate event queue draining inside control port call.
by mikeperry@torproject.org 23 Sep '14
by mikeperry@torproject.org 23 Sep '14
23 Sep '14
commit bc58adf6e2ba152cca0d92f5f828e3b8b2d06798
Author: Agent Smith <smith007(a)not.gov>
Date: Fri Sep 19 18:28:40 2014 +0200
Bug 10804: Relocate event queue draining inside control port call.
This patch relocates the event queue draining hack from bug #9531 from New
Identity to all control port commands. This should help address hangs at
startup due to HTTPS activity (and other usage of the control port while the
TLS stack is live).
---
src/chrome/content/torbutton.js | 25 +++++++++++++------------
1 file changed, 13 insertions(+), 12 deletions(-)
diff --git a/src/chrome/content/torbutton.js b/src/chrome/content/torbutton.js
index 4cd9c3d..9ded64b 100644
--- a/src/chrome/content/torbutton.js
+++ b/src/chrome/content/torbutton.js
@@ -1428,6 +1428,19 @@ function torbutton_array_to_hexdigits(array) {
// Executes a command on the control port.
// Return a string response upon success and null upon error.
function torbutton_send_ctrl_cmd(command) {
+
+ // We spin the event queue until it is empty and we can be sure that sending
+ // NEWNYM is not leading to a deadlock (see bug 9531 comment 23 for an
+ // invstigation on why and when this may happen). This is surrounded by
+ // suppressing/unsuppressing user initiated events in a window's document to
+ // be sure that these events are not interfering with processing events being
+ // in the event queue.
+ var thread = Cc["@mozilla.org/thread-manager;1"].
+ getService(Ci.nsIThreadManager).currentThread;
+ m_tb_domWindowUtils.suppressEventHandling(true);
+ while (thread.processNextEvent(false)) {}
+ m_tb_domWindowUtils.suppressEventHandling(false);
+
try {
var socketTransportService = Components.classes["@mozilla.org/network/socket-transport-service;1"]
.getService(Components.interfaces.nsISocketTransportService);
@@ -1700,18 +1713,6 @@ function torbutton_do_new_identity() {
getService(Ci.nsIPermissionManager);
pm.removeAll();
- // We spin the event queue until it is empty and we can be sure that sending
- // NEWNYM is not leading to a deadlock (see bug 9531 comment 23 for an
- // invstigation on why and when this may happen). This is surrounded by
- // suppressing/unsuppressing user initiated events in a window's document to
- // be sure that these events are not interfering with processing events being
- // in the event queue.
- var thread = Cc["@mozilla.org/thread-manager;1"].
- getService(Ci.nsIThreadManager).currentThread;
- m_tb_domWindowUtils.suppressEventHandling(true);
- while (thread.processNextEvent(false)) {}
- m_tb_domWindowUtils.suppressEventHandling(false);
-
torbutton_log(3, "New Identity: Sending NEWNYM");
// We only support TBB for newnym.
1
0
[tor-browser/tor-browser-24.8.0esr-3.x-1] fixup! TB4: Tor Browser's Firefox preference overrides.
by mikeperry@torproject.org 23 Sep '14
by mikeperry@torproject.org 23 Sep '14
23 Sep '14
commit 3c180c71ebadcea1e7913723f5404baba399d657
Author: Arthur Edelstein <arthuredelstein(a)gmail.com>
Date: Fri Aug 29 15:34:39 2014 -0700
fixup! TB4: Tor Browser's Firefox preference overrides.
(missing pref setting for "Bug #2949: Make Intermediate Cert Store memory-only")
---
browser/app/profile/000-tor-browser.js | 1 +
1 file changed, 1 insertion(+)
diff --git a/browser/app/profile/000-tor-browser.js b/browser/app/profile/000-tor-browser.js
index a58ce4a..93ed957 100644
--- a/browser/app/profile/000-tor-browser.js
+++ b/browser/app/profile/000-tor-browser.js
@@ -19,6 +19,7 @@ pref("dom.indexedDB.enabled", false);
pref("permissions.memory_only", true);
pref("network.cookie.lifetimePolicy", 2);
pref("browser.download.manager.retention", 1);
+pref("security.nocertdb", true);
// Disk activity: TBB Directory Isolation
pref("browser.download.useDownloadDir", false);
1
0
[tor-browser/tor-browser-24.8.0esr-4.x-1] fixup! TB4: Tor Browser's Firefox preference overrides.
by mikeperry@torproject.org 23 Sep '14
by mikeperry@torproject.org 23 Sep '14
23 Sep '14
commit 86e814b7e3693a7e3a5f3339683208d9e7fcabeb
Author: Arthur Edelstein <arthuredelstein(a)gmail.com>
Date: Fri Aug 29 15:34:39 2014 -0700
fixup! TB4: Tor Browser's Firefox preference overrides.
(missing pref setting for "Bug #2949: Make Intermediate Cert Store memory-only")
---
browser/app/profile/000-tor-browser.js | 1 +
1 file changed, 1 insertion(+)
diff --git a/browser/app/profile/000-tor-browser.js b/browser/app/profile/000-tor-browser.js
index c557d98..8635015 100644
--- a/browser/app/profile/000-tor-browser.js
+++ b/browser/app/profile/000-tor-browser.js
@@ -18,6 +18,7 @@ pref("dom.indexedDB.enabled", false);
pref("permissions.memory_only", true);
pref("network.cookie.lifetimePolicy", 2);
pref("browser.download.manager.retention", 1);
+pref("security.nocertdb", true);
// Disk activity: TBB Directory Isolation
pref("browser.download.useDownloadDir", false);
1
0
[tor-browser/tor-browser-24.8.0esr-4.x-1] Merge remote-tracking branch 'brade/bug13047-03' 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 b0cd4e20527b9c1fc603ab1b18a5f36ffc3f726f
Merge: 4424293 e4eca47
Author: Mike Perry <mikeperry-git(a)torproject.org>
Date: Mon Sep 22 20:19:28 2014 -0700
Merge remote-tracking branch 'brade/bug13047-03' into tor-browser-24.8.0esr-4.x-1
browser/app/profile/firefox.js | 2 +-
toolkit/mozapps/update/nsUpdateService.js | 16 ++++++++++++----
2 files changed, 13 insertions(+), 5 deletions(-)
1
0
[tor-browser/tor-browser-24.8.0esr-4.x-1] 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 b269bb036db77aef26bef86d947006c27992b683
Author: Kathy Brade <brade(a)pearlcrescent.com>
Date: Tue Sep 9 11:52:08 2014 -0400
Bug 13091: Use "Tor Browser" everywhere (space included)
Changed MOZ_APP_DISPLAYNAME and brandShortName from "TorBrowser" to
"Tor Browser".
---
.mozconfig | 2 +-
.mozconfig-asan | 2 +-
.mozconfig-mac | 2 +-
.mozconfig-mingw | 2 +-
browser/branding/official/configure.sh | 2 +-
browser/branding/official/locales/en-US/brand.dtd | 2 +-
browser/branding/official/locales/en-US/brand.properties | 2 +-
7 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/.mozconfig b/.mozconfig
index 97e0349..f0c5510 100755
--- a/.mozconfig
+++ b/.mozconfig
@@ -1,7 +1,7 @@
. $topsrcdir/browser/config/mozconfig
mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/obj-@CONFIG_GUESS@
-mk_add_options MOZ_APP_DISPLAYNAME=TorBrowser
+mk_add_options MOZ_APP_DISPLAYNAME="Tor Browser"
mk_add_options MOZ_MAKE_FLAGS="-j4"
mk_add_options MOZILLA_OFFICIAL=1
mk_add_options BUILD_OFFICIAL=1
diff --git a/.mozconfig-asan b/.mozconfig-asan
index 32e3096..ffbde72 100644
--- a/.mozconfig-asan
+++ b/.mozconfig-asan
@@ -10,7 +10,7 @@ export CXXFLAGS="-fsanitize=address -Dxmalloc=myxmalloc -fsanitize=undefined -st
export LDFLAGS="-fsanitize=address -fsanitize=undefined"
mk_add_option sMOZ_OBJDIR=@TOPSRCDIR@/obj-@CONFIG_GUESS@
-mk_add_options MOZ_APP_DISPLAYNAME=TorBrowser
+mk_add_options MOZ_APP_DISPLAYNAME="Tor Browser"
mk_add_options MOZ_MAKE_FLAGS="-j4"
mk_add_options MOZILLA_OFFICIAL=1
mk_add_options BUILD_OFFICIAL=1
diff --git a/.mozconfig-mac b/.mozconfig-mac
index 7f28096..01ed601 100644
--- a/.mozconfig-mac
+++ b/.mozconfig-mac
@@ -25,7 +25,7 @@ LD=$ROOTDIR/x86_64-apple-darwin10-ld
STRIP=$ROOTDIR/x86_64-apple-darwin10-strip
mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/obj-macos
-mk_add_options MOZ_APP_DISPLAYNAME=TorBrowser
+mk_add_options MOZ_APP_DISPLAYNAME="Tor Browser"
mk_add_options MOZILLA_OFFICIAL=1
mk_add_options BUILD_OFFICIAL=1
diff --git a/.mozconfig-mingw b/.mozconfig-mingw
index 9c8695d..f3fc080 100644
--- a/.mozconfig-mingw
+++ b/.mozconfig-mingw
@@ -5,7 +5,7 @@ ac_add_options --enable-application=browser
ac_add_options --target=i686-w64-mingw32
ac_add_options --enable-default-toolkit=cairo-windows
mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/obj-mingw
-mk_add_options MOZ_APP_DISPLAYNAME=TorBrowser
+mk_add_options MOZ_APP_DISPLAYNAME="Tor Browser"
mk_add_options MOZ_MAKE_FLAGS="-j4"
mk_add_options MOZILLA_OFFICIAL=1
mk_add_options BUILD_OFFICIAL=1
diff --git a/browser/branding/official/configure.sh b/browser/branding/official/configure.sh
index 33102b0..2b1b638 100644
--- a/browser/branding/official/configure.sh
+++ b/browser/branding/official/configure.sh
@@ -2,5 +2,5 @@
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
-MOZ_APP_DISPLAYNAME=TorBrowser
+MOZ_APP_DISPLAYNAME="Tor Browser"
MOZ_UA_BUILDID=20100101
diff --git a/browser/branding/official/locales/en-US/brand.dtd b/browser/branding/official/locales/en-US/brand.dtd
index 76e405d..59f665e 100644
--- a/browser/branding/official/locales/en-US/brand.dtd
+++ b/browser/branding/official/locales/en-US/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/browser/branding/official/locales/en-US/brand.properties b/browser/branding/official/locales/en-US/brand.properties
index 9ae168e..f63def3 100644
--- a/browser/branding/official/locales/en-US/brand.properties
+++ b/browser/branding/official/locales/en-US/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
[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