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

18 Oct '16
commit 2cef75462d4a7f640b4586c0cd50b6679b9fc7ae
Author: Arthur Edelstein <arthuredelstein(a)gmail.com>
Date: Mon Oct 17 14:21:36 2016 -0700
Bug 20388: Consolidate Services.prefs references
---
src/chrome/content/torbutton.js | 76 ++++++++++++++++-------------------------
1 file changed, 29 insertions(+), 47 deletions(-)
diff --git a/src/chrome/content/torbutton.js b/src/chrome/content/torbutton.js
index fa4009a..5b03ba0 100644
--- a/src/chrome/content/torbutton.js
+++ b/src/chrome/content/torbutton.js
@@ -18,9 +18,10 @@ const k_tb_tor_check_failed_topic = "Torbutton:TorCheckFailed";
const k_tb_tor_resize_warn_pref =
"extensions.torbutton.startup_resize_period"
+var m_tb_prefs = Services.prefs;
+
// status
var m_tb_wasinited = false;
-var m_tb_prefs = false;
var m_tb_plugin_string = false;
var m_tb_is_main_window = false;
var m_tb_hidden_browser = false;
@@ -50,16 +51,12 @@ var torbutton_window_pref_observer =
{
register: function()
{
- var pref_service = Components.classes["@mozilla.org/preferences-service;1"]
- .getService(Components.interfaces.nsIPrefBranchInternal);
- this._branch = pref_service.QueryInterface(Components.interfaces.nsIPrefBranchInternal);
- this._branch.addObserver("extensions.torbutton", this, false);
+ m_tb_prefs.addObserver("extensions.torbutton", this, false);
},
unregister: function()
{
- if (!this._branch) return;
- this._branch.removeObserver("extensions.torbutton", this);
+ m_tb_prefs.removeObserver("extensions.torbutton", this);
},
// topic: what event occurred
@@ -84,21 +81,18 @@ var torbutton_unique_pref_observer =
register: function()
{
this.forced_ua = false;
- var pref_service = Components.classes["@mozilla.org/preferences-service;1"]
- .getService(Components.interfaces.nsIPrefBranchInternal);
- this._branch = pref_service.QueryInterface(Components.interfaces.nsIPrefBranchInternal);
- this._branch.addObserver("extensions.torbutton", this, false);
- this._branch.addObserver("network.cookie", this, false);
- this._branch.addObserver("browser.privatebrowsing.autostart", this, false);
- this._branch.addObserver("javascript", this, false);
- this._branch.addObserver("gfx", this, false);
- this._branch.addObserver("noscript", this, false);
- this._branch.addObserver("media", this, false);
- this._branch.addObserver("mathml", this, false);
- this._branch.addObserver("svg", this, false);
- this._branch.addObserver("plugin.disable", this, false);
- this._branch.addObserver("privacy.thirdparty.isolate", this, false);
- this._branch.addObserver("privacy.resistFingerprinting", this, false);
+ m_tb_prefs.addObserver("extensions.torbutton", this, false);
+ m_tb_prefs.addObserver("network.cookie", this, false);
+ m_tb_prefs.addObserver("browser.privatebrowsing.autostart", this, false);
+ m_tb_prefs.addObserver("javascript", this, false);
+ m_tb_prefs.addObserver("gfx", this, false);
+ m_tb_prefs.addObserver("noscript", this, false);
+ m_tb_prefs.addObserver("media", this, false);
+ m_tb_prefs.addObserver("mathml", this, false);
+ m_tb_prefs.addObserver("svg", this, false);
+ m_tb_prefs.addObserver("plugin.disable", this, false);
+ m_tb_prefs.addObserver("privacy.thirdparty.isolate", this, false);
+ m_tb_prefs.addObserver("privacy.resistFingerprinting", this, false);
// We observe xpcom-category-entry-added for plugins w/ Gecko-Content-Viewers
var observerService = Cc["@mozilla.org/observer-service;1"].
@@ -108,16 +102,15 @@ var torbutton_unique_pref_observer =
unregister: function()
{
- if (!this._branch) return;
- this._branch.removeObserver("extensions.torbutton", this);
- this._branch.removeObserver("network.cookie", this);
- this._branch.removeObserver("browser.privatebrowsing.autostart", this);
- this._branch.removeObserver("javascript", this);
- this._branch.removeObserver("gfx", this);
- this._branch.removeObserver("noscript", this);
- this._branch.removeObserver("media", this);
- this._branch.removeObserver("mathml", this);
- this._branch.removeObserver("svg", this);
+ m_tb_prefs.removeObserver("extensions.torbutton", this);
+ m_tb_prefs.removeObserver("network.cookie", this);
+ m_tb_prefs.removeObserver("browser.privatebrowsing.autostart", this);
+ m_tb_prefs.removeObserver("javascript", this);
+ m_tb_prefs.removeObserver("gfx", this);
+ m_tb_prefs.removeObserver("noscript", this);
+ m_tb_prefs.removeObserver("media", this);
+ m_tb_prefs.removeObserver("mathml", this);
+ m_tb_prefs.removeObserver("svg", this);
var observerService = Cc["@mozilla.org/observer-service;1"].
getService(Ci.nsIObserverService);
@@ -281,9 +274,6 @@ function torbutton_init() {
}
m_tb_wasinited = true;
- m_tb_prefs = Components.classes["@mozilla.org/preferences-service;1"]
- .getService(Components.interfaces.nsIPrefBranch);
-
// Determine if we are running inside Tor Browser.
var cur_version;
try {
@@ -1342,9 +1332,7 @@ function torbutton_do_new_identity() {
torbutton_log(3, "New Identity: Syncing prefs");
// Force prefs to be synced to disk
- var prefService = Components.classes["@mozilla.org/preferences-service;1"]
- .getService(Components.interfaces.nsIPrefService);
- prefService.savePrefFile(null);
+ m_tb_prefs.savePrefFile(null);
torbutton_log(3, "New Identity: Clearing permissions");
@@ -1750,9 +1738,7 @@ function torbutton_update_disk_prefs() {
} catch (e) {}
// Force prefs to be synced to disk
- var prefService = Components.classes["@mozilla.org/preferences-service;1"]
- .getService(Components.interfaces.nsIPrefService);
- prefService.savePrefFile(null);
+ m_tb_prefs.savePrefFile(null);
}
function torbutton_update_fingerprinting_prefs() {
@@ -1797,9 +1783,7 @@ function torbutton_update_fingerprinting_prefs() {
// XXX: How do we undo timezone?
// Force prefs to be synced to disk
- var prefService = Components.classes["@mozilla.org/preferences-service;1"]
- .getService(Components.interfaces.nsIPrefService);
- prefService.savePrefFile(null);
+ m_tb_prefs.savePrefFile(null);
}
function torbutton_update_thirdparty_prefs() {
@@ -1815,9 +1799,7 @@ function torbutton_update_thirdparty_prefs() {
m_tb_prefs.setBoolPref("security.enable_tls_session_tickets", !isolate);
// Force prefs to be synced to disk
- var prefService = Components.classes["@mozilla.org/preferences-service;1"]
- .getService(Components.interfaces.nsIPrefService);
- prefService.savePrefFile(null);
+ m_tb_prefs.savePrefFile(null);
}
var torbutton_sec_ml_bool_prefs = {
1
0

[translation/torbutton-torbuttondtd] Update translations for torbutton-torbuttondtd
by translation@torproject.org 18 Oct '16
by translation@torproject.org 18 Oct '16
18 Oct '16
commit 8b437fcc0e6be6742960f61de526bc69aa803913
Author: Translation commit bot <translation(a)torproject.org>
Date: Tue Oct 18 08:47:42 2016 +0000
Update translations for torbutton-torbuttondtd
---
ach/torbutton.dtd | 1 -
ady/torbutton.dtd | 1 -
af/torbutton.dtd | 1 -
ak/torbutton.dtd | 1 -
am/torbutton.dtd | 1 -
ar/torbutton.dtd | 1 -
arn/torbutton.dtd | 1 -
ast/torbutton.dtd | 1 -
az/torbutton.dtd | 1 -
ba/torbutton.dtd | 1 -
be/torbutton.dtd | 1 -
bg/torbutton.dtd | 1 -
bn/torbutton.dtd | 1 -
bn_BD/torbutton.dtd | 1 -
bn_IN/torbutton.dtd | 1 -
bo/torbutton.dtd | 1 -
br/torbutton.dtd | 1 -
brx/torbutton.dtd | 1 -
bs/torbutton.dtd | 1 -
ca/torbutton.dtd | 1 -
ceb/torbutton.dtd | 1 -
cs/torbutton.dtd | 1 -
csb/torbutton.dtd | 1 -
cv/torbutton.dtd | 1 -
cy/torbutton.dtd | 1 -
da/torbutton.dtd | 1 -
de/torbutton.dtd | 1 -
dz/torbutton.dtd | 1 -
el/torbutton.dtd | 1 -
en/torbutton.dtd | 1 -
en_GB/torbutton.dtd | 1 -
eo/torbutton.dtd | 1 -
es/torbutton.dtd | 1 -
es_AR/torbutton.dtd | 1 -
es_CL/torbutton.dtd | 1 -
es_CO/torbutton.dtd | 1 -
es_MX/torbutton.dtd | 1 -
et/torbutton.dtd | 1 -
eu/torbutton.dtd | 1 -
fa/torbutton.dtd | 1 -
fi/torbutton.dtd | 1 -
fil/torbutton.dtd | 1 -
fo/torbutton.dtd | 1 -
fr/torbutton.dtd | 1 -
fr_CA/torbutton.dtd | 1 -
fur/torbutton.dtd | 1 -
fy/torbutton.dtd | 1 -
ga/torbutton.dtd | 1 -
gd/torbutton.dtd | 1 -
gl/torbutton.dtd | 1 -
gu/torbutton.dtd | 1 -
gu_IN/torbutton.dtd | 1 -
gun/torbutton.dtd | 1 -
ha/torbutton.dtd | 1 -
he/torbutton.dtd | 1 -
hi/torbutton.dtd | 1 -
hr/torbutton.dtd | 1 -
hr_HR/torbutton.dtd | 1 -
ht/torbutton.dtd | 1 -
hu/torbutton.dtd | 1 -
hy/torbutton.dtd | 1 -
ia/torbutton.dtd | 1 -
id/torbutton.dtd | 1 -
is/torbutton.dtd | 1 -
it/torbutton.dtd | 1 -
ja/torbutton.dtd | 1 -
jv/torbutton.dtd | 1 -
ka/torbutton.dtd | 1 -
kk/torbutton.dtd | 1 -
km/torbutton.dtd | 1 -
kn/torbutton.dtd | 1 -
ko/torbutton.dtd | 1 -
ko_KR/torbutton.dtd | 1 -
ku/torbutton.dtd | 1 -
ku_IQ/torbutton.dtd | 1 -
kw/torbutton.dtd | 1 -
ky/torbutton.dtd | 1 -
la/torbutton.dtd | 1 -
lb/torbutton.dtd | 1 -
lg/torbutton.dtd | 1 -
ln/torbutton.dtd | 1 -
lo/torbutton.dtd | 1 -
lt/torbutton.dtd | 1 -
lv/torbutton.dtd | 1 -
mg/torbutton.dtd | 1 -
mi/torbutton.dtd | 1 -
mk/torbutton.dtd | 1 -
ml/torbutton.dtd | 1 -
mn/torbutton.dtd | 1 -
mr/torbutton.dtd | 1 -
ms_MY/torbutton.dtd | 1 -
mt/torbutton.dtd | 1 -
my/torbutton.dtd | 1 -
nah/torbutton.dtd | 1 -
nap/torbutton.dtd | 1 -
nb/torbutton.dtd | 1 -
nds/torbutton.dtd | 1 -
ne/torbutton.dtd | 1 -
nl/torbutton.dtd | 1 -
nl_BE/torbutton.dtd | 1 -
nn/torbutton.dtd | 1 -
nso/torbutton.dtd | 1 -
oc/torbutton.dtd | 1 -
om/torbutton.dtd | 1 -
or/torbutton.dtd | 1 -
pa/torbutton.dtd | 1 -
pap/torbutton.dtd | 1 -
pl/torbutton.dtd | 1 -
pms/torbutton.dtd | 1 -
ps/torbutton.dtd | 1 -
pt/torbutton.dtd | 1 -
pt_BR/torbutton.dtd | 1 -
ro/torbutton.dtd | 1 -
ru/torbutton.dtd | 1 -
ru(a)petr1708/torbutton.dtd | 1 -
scn/torbutton.dtd | 1 -
sco/torbutton.dtd | 1 -
si_LK/torbutton.dtd | 1 -
sk/torbutton.dtd | 1 -
sk_SK/torbutton.dtd | 1 -
sl/torbutton.dtd | 1 -
sl_SI/torbutton.dtd | 1 -
sn/torbutton.dtd | 1 -
so/torbutton.dtd | 1 -
son/torbutton.dtd | 1 -
sq/torbutton.dtd | 1 -
sr/torbutton.dtd | 1 -
sr(a)latin/torbutton.dtd | 1 -
st/torbutton.dtd | 1 -
su/torbutton.dtd | 1 -
sv/torbutton.dtd | 1 -
sw/torbutton.dtd | 1 -
szl/torbutton.dtd | 1 -
ta/torbutton.dtd | 1 -
te/torbutton.dtd | 1 -
te_IN/torbutton.dtd | 1 -
tg/torbutton.dtd | 1 -
th/torbutton.dtd | 1 -
ti/torbutton.dtd | 1 -
tk/torbutton.dtd | 1 -
tr/torbutton.dtd | 1 -
tzm/torbutton.dtd | 1 -
ug(a)Arab/torbutton.dtd | 1 -
uk/torbutton.dtd | 1 -
ur/torbutton.dtd | 1 -
ur_PK/torbutton.dtd | 1 -
uz/torbutton.dtd | 1 -
ve/torbutton.dtd | 1 -
vi/torbutton.dtd | 1 -
wa/torbutton.dtd | 1 -
wo/torbutton.dtd | 1 -
zh_CN/torbutton.dtd | 1 -
zh_HK/torbutton.dtd | 1 -
zh_TW/torbutton.dtd | 1 -
zu/torbutton.dtd | 1 -
155 files changed, 155 deletions(-)
diff --git a/ach/torbutton.dtd b/ach/torbutton.dtd
index 0ea18e5..56f663e 100644
--- a/ach/torbutton.dtd
+++ b/ach/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/ady/torbutton.dtd b/ady/torbutton.dtd
index 0ea18e5..56f663e 100644
--- a/ady/torbutton.dtd
+++ b/ady/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/af/torbutton.dtd b/af/torbutton.dtd
index 0ea18e5..56f663e 100644
--- a/af/torbutton.dtd
+++ b/af/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/ak/torbutton.dtd b/ak/torbutton.dtd
index 0ea18e5..56f663e 100644
--- a/ak/torbutton.dtd
+++ b/ak/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/am/torbutton.dtd b/am/torbutton.dtd
index c42f328..e9cd279 100644
--- a/am/torbutton.dtd
+++ b/am/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Torbuttonን ለማስጀመር ጠቅ ያድርጉ">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "ነባሪዎችን ወደነበሩበት መልስ">
<!ENTITY torbutton.cookiedialog.title "የኩኪ ጥበቃዎችን አቀናብር">
<!ENTITY torbutton.cookiedialog.lockCol "የተጠበቀ">
<!ENTITY torbutton.cookiedialog.domainCol "አስተናጋጅ">
diff --git a/ar/torbutton.dtd b/ar/torbutton.dtd
index a250c28..28f7c39 100644
--- a/ar/torbutton.dtd
+++ b/ar/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "انقر لبدء زر تور">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "استعادة الافتراضيات">
<!ENTITY torbutton.cookiedialog.title "إدارة إعدادت الحماية لملفات تعريف الارتباط">
<!ENTITY torbutton.cookiedialog.lockCol "محمية">
<!ENTITY torbutton.cookiedialog.domainCol "استضافة">
diff --git a/arn/torbutton.dtd b/arn/torbutton.dtd
index 0ea18e5..56f663e 100644
--- a/arn/torbutton.dtd
+++ b/arn/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/ast/torbutton.dtd b/ast/torbutton.dtd
index 0ea18e5..56f663e 100644
--- a/ast/torbutton.dtd
+++ b/ast/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/az/torbutton.dtd b/az/torbutton.dtd
index d55690c..662744c 100644
--- a/az/torbutton.dtd
+++ b/az/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Tordüyməsini başlatmaq üçün klikləyin">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Varsayılanları yenidən yüklə">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/ba/torbutton.dtd b/ba/torbutton.dtd
index 0ea18e5..56f663e 100644
--- a/ba/torbutton.dtd
+++ b/ba/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/be/torbutton.dtd b/be/torbutton.dtd
index 1da9bab..25574ee 100644
--- a/be/torbutton.dtd
+++ b/be/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/bg/torbutton.dtd b/bg/torbutton.dtd
index 651e99c..bac89a1 100644
--- a/bg/torbutton.dtd
+++ b/bg/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Натисни за инициализиране на Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Възстанови стандартните">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Защитен">
<!ENTITY torbutton.cookiedialog.domainCol "Хост">
diff --git a/bn/torbutton.dtd b/bn/torbutton.dtd
index 0ea18e5..56f663e 100644
--- a/bn/torbutton.dtd
+++ b/bn/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/bn_BD/torbutton.dtd b/bn_BD/torbutton.dtd
index 0ea18e5..56f663e 100644
--- a/bn_BD/torbutton.dtd
+++ b/bn_BD/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/bn_IN/torbutton.dtd b/bn_IN/torbutton.dtd
index 0ea18e5..56f663e 100644
--- a/bn_IN/torbutton.dtd
+++ b/bn_IN/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/bo/torbutton.dtd b/bo/torbutton.dtd
index 0ea18e5..56f663e 100644
--- a/bo/torbutton.dtd
+++ b/bo/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/br/torbutton.dtd b/br/torbutton.dtd
index 0ea18e5..56f663e 100644
--- a/br/torbutton.dtd
+++ b/br/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/brx/torbutton.dtd b/brx/torbutton.dtd
index 0ea18e5..56f663e 100644
--- a/brx/torbutton.dtd
+++ b/brx/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/bs/torbutton.dtd b/bs/torbutton.dtd
index 01b5f97..26f5b4f 100644
--- a/bs/torbutton.dtd
+++ b/bs/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Klikni za pokretanje Torbutton-a">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Vrati početno">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/ca/torbutton.dtd b/ca/torbutton.dtd
index 0ef0cbb..297c741 100644
--- a/ca/torbutton.dtd
+++ b/ca/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Feu clic per a iniciar Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Reestableix predeterminats">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/ceb/torbutton.dtd b/ceb/torbutton.dtd
index 0ea18e5..56f663e 100644
--- a/ceb/torbutton.dtd
+++ b/ceb/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/cs/torbutton.dtd b/cs/torbutton.dtd
index f0ea8e0..c8a1a7a 100644
--- a/cs/torbutton.dtd
+++ b/cs/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Klikněte pro inicializaci Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Původní nastavení">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/csb/torbutton.dtd b/csb/torbutton.dtd
index 0ea18e5..56f663e 100644
--- a/csb/torbutton.dtd
+++ b/csb/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/cv/torbutton.dtd b/cv/torbutton.dtd
index 0ea18e5..56f663e 100644
--- a/cv/torbutton.dtd
+++ b/cv/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/cy/torbutton.dtd b/cy/torbutton.dtd
index c010b55..9c2240d 100644
--- a/cy/torbutton.dtd
+++ b/cy/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Cliciwch i ymgychwyn Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/da/torbutton.dtd b/da/torbutton.dtd
index 89a94db..85e793f 100644
--- a/da/torbutton.dtd
+++ b/da/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Klik for at starte Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Gendan Standarder">
<!ENTITY torbutton.cookiedialog.title "Håndtér Cookie-beskyttelser">
<!ENTITY torbutton.cookiedialog.lockCol "Beskyttet">
<!ENTITY torbutton.cookiedialog.domainCol "Vært">
diff --git a/de/torbutton.dtd b/de/torbutton.dtd
index df8746b..fa7d8c8 100644
--- a/de/torbutton.dtd
+++ b/de/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Klicken, um Torbutton zu aktivieren">
<!ENTITY torbutton.prefs.security_settings "Sicherheitseinstellungen">
-<!ENTITY torbutton.prefs.restore_defaults "Vorgabeeinstellungen wiederherstellen">
<!ENTITY torbutton.cookiedialog.title "Cookie-Schutz verwalten">
<!ENTITY torbutton.cookiedialog.lockCol "Geschützt">
<!ENTITY torbutton.cookiedialog.domainCol "Rechner">
diff --git a/dz/torbutton.dtd b/dz/torbutton.dtd
index 0ea18e5..56f663e 100644
--- a/dz/torbutton.dtd
+++ b/dz/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/el/torbutton.dtd b/el/torbutton.dtd
index 6cdc4ab..df65692 100644
--- a/el/torbutton.dtd
+++ b/el/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Κάντε κλικ για να εκκίνηση του Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Αποκατάσταση αρχικών ρυθμίσεων">
<!ENTITY torbutton.cookiedialog.title "Διαχείριση Προστασίας Cookie">
<!ENTITY torbutton.cookiedialog.lockCol "Προστατευμένα">
<!ENTITY torbutton.cookiedialog.domainCol "Οικοδεσπότης">
diff --git a/en/torbutton.dtd b/en/torbutton.dtd
index 0ea18e5..56f663e 100644
--- a/en/torbutton.dtd
+++ b/en/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/en_GB/torbutton.dtd b/en_GB/torbutton.dtd
index 54e950b..8dfe8a7 100644
--- a/en_GB/torbutton.dtd
+++ b/en_GB/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/eo/torbutton.dtd b/eo/torbutton.dtd
index b35a43d..d1ec899 100644
--- a/eo/torbutton.dtd
+++ b/eo/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restaŭri defaŭltojn">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/es/torbutton.dtd b/es/torbutton.dtd
index 8ba953c..d8ecdd1 100644
--- a/es/torbutton.dtd
+++ b/es/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Haga clic para inicializar Torbutton">
<!ENTITY torbutton.prefs.security_settings "Configuración de seguridad">
-<!ENTITY torbutton.prefs.restore_defaults "Restablecer valores predeterminados ">
<!ENTITY torbutton.cookiedialog.title "Administrar protecciones de cookie">
<!ENTITY torbutton.cookiedialog.lockCol "Protegidas">
<!ENTITY torbutton.cookiedialog.domainCol "Servidor (host)">
diff --git a/es_AR/torbutton.dtd b/es_AR/torbutton.dtd
index 4ed698c..4017ca9 100644
--- a/es_AR/torbutton.dtd
+++ b/es_AR/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Clic para iniciar Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restablecer valores por defecto">
<!ENTITY torbutton.cookiedialog.title "Manejar la Protección de cookies">
<!ENTITY torbutton.cookiedialog.lockCol "Protegido">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/es_CL/torbutton.dtd b/es_CL/torbutton.dtd
index 0ea18e5..56f663e 100644
--- a/es_CL/torbutton.dtd
+++ b/es_CL/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/es_CO/torbutton.dtd b/es_CO/torbutton.dtd
index 0ea18e5..56f663e 100644
--- a/es_CO/torbutton.dtd
+++ b/es_CO/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/es_MX/torbutton.dtd b/es_MX/torbutton.dtd
index f53c118..86a1f08 100644
--- a/es_MX/torbutton.dtd
+++ b/es_MX/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restaurar valores predeterminados">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/et/torbutton.dtd b/et/torbutton.dtd
index 308e17a..907afa6 100644
--- a/et/torbutton.dtd
+++ b/et/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/eu/torbutton.dtd b/eu/torbutton.dtd
index de814d5..00a30ea 100644
--- a/eu/torbutton.dtd
+++ b/eu/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Sakatu Torbutton abiarazteko">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Lehenetsiak berrezarri">
<!ENTITY torbutton.cookiedialog.title "Cookie Babesak kudeatu">
<!ENTITY torbutton.cookiedialog.lockCol "Babestuta">
<!ENTITY torbutton.cookiedialog.domainCol "Ostalaria">
diff --git a/fa/torbutton.dtd b/fa/torbutton.dtd
index 3dd1693..953121d 100644
--- a/fa/torbutton.dtd
+++ b/fa/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "جهت شروع دكمه تُرکليک کنيد">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "بازگرداندن تنظیمات به حالت پیشفرض">
<!ENTITY torbutton.cookiedialog.title "مديريت حفاظت کلوچکها">
<!ENTITY torbutton.cookiedialog.lockCol "حفاظت شده">
<!ENTITY torbutton.cookiedialog.domainCol "ميزبان">
diff --git a/fi/torbutton.dtd b/fi/torbutton.dtd
index 3cb7248..14c704b 100644
--- a/fi/torbutton.dtd
+++ b/fi/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "E">
<!ENTITY torbutton.button.tooltip "Napsauta Torbutton-painikkeen alustamiseksi">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Palauta oletukset">
<!ENTITY torbutton.cookiedialog.title "Hallitse evästeiden suojauksia">
<!ENTITY torbutton.cookiedialog.lockCol "Suojattu">
<!ENTITY torbutton.cookiedialog.domainCol "Palvelin">
diff --git a/fil/torbutton.dtd b/fil/torbutton.dtd
index 84dbef7..8493a55 100644
--- a/fil/torbutton.dtd
+++ b/fil/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/fo/torbutton.dtd b/fo/torbutton.dtd
index a7c3c5f..f8f4b4b 100644
--- a/fo/torbutton.dtd
+++ b/fo/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Trýst fyri at lesa Torknøttin inn">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Nullstilla ">
<!ENTITY torbutton.cookiedialog.title "Skipa cookie-vernd">
<!ENTITY torbutton.cookiedialog.lockCol "Vard/ur">
<!ENTITY torbutton.cookiedialog.domainCol "Vertur">
diff --git a/fr/torbutton.dtd b/fr/torbutton.dtd
index 6c04abb..8986133 100644
--- a/fr/torbutton.dtd
+++ b/fr/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Cliquez pour lancer Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Valeurs par défaut">
<!ENTITY torbutton.cookiedialog.title "Gérer les protections de cookies">
<!ENTITY torbutton.cookiedialog.lockCol "Protégé">
<!ENTITY torbutton.cookiedialog.domainCol "Hôte">
diff --git a/fr_CA/torbutton.dtd b/fr_CA/torbutton.dtd
index c8524ff..0ffbeae 100644
--- a/fr_CA/torbutton.dtd
+++ b/fr_CA/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "T">
<!ENTITY torbutton.button.tooltip "Cliquer pour lancer BoutonTor">
<!ENTITY torbutton.prefs.security_settings "Paramètres de sécurité">
-<!ENTITY torbutton.prefs.restore_defaults "Valeurs par défaut">
<!ENTITY torbutton.cookiedialog.title "Gérer les protections des témoins">
<!ENTITY torbutton.cookiedialog.lockCol "Protégé">
<!ENTITY torbutton.cookiedialog.domainCol "Hôte">
diff --git a/fur/torbutton.dtd b/fur/torbutton.dtd
index 0ea18e5..56f663e 100644
--- a/fur/torbutton.dtd
+++ b/fur/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/fy/torbutton.dtd b/fy/torbutton.dtd
index 7918b43..45e51b1 100644
--- a/fy/torbutton.dtd
+++ b/fy/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/ga/torbutton.dtd b/ga/torbutton.dtd
index e8d29a9..6094c00 100644
--- a/ga/torbutton.dtd
+++ b/ga/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/gd/torbutton.dtd b/gd/torbutton.dtd
index 0ea18e5..56f663e 100644
--- a/gd/torbutton.dtd
+++ b/gd/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/gl/torbutton.dtd b/gl/torbutton.dtd
index 546953a..0edecb9 100644
--- a/gl/torbutton.dtd
+++ b/gl/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restabelecer valores predeterminados">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/gu/torbutton.dtd b/gu/torbutton.dtd
index 250e0d1..e4771fc 100644
--- a/gu/torbutton.dtd
+++ b/gu/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "ટોરબટન શરુ કરવા ક્લિક કરો">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "મૂળભૂત પાછું લાવો">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/gu_IN/torbutton.dtd b/gu_IN/torbutton.dtd
index c380605..ea4890f 100644
--- a/gu_IN/torbutton.dtd
+++ b/gu_IN/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/gun/torbutton.dtd b/gun/torbutton.dtd
index 0ea18e5..56f663e 100644
--- a/gun/torbutton.dtd
+++ b/gun/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/ha/torbutton.dtd b/ha/torbutton.dtd
index 0ea18e5..56f663e 100644
--- a/ha/torbutton.dtd
+++ b/ha/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/he/torbutton.dtd b/he/torbutton.dtd
index 3e2ef07..f4b9f01 100644
--- a/he/torbutton.dtd
+++ b/he/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "לחץ בכדי לאתחל את Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "חזרה לברירת מחדל">
<!ENTITY torbutton.cookiedialog.title "נהל הגנות קוקיז">
<!ENTITY torbutton.cookiedialog.lockCol "מוגן">
<!ENTITY torbutton.cookiedialog.domainCol "מארח">
diff --git a/hi/torbutton.dtd b/hi/torbutton.dtd
index a6c9daa..3907671 100644
--- a/hi/torbutton.dtd
+++ b/hi/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "टोर बटन को आरंभित करने के लिये क्लिक करे">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/hr/torbutton.dtd b/hr/torbutton.dtd
index c24949f..801acb8 100644
--- a/hr/torbutton.dtd
+++ b/hr/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "Z">
<!ENTITY torbutton.button.tooltip "Kliknite za pokretanje Torbuttona">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/hr_HR/torbutton.dtd b/hr_HR/torbutton.dtd
index 972499a..e6d2845 100644
--- a/hr_HR/torbutton.dtd
+++ b/hr_HR/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Klikni za pokretanje Torbuttona">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Vrati zadano">
<!ENTITY torbutton.cookiedialog.title "Upravljaj zaštitom kolačića">
<!ENTITY torbutton.cookiedialog.lockCol "Zaštićeno">
<!ENTITY torbutton.cookiedialog.domainCol "Domaćin">
diff --git a/ht/torbutton.dtd b/ht/torbutton.dtd
index 0ea18e5..56f663e 100644
--- a/ht/torbutton.dtd
+++ b/ht/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/hu/torbutton.dtd b/hu/torbutton.dtd
index cc72305..05b2430 100644
--- a/hu/torbutton.dtd
+++ b/hu/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "S">
<!ENTITY torbutton.button.tooltip "Kattintson a Torbutton inicializálásához">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Alapértékek visszaállítása">
<!ENTITY torbutton.cookiedialog.title "Süti védelem kezelése">
<!ENTITY torbutton.cookiedialog.lockCol "Védett">
<!ENTITY torbutton.cookiedialog.domainCol "Állomás">
diff --git a/hy/torbutton.dtd b/hy/torbutton.dtd
index 5f79c4a..99dc6db 100644
--- a/hy/torbutton.dtd
+++ b/hy/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/ia/torbutton.dtd b/ia/torbutton.dtd
index 988d08b..41229d3 100644
--- a/ia/torbutton.dtd
+++ b/ia/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/id/torbutton.dtd b/id/torbutton.dtd
index d8fc7b0..6042a71 100644
--- a/id/torbutton.dtd
+++ b/id/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Klik untuk mengaktifkan TombolTor">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Kembalikan ke asal">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/is/torbutton.dtd b/is/torbutton.dtd
index e01c469..e25ec3b 100644
--- a/is/torbutton.dtd
+++ b/is/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Smelltu til að kveikja á Tor-hnapp">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Frumstilla á sjálfgefið">
<!ENTITY torbutton.cookiedialog.title "Sýsla með varnir á smákökum">
<!ENTITY torbutton.cookiedialog.lockCol "Varið">
<!ENTITY torbutton.cookiedialog.domainCol "Hýsill">
diff --git a/it/torbutton.dtd b/it/torbutton.dtd
index b79f811..09e084c 100644
--- a/it/torbutton.dtd
+++ b/it/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Fai clic per inizializzare Torbutton">
<!ENTITY torbutton.prefs.security_settings "Impostazioni di sicurezza">
-<!ENTITY torbutton.prefs.restore_defaults "Reimposta i valori di default">
<!ENTITY torbutton.cookiedialog.title "Gestisci protezione Cookies">
<!ENTITY torbutton.cookiedialog.lockCol "Protetto">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/ja/torbutton.dtd b/ja/torbutton.dtd
index 9fcffa9..ddce18c 100644
--- a/ja/torbutton.dtd
+++ b/ja/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Torbuttonを初期状態に戻す">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "デフォルト設定に戻す">
<!ENTITY torbutton.cookiedialog.title "Cookie保護を管理">
<!ENTITY torbutton.cookiedialog.lockCol "保護済み">
<!ENTITY torbutton.cookiedialog.domainCol "ホスト">
diff --git a/jv/torbutton.dtd b/jv/torbutton.dtd
index 0ea18e5..56f663e 100644
--- a/jv/torbutton.dtd
+++ b/jv/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/ka/torbutton.dtd b/ka/torbutton.dtd
index 0ea18e5..56f663e 100644
--- a/ka/torbutton.dtd
+++ b/ka/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/kk/torbutton.dtd b/kk/torbutton.dtd
index 0ea18e5..56f663e 100644
--- a/kk/torbutton.dtd
+++ b/kk/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/km/torbutton.dtd b/km/torbutton.dtd
index 3fd2110..cc0c090 100644
--- a/km/torbutton.dtd
+++ b/km/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "ចុចដើម្បីចាប់ផ្ដើម Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "ស្ដារលំនាំដើម">
<!ENTITY torbutton.cookiedialog.title "គ្រប់គ្រងការការពារខូគី">
<!ENTITY torbutton.cookiedialog.lockCol "បានការពារ">
<!ENTITY torbutton.cookiedialog.domainCol "ម៉ាស៊ីន">
diff --git a/kn/torbutton.dtd b/kn/torbutton.dtd
index 1c137a6..c06d31a 100644
--- a/kn/torbutton.dtd
+++ b/kn/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/ko/torbutton.dtd b/ko/torbutton.dtd
index 2eb2e71..58b7277 100644
--- a/ko/torbutton.dtd
+++ b/ko/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Torbutton 설정 초기화">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "설정 초기화">
<!ENTITY torbutton.cookiedialog.title "쿠키 보호 관리">
<!ENTITY torbutton.cookiedialog.lockCol "보호됨">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/ko_KR/torbutton.dtd b/ko_KR/torbutton.dtd
index b197f36..d7e31af 100644
--- a/ko_KR/torbutton.dtd
+++ b/ko_KR/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Torbutton 설정 초기화">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "기본값으로 돌림">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/ku/torbutton.dtd b/ku/torbutton.dtd
index 0ea18e5..56f663e 100644
--- a/ku/torbutton.dtd
+++ b/ku/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/ku_IQ/torbutton.dtd b/ku_IQ/torbutton.dtd
index 7d93589..c9013ed 100644
--- a/ku_IQ/torbutton.dtd
+++ b/ku_IQ/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "خانەخوێ">
diff --git a/kw/torbutton.dtd b/kw/torbutton.dtd
index 0ea18e5..56f663e 100644
--- a/kw/torbutton.dtd
+++ b/kw/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/ky/torbutton.dtd b/ky/torbutton.dtd
index 754488f..36f4d4f 100644
--- a/ky/torbutton.dtd
+++ b/ky/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/la/torbutton.dtd b/la/torbutton.dtd
index 222b458..9dc30ac 100644
--- a/la/torbutton.dtd
+++ b/la/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Preme murem pro initio de Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Initia reponere">
<!ENTITY torbutton.cookiedialog.title "Protectiones verborum informationis mutare...">
<!ENTITY torbutton.cookiedialog.lockCol "Protectum">
<!ENTITY torbutton.cookiedialog.domainCol "Depositio">
diff --git a/lb/torbutton.dtd b/lb/torbutton.dtd
index 5f262b8..2310e58 100644
--- a/lb/torbutton.dtd
+++ b/lb/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Klickt fir den Torbutton ze aktivéieren">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/lg/torbutton.dtd b/lg/torbutton.dtd
index 0ea18e5..56f663e 100644
--- a/lg/torbutton.dtd
+++ b/lg/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/ln/torbutton.dtd b/ln/torbutton.dtd
index 0ea18e5..56f663e 100644
--- a/ln/torbutton.dtd
+++ b/ln/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/lo/torbutton.dtd b/lo/torbutton.dtd
index 91fb80d..a280ec9 100644
--- a/lo/torbutton.dtd
+++ b/lo/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/lt/torbutton.dtd b/lt/torbutton.dtd
index 46bf6df..a00948d 100644
--- a/lt/torbutton.dtd
+++ b/lt/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Spustelėkite, kad aktyvuotumėte Torbutton">
<!ENTITY torbutton.prefs.security_settings "Saugumo nustatymai">
-<!ENTITY torbutton.prefs.restore_defaults "Atstatyti numatytuosius">
<!ENTITY torbutton.cookiedialog.title "Tvarkyti slapukų apsaugas">
<!ENTITY torbutton.cookiedialog.lockCol "Apsaugotas">
<!ENTITY torbutton.cookiedialog.domainCol "Serveris">
diff --git a/lv/torbutton.dtd b/lv/torbutton.dtd
index 5b215b8..50f3016 100644
--- a/lv/torbutton.dtd
+++ b/lv/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Noklikšķināt, lai inicializētu Torbutton">
<!ENTITY torbutton.prefs.security_settings "Drošības iestatījumi">
-<!ENTITY torbutton.prefs.restore_defaults "Atjaunot noklusējuma vērtības">
<!ENTITY torbutton.cookiedialog.title "Pārvaldīt aizsardzību no sīkdatnēm">
<!ENTITY torbutton.cookiedialog.lockCol "Aizsargāts">
<!ENTITY torbutton.cookiedialog.domainCol "Viesotājs">
diff --git a/mg/torbutton.dtd b/mg/torbutton.dtd
index 0ea18e5..56f663e 100644
--- a/mg/torbutton.dtd
+++ b/mg/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/mi/torbutton.dtd b/mi/torbutton.dtd
index 0ea18e5..56f663e 100644
--- a/mi/torbutton.dtd
+++ b/mi/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/mk/torbutton.dtd b/mk/torbutton.dtd
index 1bae5e5..140f255 100644
--- a/mk/torbutton.dtd
+++ b/mk/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Кликнете за иницирање на Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Стандардни подесувања">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/ml/torbutton.dtd b/ml/torbutton.dtd
index 148b3d3..b2f0cb5 100644
--- a/ml/torbutton.dtd
+++ b/ml/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/mn/torbutton.dtd b/mn/torbutton.dtd
index 0ea18e5..56f663e 100644
--- a/mn/torbutton.dtd
+++ b/mn/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/mr/torbutton.dtd b/mr/torbutton.dtd
index 6b07c03..7fc6cfa 100644
--- a/mr/torbutton.dtd
+++ b/mr/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/ms_MY/torbutton.dtd b/ms_MY/torbutton.dtd
index 2c0ffd1..b3929ab 100644
--- a/ms_MY/torbutton.dtd
+++ b/ms_MY/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Klik untuk memulakan Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Kembalikan tetapan asal">
<!ENTITY torbutton.cookiedialog.title "Mengurus Perlindungan Cookie">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Hos">
diff --git a/mt/torbutton.dtd b/mt/torbutton.dtd
index 8388b70..b33f39c 100644
--- a/mt/torbutton.dtd
+++ b/mt/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protett">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/my/torbutton.dtd b/my/torbutton.dtd
index 8823a22..41d931a 100644
--- a/my/torbutton.dtd
+++ b/my/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Torbutton ကို အစပြုရန် နှိပ်ပါ။">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults " မူလအတိုင်း ပြန်ထားရန်">
<!ENTITY torbutton.cookiedialog.title "ကွတ်ကီး ကာကွယ်မှုများကို စီမံခန့်ခွဲရန်">
<!ENTITY torbutton.cookiedialog.lockCol "အကာအကွယ် လုပ်ထားသည်">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/nah/torbutton.dtd b/nah/torbutton.dtd
index 0ea18e5..56f663e 100644
--- a/nah/torbutton.dtd
+++ b/nah/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/nap/torbutton.dtd b/nap/torbutton.dtd
index 0ea18e5..56f663e 100644
--- a/nap/torbutton.dtd
+++ b/nap/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/nb/torbutton.dtd b/nb/torbutton.dtd
index 0cf43c1..2b3294b 100644
--- a/nb/torbutton.dtd
+++ b/nb/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Klikk for å igangsette Torbutton">
<!ENTITY torbutton.prefs.security_settings "Sikkerhetsinnstillinger">
-<!ENTITY torbutton.prefs.restore_defaults "Gjenopprett forvalg">
<!ENTITY torbutton.cookiedialog.title "Administrer beskyttelse av informasjonskapsler">
<!ENTITY torbutton.cookiedialog.lockCol "Beskyttet">
<!ENTITY torbutton.cookiedialog.domainCol "Vert">
diff --git a/nds/torbutton.dtd b/nds/torbutton.dtd
index 0ea18e5..56f663e 100644
--- a/nds/torbutton.dtd
+++ b/nds/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/ne/torbutton.dtd b/ne/torbutton.dtd
index 0ea18e5..56f663e 100644
--- a/ne/torbutton.dtd
+++ b/ne/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/nl/torbutton.dtd b/nl/torbutton.dtd
index 88a2b13..d9b5215 100644
--- a/nl/torbutton.dtd
+++ b/nl/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Klik hier om Torbutton te initialiseren">
<!ENTITY torbutton.prefs.security_settings "Beveiligingsinstellingen">
-<!ENTITY torbutton.prefs.restore_defaults "Standaardwaarden herstellen">
<!ENTITY torbutton.cookiedialog.title "Beheer cookiebeveiligingen">
<!ENTITY torbutton.cookiedialog.lockCol "Beveiligd">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/nl_BE/torbutton.dtd b/nl_BE/torbutton.dtd
index 7607ef0..2d29569 100644
--- a/nl_BE/torbutton.dtd
+++ b/nl_BE/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Standaardinstellingen Herstellen">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/nn/torbutton.dtd b/nn/torbutton.dtd
index 58bf444..0a727c2 100644
--- a/nn/torbutton.dtd
+++ b/nn/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/nso/torbutton.dtd b/nso/torbutton.dtd
index 0ea18e5..56f663e 100644
--- a/nso/torbutton.dtd
+++ b/nso/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/oc/torbutton.dtd b/oc/torbutton.dtd
index 0ea18e5..56f663e 100644
--- a/oc/torbutton.dtd
+++ b/oc/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/om/torbutton.dtd b/om/torbutton.dtd
index 0ea18e5..56f663e 100644
--- a/om/torbutton.dtd
+++ b/om/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/or/torbutton.dtd b/or/torbutton.dtd
index 0ea18e5..56f663e 100644
--- a/or/torbutton.dtd
+++ b/or/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/pa/torbutton.dtd b/pa/torbutton.dtd
index ab1990c..3781a94 100644
--- a/pa/torbutton.dtd
+++ b/pa/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "ਟੋਰਬਟਨ ਸ਼ੁਰੂ ਕਰਨ ਲਈ ਕਲਿੱਕ ਕਰੋ">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "ਮੂਲ ਮੁੜ-ਸਟੋਰ ਕਰੋ">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/pap/torbutton.dtd b/pap/torbutton.dtd
index 0ea18e5..56f663e 100644
--- a/pap/torbutton.dtd
+++ b/pap/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/pl/torbutton.dtd b/pl/torbutton.dtd
index e2f0731..b22e4c3 100644
--- a/pl/torbutton.dtd
+++ b/pl/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "c">
<!ENTITY torbutton.button.tooltip "Kliknij tutaj, aby uruchomić Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Ustawienia domyślne">
<!ENTITY torbutton.cookiedialog.title "Zarządzaj ochroną ciasteczek">
<!ENTITY torbutton.cookiedialog.lockCol "Chronione">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/pms/torbutton.dtd b/pms/torbutton.dtd
index 0ea18e5..56f663e 100644
--- a/pms/torbutton.dtd
+++ b/pms/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/ps/torbutton.dtd b/ps/torbutton.dtd
index 0ea18e5..56f663e 100644
--- a/ps/torbutton.dtd
+++ b/ps/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/pt/torbutton.dtd b/pt/torbutton.dtd
index c34459d..e971499 100644
--- a/pt/torbutton.dtd
+++ b/pt/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Clique para inicializar o Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restaurar Predefinições">
<!ENTITY torbutton.cookiedialog.title "Gerir Proteções dos Cookies">
<!ENTITY torbutton.cookiedialog.lockCol "Protegido">
<!ENTITY torbutton.cookiedialog.domainCol "Hospedeiro">
diff --git a/pt_BR/torbutton.dtd b/pt_BR/torbutton.dtd
index 3c596d7..2278a1f 100644
--- a/pt_BR/torbutton.dtd
+++ b/pt_BR/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Clique para iniciar o Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restaurar padrões">
<!ENTITY torbutton.cookiedialog.title "Gerenciar Proteções de Cookies">
<!ENTITY torbutton.cookiedialog.lockCol "Protegido">
<!ENTITY torbutton.cookiedialog.domainCol "Hospedeiro">
diff --git a/ro/torbutton.dtd b/ro/torbutton.dtd
index b86a0b4..7343b05 100644
--- a/ro/torbutton.dtd
+++ b/ro/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Apasă pentru pornirea Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restaurează setările implicite">
<!ENTITY torbutton.cookiedialog.title "Gestionează Protecţii Cookie">
<!ENTITY torbutton.cookiedialog.lockCol "Protejat">
<!ENTITY torbutton.cookiedialog.domainCol "Gazda">
diff --git a/ru/torbutton.dtd b/ru/torbutton.dtd
index 2c76a91..117afc5 100644
--- a/ru/torbutton.dtd
+++ b/ru/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Нажмите, чтобы инициализировать Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Восстановить значения по умолчанию">
<!ENTITY torbutton.cookiedialog.title "Управление защитой куки-файлов">
<!ENTITY torbutton.cookiedialog.lockCol "Защищено">
<!ENTITY torbutton.cookiedialog.domainCol "Ведущий узел">
diff --git a/ru(a)petr1708/torbutton.dtd b/ru(a)petr1708/torbutton.dtd
index 5169e8e..eb597c0 100644
--- a/ru(a)petr1708/torbutton.dtd
+++ b/ru(a)petr1708/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Иниціализировать Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Возстановить значенія по умолчанію">
<!ENTITY torbutton.cookiedialog.title "Управленіе защитой Cookie">
<!ENTITY torbutton.cookiedialog.lockCol "Защищено">
<!ENTITY torbutton.cookiedialog.domainCol "Имя компьютера">
diff --git a/scn/torbutton.dtd b/scn/torbutton.dtd
index 0ea18e5..56f663e 100644
--- a/scn/torbutton.dtd
+++ b/scn/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/sco/torbutton.dtd b/sco/torbutton.dtd
index 6234a63..5490904 100644
--- a/sco/torbutton.dtd
+++ b/sco/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Clap tae ineetialise Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defauts">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Fendins">
<!ENTITY torbutton.cookiedialog.lockCol "Fendit">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/si_LK/torbutton.dtd b/si_LK/torbutton.dtd
index f07ce17..94aa5c2 100644
--- a/si_LK/torbutton.dtd
+++ b/si_LK/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Torbutton මුලපිරීමට ක්ලික් කරන්න">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "පෙරනිමි දේ ප්රතිස්ථාපනය කරන්න ">
<!ENTITY torbutton.cookiedialog.title "කුකී ආරක්ෂණ කළමනාකරණය කරන්න">
<!ENTITY torbutton.cookiedialog.lockCol "ආරක්ෂිත">
<!ENTITY torbutton.cookiedialog.domainCol "සත්කාරක">
diff --git a/sk/torbutton.dtd b/sk/torbutton.dtd
index 812add6..3964b19 100644
--- a/sk/torbutton.dtd
+++ b/sk/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Obnoviť predvolené">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/sk_SK/torbutton.dtd b/sk_SK/torbutton.dtd
index ecb980d..8052cf6 100644
--- a/sk_SK/torbutton.dtd
+++ b/sk_SK/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Kliknutím zaveďte Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Obnoviť pôvodné">
<!ENTITY torbutton.cookiedialog.title "Spravovať Ochranu cookies">
<!ENTITY torbutton.cookiedialog.lockCol "Chránené">
<!ENTITY torbutton.cookiedialog.domainCol "Hostiteľ">
diff --git a/sl/torbutton.dtd b/sl/torbutton.dtd
index d1412d1..4ae8f5c 100644
--- a/sl/torbutton.dtd
+++ b/sl/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Klikni za inicializiranje razširitve Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Privzete nastavitve">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/sl_SI/torbutton.dtd b/sl_SI/torbutton.dtd
index abadc4a..f6decd3 100644
--- a/sl_SI/torbutton.dtd
+++ b/sl_SI/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Klik za začetek Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Obnovi privzeto">
<!ENTITY torbutton.cookiedialog.title "Upravljaj zaščito piškotkov">
<!ENTITY torbutton.cookiedialog.lockCol "Zaščiteno">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/sn/torbutton.dtd b/sn/torbutton.dtd
index 0ea18e5..56f663e 100644
--- a/sn/torbutton.dtd
+++ b/sn/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/so/torbutton.dtd b/so/torbutton.dtd
index 0ea18e5..56f663e 100644
--- a/so/torbutton.dtd
+++ b/so/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/son/torbutton.dtd b/son/torbutton.dtd
index 0ea18e5..56f663e 100644
--- a/son/torbutton.dtd
+++ b/son/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/sq/torbutton.dtd b/sq/torbutton.dtd
index 69c7def..64f3e47 100644
--- a/sq/torbutton.dtd
+++ b/sq/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Klikoni që ta nisni Torbutton-in">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Rivendoseni Parazgjedhjen">
<!ENTITY torbutton.cookiedialog.title "Administroni Mbrojtjen e Cookie-ve">
<!ENTITY torbutton.cookiedialog.lockCol "I mbrojtur">
<!ENTITY torbutton.cookiedialog.domainCol "Pritësi">
diff --git a/sr/torbutton.dtd b/sr/torbutton.dtd
index d146315..4b4d3cb 100644
--- a/sr/torbutton.dtd
+++ b/sr/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "Ц">
<!ENTITY torbutton.button.tooltip "Кликните да бисте покренули Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Поврати подразумевано">
<!ENTITY torbutton.cookiedialog.title "Уреди заштиту колачића">
<!ENTITY torbutton.cookiedialog.lockCol "Заштићен">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/sr(a)latin/torbutton.dtd b/sr(a)latin/torbutton.dtd
index 0ea18e5..56f663e 100644
--- a/sr(a)latin/torbutton.dtd
+++ b/sr(a)latin/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/st/torbutton.dtd b/st/torbutton.dtd
index 0ea18e5..56f663e 100644
--- a/st/torbutton.dtd
+++ b/st/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/su/torbutton.dtd b/su/torbutton.dtd
index 0ea18e5..56f663e 100644
--- a/su/torbutton.dtd
+++ b/su/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/sv/torbutton.dtd b/sv/torbutton.dtd
index 5851a63..7107be8 100644
--- a/sv/torbutton.dtd
+++ b/sv/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "S">
<!ENTITY torbutton.button.tooltip "Klicka för att installera Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Återställ till standard">
<!ENTITY torbutton.cookiedialog.title "Hantera skyddade kakor">
<!ENTITY torbutton.cookiedialog.lockCol "Skyddad">
<!ENTITY torbutton.cookiedialog.domainCol "Värd">
diff --git a/sw/torbutton.dtd b/sw/torbutton.dtd
index 9b2f648..43712e9 100644
--- a/sw/torbutton.dtd
+++ b/sw/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Rejesha chaguo-msingi">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/szl/torbutton.dtd b/szl/torbutton.dtd
index 0ea18e5..56f663e 100644
--- a/szl/torbutton.dtd
+++ b/szl/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/ta/torbutton.dtd b/ta/torbutton.dtd
index 60c4832..f111be4 100644
--- a/ta/torbutton.dtd
+++ b/ta/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/te/torbutton.dtd b/te/torbutton.dtd
index 0ea18e5..56f663e 100644
--- a/te/torbutton.dtd
+++ b/te/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/te_IN/torbutton.dtd b/te_IN/torbutton.dtd
index 0ea18e5..56f663e 100644
--- a/te_IN/torbutton.dtd
+++ b/te_IN/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/tg/torbutton.dtd b/tg/torbutton.dtd
index 0ea18e5..56f663e 100644
--- a/tg/torbutton.dtd
+++ b/tg/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/th/torbutton.dtd b/th/torbutton.dtd
index 194d08a..d299a5d 100644
--- a/th/torbutton.dtd
+++ b/th/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/ti/torbutton.dtd b/ti/torbutton.dtd
index 0ea18e5..56f663e 100644
--- a/ti/torbutton.dtd
+++ b/ti/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/tk/torbutton.dtd b/tk/torbutton.dtd
index 0ea18e5..56f663e 100644
--- a/tk/torbutton.dtd
+++ b/tk/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/tr/torbutton.dtd b/tr/torbutton.dtd
index 2f47b5b..78be17a 100644
--- a/tr/torbutton.dtd
+++ b/tr/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Torbutton uygulamasını başlatmak için tıklayın">
<!ENTITY torbutton.prefs.security_settings "Güvenlik Ayarları">
-<!ENTITY torbutton.prefs.restore_defaults "Varsayılanları Yükle">
<!ENTITY torbutton.cookiedialog.title "Çerez Koruması Yönetimi">
<!ENTITY torbutton.cookiedialog.lockCol "Korunmuş">
<!ENTITY torbutton.cookiedialog.domainCol "Sunucu">
diff --git a/tzm/torbutton.dtd b/tzm/torbutton.dtd
index 0ea18e5..56f663e 100644
--- a/tzm/torbutton.dtd
+++ b/tzm/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/ug(a)Arab/torbutton.dtd b/ug(a)Arab/torbutton.dtd
index 5b47246..e65168d 100644
--- a/ug(a)Arab/torbutton.dtd
+++ b/ug(a)Arab/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/uk/torbutton.dtd b/uk/torbutton.dtd
index 76d5088..b44922e 100644
--- a/uk/torbutton.dtd
+++ b/uk/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Клацніть для запуску Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "За Замовчуванням">
<!ENTITY torbutton.cookiedialog.title "Керувати Захистом Куків">
<!ENTITY torbutton.cookiedialog.lockCol "Захищено">
<!ENTITY torbutton.cookiedialog.domainCol "Хост">
diff --git a/ur/torbutton.dtd b/ur/torbutton.dtd
index 0ea18e5..56f663e 100644
--- a/ur/torbutton.dtd
+++ b/ur/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/ur_PK/torbutton.dtd b/ur_PK/torbutton.dtd
index a447416..ea0b087 100644
--- a/ur_PK/torbutton.dtd
+++ b/ur_PK/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "ڈیفالٹس پر واپس جائیے">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/uz/torbutton.dtd b/uz/torbutton.dtd
index 811b43c..2dc4fdc 100644
--- a/uz/torbutton.dtd
+++ b/uz/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Andozalarni tiklash">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Himoyalangan">
<!ENTITY torbutton.cookiedialog.domainCol "Xost">
diff --git a/ve/torbutton.dtd b/ve/torbutton.dtd
index 0ea18e5..56f663e 100644
--- a/ve/torbutton.dtd
+++ b/ve/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/vi/torbutton.dtd b/vi/torbutton.dtd
index a797098..d7f7361 100644
--- a/vi/torbutton.dtd
+++ b/vi/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Bấm chuột để khởi chạy Torbutton">
<!ENTITY torbutton.prefs.security_settings "Những cài đặt về an ninh">
-<!ENTITY torbutton.prefs.restore_defaults "Khôi phục Mặc định">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/wa/torbutton.dtd b/wa/torbutton.dtd
index 0ea18e5..56f663e 100644
--- a/wa/torbutton.dtd
+++ b/wa/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/wo/torbutton.dtd b/wo/torbutton.dtd
index 0ea18e5..56f663e 100644
--- a/wo/torbutton.dtd
+++ b/wo/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
diff --git a/zh_CN/torbutton.dtd b/zh_CN/torbutton.dtd
index 02407a5..a326fd1 100644
--- a/zh_CN/torbutton.dtd
+++ b/zh_CN/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "点此初始化 Torbutton">
<!ENTITY torbutton.prefs.security_settings "安全设置">
-<!ENTITY torbutton.prefs.restore_defaults "恢复默认设置">
<!ENTITY torbutton.cookiedialog.title "管理受保护的 Cookie">
<!ENTITY torbutton.cookiedialog.lockCol "受保护">
<!ENTITY torbutton.cookiedialog.domainCol "主机">
diff --git a/zh_HK/torbutton.dtd b/zh_HK/torbutton.dtd
index cad03c1..73a8150 100644
--- a/zh_HK/torbutton.dtd
+++ b/zh_HK/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "撳落去初始化Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "回到預設">
<!ENTITY torbutton.cookiedialog.title "管理Cookie嘅保護">
<!ENTITY torbutton.cookiedialog.lockCol "受保護">
<!ENTITY torbutton.cookiedialog.domainCol "主機">
diff --git a/zh_TW/torbutton.dtd b/zh_TW/torbutton.dtd
index d01baec..089e2ac 100644
--- a/zh_TW/torbutton.dtd
+++ b/zh_TW/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "按一下以初始化 Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "還原預設值">
<!ENTITY torbutton.cookiedialog.title "管理 Cookie 的保護">
<!ENTITY torbutton.cookiedialog.lockCol "受保護">
<!ENTITY torbutton.cookiedialog.domainCol "主機">
diff --git a/zu/torbutton.dtd b/zu/torbutton.dtd
index 0ea18e5..56f663e 100644
--- a/zu/torbutton.dtd
+++ b/zu/torbutton.dtd
@@ -12,7 +12,6 @@
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Click to initialize Torbutton">
<!ENTITY torbutton.prefs.security_settings "Security Settings">
-<!ENTITY torbutton.prefs.restore_defaults "Restore Defaults">
<!ENTITY torbutton.cookiedialog.title "Manage Cookie Protections">
<!ENTITY torbutton.cookiedialog.lockCol "Protected">
<!ENTITY torbutton.cookiedialog.domainCol "Host">
1
0

[tor-browser-bundle/master] Bug 20184: OS X builds are still not reproducible
by gk@torproject.org 18 Oct '16
by gk@torproject.org 18 Oct '16
18 Oct '16
commit 04a9af0eb1e6466ce6a7007a46d73fb7a38442e8
Author: Georg Koppen <gk(a)torproject.org>
Date: Sun Oct 9 11:12:43 2016 +0000
Bug 20184: OS X builds are still not reproducible
We ecountered on some machines failures to reproduce OS X builds.
The investigation seems to indicate that our old toolchain plays a
crucial role in this.
This patch replaces this old toolchain with a more modern clang/cctools
for building the tor part of the bundle. Resorting to `faketime` again
was necessary to cope with inserted timestamps.
---
gitian/descriptors/mac/gitian-tor.yml | 44 +++++++++++++++++++++++------------
1 file changed, 29 insertions(+), 15 deletions(-)
diff --git a/gitian/descriptors/mac/gitian-tor.yml b/gitian/descriptors/mac/gitian-tor.yml
index f2f4b01..ee1d848 100644
--- a/gitian/descriptors/mac/gitian-tor.yml
+++ b/gitian/descriptors/mac/gitian-tor.yml
@@ -4,19 +4,21 @@ distro: "debian"
suites:
- "wheezy"
architectures:
-- "i386"
+- "amd64"
packages:
- "unzip"
- "automake"
+- "faketime"
- "zip"
reference_datetime: "2000-01-01 00:00:00"
remotes:
- "url": "https://git.torproject.org/tor.git"
"dir": "tor"
files:
-- "versions"
+- "clang-linux64-wheezy-utils.zip"
+- "cctools.tar.gz"
- "apple-uni-sdk-10.6_20110407-0.flosoft1_i386.deb"
-- "multiarch-darwin11-cctools127.2-gcc42-5666.3-llvmgcc42-2336.1-Linux-120724.tar.xz"
+- "versions"
- "dzip.sh"
- "openssl-mac64-utils.zip"
- "libevent-mac64-utils.zip"
@@ -33,35 +35,47 @@ script: |
fi
export TZ=UTC
export LC_ALL=C
- export REFERENCE_DATETIME
+ export FAKETIME=$REFERENCE_DATETIME
umask 0022
#
mkdir -p $INSTDIR/bin/
mkdir -p $TORBINDIR/
mkdir -p $TORCONFIGDIR/
mkdir -p $OUTDIR/
- #
- # dpkg requires sbin directories in the PATH
- export PATH="/usr/sbin:/sbin:$PATH"
- sudo dpkg -i *.deb
- tar xaf multiarch-darwin*tar.xz
- export PATH="$PATH:$HOME/build/apple-osx/bin/"
+
+ # Extracting and copying all the necessary utilities and libraries. We still
+ # need the 10.6 SDK if we want to support OSX 10.6.
+ ar x apple-uni-sdk-10.6_20110407-0.flosoft1_i386.deb
+ tar xaf data.tar.gz
+ tar xaf cctools.tar.gz
+ unzip clang-linux64-wheezy-utils.zip
unzip -d $INSTDIR openssl-mac64-utils.zip
unzip -d $INSTDIR libevent-mac64-utils.zip
cp $INSTDIR/libevent/lib/libevent-*.dylib $TORBINDIR/
LIBEVENT_FILE=`basename $INSTDIR/libevent/lib/libevent-*.dylib`
+ # Setting the proper flags and variables
+ # ld needs libLTO.so from llvm
+ export LD_LIBRARY_PATH="/home/debian/build/clang/lib"
+ export PATH="/home/debian/build/cctools/bin:$PATH"
+ CROSS_CCTOOLS_PATH="/home/debian/build/cctools"
+ CROSS_SYSROOT="/home/debian/build/usr/lib/apple/SDKs/MacOSX10.6.sdk"
+ FLAGS="-target x86_64-apple-darwin10 -mlinker-version=136 -B $CROSS_CCTOOLS_PATH/bin -isysroot $CROSS_SYSROOT"
+ export CC="/home/debian/build/clang/bin/clang $FLAGS"
+ export CXX="/home/debian/build/clang/bin/clang++ $FLAGS"
+ export CPP="/home/debian/build/clang/bin/clang $FLAGS -E"
+ export LLVMCONFIG="/home/debian/build/clang/bin/llvm-config"
+ export LDFLAGS="-Wl,-syslibroot,$CROSS_SYSROOT -Wl,-dead_strip"
+
# Building tor
- # XXX Clean up these flags?
- export CFLAGS="-m64 -I${INSTDIR}/openssl/include -I/usr/lib/apple/SDKs/MacOSX10.6.sdk/usr/include/ -I/usr/lib/gcc/i686-apple-darwin10/4.2.1/include/ -I. -L/usr/lib/apple/SDKs/MacOSX10.6.sdk/usr/lib/ -L/usr/lib/apple/SDKs/MacOSX10.6.sdk/usr/lib/system/ -mmacosx-version-min=10.5"
- export LDFLAGS="-m64 -L/usr/lib/apple/SDKs/MacOSX10.6.sdk/usr/lib/ -L/usr/lib/apple/SDKs/MacOSX10.6.sdk/usr/lib/system/ -mmacosx-version-min=10.5"
cd tor
git update-index --refresh -q
mkdir -p $OUTDIR/src
#git archive HEAD | tar -x -C $OUTDIR/src
./autogen.sh
find -type f -print0 | xargs -0 touch --date="$REFERENCE_DATETIME"
- ./configure --enable-static-openssl --disable-asciidoc --host=i686-apple-darwin11 --with-libevent-dir=$INSTDIR/libevent --with-openssl-dir=$INSTDIR/openssl --prefix=$INSTDIR
+ ./configure --enable-static-openssl --disable-asciidoc --host=x86_64-apple-darwin10 --with-libevent-dir=$INSTDIR/libevent --with-openssl-dir=$INSTDIR/openssl --prefix=$INSTDIR
+ export LD_PRELOAD=/usr/lib/faketime/libfaketime.so.1
make $MAKEOPTS
make install
cd $INSTDIR
@@ -69,7 +83,7 @@ script: |
cp share/tor/geoip $TORCONFIGDIR/
cp share/tor/geoip6 $TORCONFIGDIR/
cd $TORBINDIR/
- i686-apple-darwin11-install_name_tool -change $INSTDIR/libevent/lib/$LIBEVENT_FILE @executable_path/$LIBEVENT_FILE tor
+ x86_64-apple-darwin10-install_name_tool -change $INSTDIR/libevent/lib/$LIBEVENT_FILE @executable_path/$LIBEVENT_FILE tor
# Grabbing the result
cd $INSTDIR
1
0

[user-manual/master] Update downloading.page to include review feedback
by colin@torproject.org 18 Oct '16
by colin@torproject.org 18 Oct '16
18 Oct '16
commit f83a1c44e1e064800f972ad8287c0874d61b4b36
Author: Colin Childs <colin(a)torproject.org>
Date: Mon Oct 17 23:20:55 2016 -0500
Update downloading.page to include review feedback
---
C/downloading.page | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/C/downloading.page b/C/downloading.page
index 85653e8..51848d1 100644
--- a/C/downloading.page
+++ b/C/downloading.page
@@ -12,9 +12,8 @@
<p>
The safest and simplest way to download Tor Browser is from the official
Tor Project website at https://www.torproject.org. Your connection to
-the site will be secured using
-<link xref='secure-connections'>HTTPS</link>, so you can be sure that no
-one is tampering with your copy of the software while you download it.
+the site will be secured using<link xref='secure-connections'>HTTPS</link>,
+which makes it much harder for somebody to tamper with.
</p>
<p>
@@ -69,7 +68,7 @@ below.
</steps>
<p>
- To use GetTor via XMPP:
+ To use GetTor via Jabber/XMPP (Tor Messenger, Jitsi, CoyIM):
</p>
<steps>
<item>
1
0

18 Oct '16
commit a1ebe3d3f2a2b399fab2bab084b700c8da48b0f3
Author: Colin Childs <colin(a)torproject.org>
Date: Mon Oct 17 23:15:38 2016 -0500
Drop instructions to contact help-desk
---
C/downloading.page | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/C/downloading.page b/C/downloading.page
index 4479c2a..85653e8 100644
--- a/C/downloading.page
+++ b/C/downloading.page
@@ -133,7 +133,7 @@ below.
</steps>
</section>
-<section id="website-mirror">
+<!-- <section id="website-mirror">
<title>Tor website mirrors</title>
<p>
A number of volunteers around the world host “mirrors” of the Tor
@@ -151,6 +151,6 @@ below.
Please note that you should take extra care to verify the software you
download from a mirror, to ensure that it has not been tampered with.
</p>
-</section>
+</section> -->
</page>
1
0
commit e81b577996b38afd2130af2736e3fbd1532eb398
Author: Colin Childs <colin(a)torproject.org>
Date: Mon Oct 17 23:03:08 2016 -0500
List gettor before Satori
---
C/downloading.page | 104 ++++++++++++++++++++++++++---------------------------
1 file changed, 52 insertions(+), 52 deletions(-)
diff --git a/C/downloading.page b/C/downloading.page
index f0d3e15..4479c2a 100644
--- a/C/downloading.page
+++ b/C/downloading.page
@@ -24,58 +24,6 @@ happens, you can use one of the alternative download methods listed
below.
</p>
-<section id="satori">
-<title>Satori</title>
- <p>
- Satori is an add-on for the Chrome or Chromium browsers that allows you
- to download several security and privacy programs from different
- sources.
- </p>
- <p>
- To download Tor Browser using Satori:
- </p>
- <steps>
- <item>
- <p>
- Install Satori from the Chrome App Store.
- </p>
- </item>
- <item>
- <p>
- Select Satori from your browser’s Apps menu.
- </p>
- </item>
- <item>
- <p>
- When Satori opens, click on your preferred language. A menu will open
- listing the available downloads for that language. Find the entry for
- Tor Browser under the name of your operating system. Select
- either “A” or “B” after the name of the program — each one represents
- a different source from which to get the software. Your download will
- then begin.
- </p>
- </item>
- <item>
- <p>
- Wait for your download to finish, then find the “Generate Hash”
- section in Satori’s menu and click “Select Files”.
- </p>
- </item>
- <item>
- <p>
- Select the downloaded Tor Browser file. Satori will display the
- checksum of the file, which you should compare with the software’s
- original checksum: you can find this by clicking the word “checksum”
- after the link you clicked on to start the download. If the checksums
- match, your download was successful, and you can
- <link xref='first-time'>begin using Tor Browser</link>. If they do not
- match, you may need to try downloading again, or from a different
- source.
- </p>
- </item>
- </steps>
-</section>
-
<section id="gettor">
<title>GetTor</title>
<p>
@@ -133,6 +81,58 @@ below.
</steps>
</section>
+<section id="satori">
+<title>Satori</title>
+ <p>
+ Satori is an add-on for the Chrome or Chromium browsers that allows you
+ to download several security and privacy programs from different
+ sources.
+ </p>
+ <p>
+ To download Tor Browser using Satori:
+ </p>
+ <steps>
+ <item>
+ <p>
+ Install Satori from the Chrome App Store.
+ </p>
+ </item>
+ <item>
+ <p>
+ Select Satori from your browser’s Apps menu.
+ </p>
+ </item>
+ <item>
+ <p>
+ When Satori opens, click on your preferred language. A menu will open
+ listing the available downloads for that language. Find the entry for
+ Tor Browser under the name of your operating system. Select
+ either “A” or “B” after the name of the program — each one represents
+ a different source from which to get the software. Your download will
+ then begin.
+ </p>
+ </item>
+ <item>
+ <p>
+ Wait for your download to finish, then find the “Generate Hash”
+ section in Satori’s menu and click “Select Files”.
+ </p>
+ </item>
+ <item>
+ <p>
+ Select the downloaded Tor Browser file. Satori will display the
+ checksum of the file, which you should compare with the software’s
+ original checksum: you can find this by clicking the word “checksum”
+ after the link you clicked on to start the download. If the checksums
+ match, your download was successful, and you can
+ <link xref='first-time'>begin using Tor Browser</link>. If they do not
+ match, you may need to try downloading again, or from a different
+ source.
+ </p>
+ </item>
+ </steps>
+</section>
+
<section id="website-mirror">
<title>Tor website mirrors</title>
<p>
1
0

18 Oct '16
commit ebdc5f876f347f0d2bc804a0e27a1762c1da4559
Author: Colin Childs <colin(a)torproject.org>
Date: Mon Oct 17 23:10:34 2016 -0500
Clean up some phrasing based on feedback
---
C/about-tor-browser.page | 15 +++++++--------
1 file changed, 7 insertions(+), 8 deletions(-)
diff --git a/C/about-tor-browser.page b/C/about-tor-browser.page
index 97e960a..b0b551b 100644
--- a/C/about-tor-browser.page
+++ b/C/about-tor-browser.page
@@ -16,10 +16,9 @@
<list>
<item>
<p>
- Your internet activity, including the names and addresses of
- the websites you visit, will be hidden from your Internet
- service provider and from anyone watching your connection
- locally.
+ Your internet service provider, and anyone watching your connection
+ locally, will not be able to track your internet activity, including
+ the names and addresses of the websites you visit.
</p>
</item>
<item>
@@ -43,7 +42,7 @@
is exited or a <link xref='managing-identities#new-identity'>New
Identity</link> is requested).
</p>
-
+
<!-- XXX: ask Tor Browser team/mikeperry about things that are worth
adding here. -->
@@ -60,9 +59,9 @@
<media type="image" width="600" src="media/how-tor-works.png" />
<p>
The image above illustrates a user browsing to different websites
- over Tor. The green monitors represent relays in the Tor network,
- while the three keys represent the layers of encryption between the
- user and each relay.
+ over Tor. The green middle computers represent relays in the Tor
+ network, while the three keys represent the layers of encryption
+ between the user and each relay.
</p>
</section>
</page>
1
0
commit da78f6b8ddfd1c559ba76e8414fccfdc104937fa
Author: Colin Childs <colin(a)torproject.org>
Date: Mon Oct 17 23:00:51 2016 -0500
Correcting XMPP gettor address⇧
---
C/downloading.page | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/C/downloading.page b/C/downloading.page
index 2820c66..f0d3e15 100644
--- a/C/downloading.page
+++ b/C/downloading.page
@@ -127,7 +127,7 @@ below.
<item>
<p>
To get links for downloading Tor Browser in Chinese for Linux, send a
- message to get_tor(a)riseup.net with the words "linux zh" in it.
+ message to gettor(a)torproject.org with the words "linux zh" in it.
</p>
</item>
</steps>
1
0

[translation/torbutton-torbuttondtd] Update translations for torbutton-torbuttondtd
by translation@torproject.org 17 Oct '16
by translation@torproject.org 17 Oct '16
17 Oct '16
commit 42abc6d12dbc2aa2a82418b49bc30136b3ec16c5
Author: Translation commit bot <translation(a)torproject.org>
Date: Mon Oct 17 21:16:35 2016 +0000
Update translations for torbutton-torbuttondtd
---
lt/torbutton.dtd | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lt/torbutton.dtd b/lt/torbutton.dtd
index 4b54c80..46bf6df 100644
--- a/lt/torbutton.dtd
+++ b/lt/torbutton.dtd
@@ -2,7 +2,7 @@
<!ENTITY torbutton.context_menu.new_identity_key "I">
<!ENTITY torbutton.context_menu.new_circuit "Nauja Tor grandinė šiam tinklalapiui">
<!ENTITY torbutton.context_menu.new_circuit_key "C">
-<!ENTITY torbutton.context_menu.preferences "Security Settings…">
+<!ENTITY torbutton.context_menu.preferences "Saugumo nustatymai...">
<!ENTITY torbutton.context_menu.preferences.key "S">
<!ENTITY torbutton.context_menu.networksettings "Tor tinklo nustatymai...">
<!ENTITY torbutton.context_menu.networksettings.key "N">
@@ -11,7 +11,7 @@
<!ENTITY torbutton.context_menu.cookieProtections "Slapukų apsaugos...">
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Spustelėkite, kad aktyvuotumėte Torbutton">
-<!ENTITY torbutton.prefs.security_settings "Security Settings">
+<!ENTITY torbutton.prefs.security_settings "Saugumo nustatymai">
<!ENTITY torbutton.prefs.restore_defaults "Atstatyti numatytuosius">
<!ENTITY torbutton.cookiedialog.title "Tvarkyti slapukų apsaugas">
<!ENTITY torbutton.cookiedialog.lockCol "Apsaugotas">
1
0

[translation/torbutton-torbuttondtd] Update translations for torbutton-torbuttondtd
by translation@torproject.org 17 Oct '16
by translation@torproject.org 17 Oct '16
17 Oct '16
commit 3bd6c940f7c550cbebe1d2b704d40339c00929d3
Author: Translation commit bot <translation(a)torproject.org>
Date: Mon Oct 17 20:46:36 2016 +0000
Update translations for torbutton-torbuttondtd
---
lv/torbutton.dtd | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lv/torbutton.dtd b/lv/torbutton.dtd
index e641778..5b215b8 100644
--- a/lv/torbutton.dtd
+++ b/lv/torbutton.dtd
@@ -2,7 +2,7 @@
<!ENTITY torbutton.context_menu.new_identity_key "I">
<!ENTITY torbutton.context_menu.new_circuit "Jauns Tor maršruts šai vietnei">
<!ENTITY torbutton.context_menu.new_circuit_key "C">
-<!ENTITY torbutton.context_menu.preferences "Security Settings…">
+<!ENTITY torbutton.context_menu.preferences "Drošības iestatījumi...">
<!ENTITY torbutton.context_menu.preferences.key "S">
<!ENTITY torbutton.context_menu.networksettings "Tīkla Tor iestatījumi.">
<!ENTITY torbutton.context_menu.networksettings.key "N">
@@ -11,7 +11,7 @@
<!ENTITY torbutton.context_menu.cookieProtections "Aizsardzība pret sīkdatnēm.">
<!ENTITY torbutton.context_menu.cookieProtections.key "C">
<!ENTITY torbutton.button.tooltip "Noklikšķināt, lai inicializētu Torbutton">
-<!ENTITY torbutton.prefs.security_settings "Security Settings">
+<!ENTITY torbutton.prefs.security_settings "Drošības iestatījumi">
<!ENTITY torbutton.prefs.restore_defaults "Atjaunot noklusējuma vērtības">
<!ENTITY torbutton.cookiedialog.title "Pārvaldīt aizsardzību no sīkdatnēm">
<!ENTITY torbutton.cookiedialog.lockCol "Aizsargāts">
1
0