tor-commits
Threads by month
- ----- 2026 -----
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2025 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- 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
- 1 participants
- 215751 discussions
[tor/release-0.2.8] Merge branch 'memarea_overflow_027_squashed' into maint-0.2.8
by nickm@torproject.org 25 May '16
by nickm@torproject.org 25 May '16
25 May '16
commit 6abceca1826a018fb51e419fc4eb9721dd501acf
Merge: 87134db be2d37a
Author: Nick Mathewson <nickm(a)torproject.org>
Date: Wed May 25 09:22:02 2016 -0400
Merge branch 'memarea_overflow_027_squashed' into maint-0.2.8
changes/memarea_overflow | 7 +++++++
src/common/memarea.c | 8 +++++---
2 files changed, 12 insertions(+), 3 deletions(-)
diff --cc src/common/memarea.c
index 0a3fd00,d6cad11..173ed4e
--- a/src/common/memarea.c
+++ b/src/common/memarea.c
@@@ -83,10 -80,8 +83,9 @@@ typedef struct memarea_chunk_t
struct memarea_chunk_t *next_chunk;
size_t mem_size; /**< How much RAM is available in mem, total? */
char *next_mem; /**< Next position in mem to allocate data at. If it's
- * greater than or equal to mem+mem_size, this chunk is
- * full. */
+ * equal to mem+mem_size, this chunk is full. */
#ifdef USE_ALIGNED_ATTRIBUTE
+ /** Actual content of the memory chunk. */
char mem[FLEXIBLE_ARRAY_MEMBER] __attribute__((aligned(MEMAREA_ALIGN)));
#else
union {
1
0
[tor/release-0.2.8] Fix a dangling pointer issue in our RSA keygen code
by nickm@torproject.org 25 May '16
by nickm@torproject.org 25 May '16
25 May '16
commit c4c4380a5e43e97ff9533aa42c73183dd1054c41
Author: Nick Mathewson <nickm(a)torproject.org>
Date: Fri May 20 13:58:52 2016 -0400
Fix a dangling pointer issue in our RSA keygen code
If OpenSSL fails to generate an RSA key, do not retain a dangling
pointer to the previous (uninitialized) key value. The impact here
should be limited to a difficult-to-trigger crash, if OpenSSL is
running an engine that makes key generation failures possible, or if
OpenSSL runs out of memory. Fixes bug 19152; bugfix on
0.2.1.10-alpha. Found by Yuan Jochen Kang, Suman Jana, and Baishakhi
Ray.
This is potentially scary stuff, so let me walk through my analysis.
I think this is a bug, and a backport candidate, but not remotely
triggerable in any useful way.
Observation 1a:
Looking over the OpenSSL code here, the only way we can really fail in
the non-engine case is if malloc() fails. But if malloc() is failing,
then tor_malloc() calls should be tor_asserting -- the only way that an
attacker could do an exploit here would be to figure out some way to
make malloc() fail when openssl does it, but work whenever Tor does it.
(Also ordinary malloc() doesn't fail on platforms like Linux that
overcommit.)
Observation 1b:
Although engines are _allowed_ to fail in extra ways, I can't find much
evidence online that they actually _do_ fail in practice. More evidence
would be nice, though.
Observation 2:
We don't call crypto_pk_generate*() all that often, and we don't do it
in response to external inputs. The only way to get it to happen
remotely would be by causing a hidden service to build new introduction
points.
Observation 3a:
So, let's assume that both of the above observations are wrong, and the
attacker can make us generate a crypto_pk_env_t with a dangling pointer
in its 'key' field, and not immediately crash.
This dangling pointer will point to what used to be an RSA structure,
with the fields all set to NULL. Actually using this RSA structure,
before the memory is reused for anything else, will cause a crash.
In nearly every function where we call crypto_pk_generate*(), we quickly
use the RSA key pointer -- either to sign something, or to encode the
key, or to free the key. The only exception is when we generate an
intro key in rend_consider_services_intro_points(). In that case, we
don't actually use the key until the intro circuit is opened -- at which
point we encode it, and use it to sign an introduction request.
So in order to exploit this bug to do anything besides crash Tor, the
attacker needs to make sure that by the time the introduction circuit
completes, either:
* the e, d, and n BNs look valid, and at least one of the other BNs is
still NULL.
OR
* all 8 of the BNs must look valid.
To look like a valid BN, *they* all need to have their 'top' index plus
their 'd' pointer indicate an addressable region in memory.
So actually getting useful data of of this, rather than a crash, is
going to be pretty damn hard. You'd have to force an introduction point
to be created (or wait for one to be created), and force that particular
crypto_pk_generate*() to fail, and then arrange for the memory that the
RSA points to to in turn point to 3...8 valid BNs, all by the time the
introduction circuit completes.
Naturally, the signature won't check as valid [*], so the intro point
will reject the ESTABLISH_INTRO cell. So you need to _be_ the
introduction point, or you don't actually see this information.
[*] Okay, so if you could somehow make the 'rsa' pointer point to a
different valid RSA key, then you'd get a valid signature of an
ESTABLISH_INTRO cell using a key that was supposed to be used for
something else ... but nothing else looks like that, so you can't use
that signature elsewhere.
Observation 3b:
Your best bet as an attacker would be to make the dangling RSA pointer
actually contain a fake method, with a fake RSA_private_encrypt
function that actually pointed to code you wanted to execute. You'd
still need to transit 3 or 4 pointers deep though in order to make that
work.
Conclusion:
By 1, you probably can't trigger this without Tor crashing from OOM.
By 2, you probably can't trigger this reliably.
By 3, even if I'm wrong about 1 and 2, you have to jump through a pretty
big array of hoops in order to get any kind of data leak or code
execution.
So I'm calling it a bug, but not a security hole. Still worth
patching.
---
changes/rsa_init_bug | 7 +++++++
src/common/crypto.c | 4 +++-
2 files changed, 10 insertions(+), 1 deletion(-)
diff --git a/changes/rsa_init_bug b/changes/rsa_init_bug
new file mode 100644
index 0000000..6b5fb4f
--- /dev/null
+++ b/changes/rsa_init_bug
@@ -0,0 +1,7 @@
+ o Major bugfixes (key management):
+ - If OpenSSL fails to generate an RSA key, do not retain a dangling pointer
+ to the previous (uninitialized) key value. The impact here should be
+ limited to a difficult-to-trigger crash, if OpenSSL is running an
+ engine that makes key generation failures possible, or if OpenSSL runs
+ out of memory. Fixes bug 19152; bugfix on 0.2.1.10-alpha. Found by
+ Yuan Jochen Kang, Suman Jana, and Baishakhi Ray.
diff --git a/src/common/crypto.c b/src/common/crypto.c
index 925beb3..63b274e 100644
--- a/src/common/crypto.c
+++ b/src/common/crypto.c
@@ -466,8 +466,10 @@ crypto_pk_generate_key_with_bits(crypto_pk_t *env, int bits)
{
tor_assert(env);
- if (env->key)
+ if (env->key) {
RSA_free(env->key);
+ env->key = NULL;
+ }
{
BIGNUM *e = BN_new();
1
0
[tor/master] Use calloc, not malloc(a*b), in ed25519 batch signature check fn
by nickm@torproject.org 25 May '16
by nickm@torproject.org 25 May '16
25 May '16
commit 0ef36626ea0b3735d06360fde27100d33f2f5462
Author: Nick Mathewson <nickm(a)torproject.org>
Date: Wed May 25 08:59:08 2016 -0400
Use calloc, not malloc(a*b), in ed25519 batch signature check fn
[Not a triggerable bug unless somebody is going to go checking
millions+ of signatures in a single go.]
---
src/common/crypto_ed25519.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/common/crypto_ed25519.c b/src/common/crypto_ed25519.c
index c687a1b..84c3eec 100644
--- a/src/common/crypto_ed25519.c
+++ b/src/common/crypto_ed25519.c
@@ -259,11 +259,11 @@ ed25519_checksig_batch(int *okay_out,
int *oks;
int all_ok;
- ms = tor_malloc(sizeof(uint8_t*)*n_checkable);
- lens = tor_malloc(sizeof(size_t)*n_checkable);
- pks = tor_malloc(sizeof(uint8_t*)*n_checkable);
- sigs = tor_malloc(sizeof(uint8_t*)*n_checkable);
- oks = okay_out ? okay_out : tor_malloc(sizeof(int)*n_checkable);
+ ms = tor_calloc(n_checkable, sizeof(uint8_t*));
+ lens = tor_calloc(n_checkable, sizeof(size_t));
+ pks = tor_calloc(n_checkable, sizeof(uint8_t*));
+ sigs = tor_calloc(n_checkable, sizeof(uint8_t*));
+ oks = okay_out ? okay_out : tor_calloc(n_checkable, sizeof(int));
for (i = 0; i < n_checkable; ++i) {
ms[i] = checkable[i].msg;
1
0
[translation/torbirdy_completed] Update translations for torbirdy_completed
by translation@torproject.org 25 May '16
by translation@torproject.org 25 May '16
25 May '16
commit a1188ca8edb423ae1afb1f3abef8bd17917afea5
Author: Translation commit bot <translation(a)torproject.org>
Date: Wed May 25 11:45:33 2016 +0000
Update translations for torbirdy_completed
---
el/torbirdy.dtd | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/el/torbirdy.dtd b/el/torbirdy.dtd
index ddfa6a2..f648a34 100644
--- a/el/torbirdy.dtd
+++ b/el/torbirdy.dtd
@@ -47,7 +47,7 @@
<!ENTITY torbirdy.prefs.account_specific "Ειδικός λογαριασμός">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Επιλογή ενός λογαριασμού">
-<!ENTITY torbirdy.prefs.enigmail.keyserver.label "Keyserver(s) για χρησιμοποιηση: ">
+<!ENTITY torbirdy.prefs.enigmail.keyserver.label "Βασικός δίσκος για χρησιμοποίηση">
<!ENTITY torbirdy.prefs.enigmail.keyserver.key "κ">
<!ENTITY torbirdy.panel.usetor.label "Χρησιμοποιηση του Tor Onion Router">
1
0
25 May '16
commit 1032de672a3a704dfcaf2ad22ff325ea35246c67
Author: Translation commit bot <translation(a)torproject.org>
Date: Wed May 25 11:45:28 2016 +0000
Update translations for torbirdy
---
el/torbirdy.dtd | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/el/torbirdy.dtd b/el/torbirdy.dtd
index ddfa6a2..f648a34 100644
--- a/el/torbirdy.dtd
+++ b/el/torbirdy.dtd
@@ -47,7 +47,7 @@
<!ENTITY torbirdy.prefs.account_specific "Ειδικός λογαριασμός">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Επιλογή ενός λογαριασμού">
-<!ENTITY torbirdy.prefs.enigmail.keyserver.label "Keyserver(s) για χρησιμοποιηση: ">
+<!ENTITY torbirdy.prefs.enigmail.keyserver.label "Βασικός δίσκος για χρησιμοποίηση">
<!ENTITY torbirdy.prefs.enigmail.keyserver.key "κ">
<!ENTITY torbirdy.panel.usetor.label "Χρησιμοποιηση του Tor Onion Router">
1
0
25 May '16
commit 1301bcbd62663a5237c68a7126afb9812b4b410f
Author: Karsten Loesing <karsten.loesing(a)gmx.net>
Date: Tue May 24 19:18:43 2016 +0200
Support additional columns in GeoLite2 files.
Looks like MaxMind added a tenth column "accuracy_radius" in their May
2016 update. We should just ignore that column and any other columns
added in the future.
Fixes #19154.
---
.../torproject/onionoo/updater/LookupService.java | 6 ++---
.../onionoo/updater/LookupServiceTest.java | 28 ++++++++++++++++++++++
2 files changed, 31 insertions(+), 3 deletions(-)
diff --git a/src/main/java/org/torproject/onionoo/updater/LookupService.java b/src/main/java/org/torproject/onionoo/updater/LookupService.java
index 6da3608..e800926 100644
--- a/src/main/java/org/torproject/onionoo/updater/LookupService.java
+++ b/src/main/java/org/torproject/onionoo/updater/LookupService.java
@@ -122,8 +122,8 @@ public class LookupService {
addressStringNumbers.values());
String line = br.readLine();
while ((line = br.readLine()) != null) {
- String[] parts = line.split(",", 9);
- if (parts.length != 9) {
+ String[] parts = line.split(",", -1);
+ if (parts.length < 9) {
log.error("Illegal line '" + line + "' in "
+ this.geoLite2CityBlocksIPv4CsvFile.getAbsolutePath()
+ ".");
@@ -169,7 +169,7 @@ public class LookupService {
log.error("Number format exception while parsing line '" + line
+ "' in "
+ this.geoLite2CityBlocksIPv4CsvFile.getAbsolutePath()
- + ".");
+ + ".", e);
return lookupResults;
}
}
diff --git a/src/test/java/org/torproject/onionoo/updater/LookupServiceTest.java b/src/test/java/org/torproject/onionoo/updater/LookupServiceTest.java
index 2b90a37..7ba3462 100644
--- a/src/test/java/org/torproject/onionoo/updater/LookupServiceTest.java
+++ b/src/test/java/org/torproject/onionoo/updater/LookupServiceTest.java
@@ -320,6 +320,34 @@ public class LookupServiceTest {
}
@Test()
+ public void testLookupBlocksExtraneousField() {
+ List<String> geoLite2CityBlocksIPv4Lines = new ArrayList<String>();
+ geoLite2CityBlocksIPv4Lines.add("network,geoname_id,"
+ + "registered_country_geoname_id,represented_country_geoname_id,"
+ + "is_anonymous_proxy,is_satellite_provider,postal_code,latitude,"
+ + "longitude,accuracy_radius");
+ geoLite2CityBlocksIPv4Lines.add("8.8.8.0/24,5375480,6252001,,0,"
+ + "0,94035,37.3860,-122.0838,937");
+ this.assertLookupResult(geoLite2CityBlocksIPv4Lines, null, null,
+ "8.8.8.8", "us", "United States", "California", "Mountain View",
+ 37.3860f, -122.0838f, "AS15169", "Google Inc.");
+ }
+
+ @Test()
+ public void testLookupBlocksThreeExtraneousFields() {
+ List<String> geoLite2CityBlocksIPv4Lines = new ArrayList<String>();
+ geoLite2CityBlocksIPv4Lines.add("network,geoname_id,"
+ + "registered_country_geoname_id,represented_country_geoname_id,"
+ + "is_anonymous_proxy,is_satellite_provider,postal_code,latitude,"
+ + "longitude,accuracy_radius,more,even_more,wow_so_many_fields");
+ geoLite2CityBlocksIPv4Lines.add("8.8.8.0/24,5375480,6252001,,0,"
+ + "0,94035,37.3860,-122.0838,937,1,2,30000000000000");
+ this.assertLookupResult(geoLite2CityBlocksIPv4Lines, null, null,
+ "8.8.8.8", "us", "United States", "California", "Mountain View",
+ 37.3860f, -122.0838f, "AS15169", "Google Inc.");
+ }
+
+ @Test()
public void testLookupLocationLocIdNotANumber() {
List<String> geoLite2CityLocationsEnLines = new ArrayList<String>();
geoLite2CityLocationsEnLines.add("geoname_id,locale_code,"
1
0
[translation/torbirdy_completed] Update translations for torbirdy_completed
by translation@torproject.org 25 May '16
by translation@torproject.org 25 May '16
25 May '16
commit c08b72e0c1db4a16b2b8960379ae620bd7777833
Author: Translation commit bot <translation(a)torproject.org>
Date: Wed May 25 09:17:10 2016 +0000
Update translations for torbirdy_completed
---
af/torbirdy.dtd | 3 ---
am/torbirdy.dtd | 3 ---
ar/torbirdy.dtd | 3 ---
az/torbirdy.dtd | 3 ---
bg/torbirdy.dtd | 3 ---
bs/torbirdy.dtd | 3 ---
ca/torbirdy.dtd | 3 ---
cs/torbirdy.dtd | 3 ---
da/torbirdy.dtd | 3 ---
de/torbirdy.dtd | 3 ---
el/torbirdy.dtd | 3 ---
en_GB/torbirdy.dtd | 3 ---
es/torbirdy.dtd | 3 ---
es_AR/torbirdy.dtd | 3 ---
et/torbirdy.dtd | 3 ---
eu/torbirdy.dtd | 3 ---
fa/torbirdy.dtd | 3 ---
fi/torbirdy.dtd | 3 ---
fo/torbirdy.dtd | 3 ---
fr/torbirdy.dtd | 3 ---
fr_CA/torbirdy.dtd | 3 ---
he/torbirdy.dtd | 3 ---
hr_HR/torbirdy.dtd | 3 ---
hu/torbirdy.dtd | 3 ---
id/torbirdy.dtd | 3 ---
it/torbirdy.dtd | 3 ---
ja/torbirdy.dtd | 3 ---
km/torbirdy.dtd | 3 ---
ko/torbirdy.dtd | 3 ---
lv/torbirdy.dtd | 3 ---
mk/torbirdy.dtd | 3 ---
ms_MY/torbirdy.dtd | 3 ---
nb/torbirdy.dtd | 3 ---
nl/torbirdy.dtd | 3 ---
nn/torbirdy.dtd | 3 ---
pa/torbirdy.dtd | 3 ---
pl/torbirdy.dtd | 3 ---
pt/torbirdy.dtd | 3 ---
pt_BR/torbirdy.dtd | 3 ---
ro/torbirdy.dtd | 3 ---
ru/torbirdy.dtd | 3 ---
sk/torbirdy.dtd | 3 ---
sl_SI/torbirdy.dtd | 3 ---
sq/torbirdy.dtd | 3 ---
sr/torbirdy.dtd | 4 ----
sv/torbirdy.dtd | 3 ---
templates/torbirdy.dtd | 3 ---
tr/torbirdy.dtd | 3 ---
uk/torbirdy.dtd | 3 ---
zh_CN/torbirdy.dtd | 3 ---
zh_HK/torbirdy.dtd | 3 ---
zh_TW/torbirdy.dtd | 3 ---
52 files changed, 157 deletions(-)
diff --git a/af/torbirdy.dtd b/af/torbirdy.dtd
index fe313d4..c989316 100644
--- a/af/torbirdy.dtd
+++ b/af/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Volmag 'proxy'">
<!ENTITY torbirdy.prefs.privacy.label "Privaatheid">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Sekuriteit">
<!ENTITY torbirdy.prefs.recommended.text "Gebruik die voorgestelde volmag 'proxy' instellings vir TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Kies ń anonimiserings diens">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Kyk outomaties vir nuwe boodskappe vir alle rekeninge [verstek 'default': afgeskakel]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Laat verbindings toe aan bedieners 'servers' wat nie SSL / TLS ondersteun met veilige heronderhandeling nie [verstek 'default': moenie toelaat]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Rekening-spesifiek">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Kies ń rekening">
diff --git a/am/torbirdy.dtd b/am/torbirdy.dtd
index 6770e80..4d138ef 100644
--- a/am/torbirdy.dtd
+++ b/am/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "ተኪ">
<!ENTITY torbirdy.prefs.privacy.label "ግላዊነት">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "ደህንነት">
<!ENTITY torbirdy.prefs.recommended.text "የሚመከሩት የTorBirdy (Tor) ተኪ ቅብሮችን ተጠቀም">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "የስም-አልባ ማድረጊያ አገልግሎትን ምረጥ">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "ለሁሉም መለያዎች አዲስ መልዕክቶችን ካሉ በራስ-ሰር አረጋግጥ [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "ከአገልጋዮች ጋር የሚደረጉ ደህንነቱ የተጠበቀ ዳግም ድርድር ያለው SSL/TLSን የማይደግፉ ግኙነቶችን ፍቀድ [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "መለያ-ተኮር">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "መለያ ይምረጡ፦">
diff --git a/ar/torbirdy.dtd b/ar/torbirdy.dtd
index fb714c4..5a05511 100644
--- a/ar/torbirdy.dtd
+++ b/ar/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "بروكسي">
<!ENTITY torbirdy.prefs.privacy.label "خصوصية">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "أمن">
<!ENTITY torbirdy.prefs.recommended.text "استعمل خيارات البروكسي الموصى بها لتوربيردي (تور)">
<!ENTITY torbirdy.prefs.recommended.key "م">
<!ENTITY torbirdy.prefs.anonservice.text "اختر خدمة اخفاء هوية">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "ث">
<!ENTITY torbirdy.prefs.automatic.label "تحقق من وجود رسائل جديدة تلقائيًا لكل الحسابات [الوضع الافتراضي: مُعطل]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "سماح الأتصال بالخوادم التي لا تدعم SSL/TLS مع إعادة التفاوض آمنة [الوضع الأفتراضي: لا تسمح]">
-<!ENTITY torbirdy.prefs.renegotiation.key "ه">
<!ENTITY torbirdy.prefs.account_specific "خاص بالحساب">
<!ENTITY torbirdy.prefs.select_account.key "س">
<!ENTITY torbirdy.prefs.select_account.label "اختر حساباً">
diff --git a/az/torbirdy.dtd b/az/torbirdy.dtd
index 18d3f59..e2c6a17 100644
--- a/az/torbirdy.dtd
+++ b/az/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proksi">
<!ENTITY torbirdy.prefs.privacy.label "Şəxsilik">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Təhlükəsizlik">
<!ENTITY torbirdy.prefs.recommended.text "TorBirdy (Tor) üçün məsləhət edilən proksi parametrlərini istifadə et">
<!ENTITY torbirdy.prefs.recommended.key "P">
<!ENTITY torbirdy.prefs.anonservice.text "Anonimləşdirmə xidmətini seç">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "P">
<!ENTITY torbirdy.prefs.automatic.label "Bütün hesablar üçün avtomatik yeni mesajları yoxla [ilkin hal: deaktivə edilib]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Təhlükəsiz danışıqlar ilə SSL/TLS-i dəstəkləməyən əlaqələrin serverlə əlaqəsinə icazə ver [ilkin hal: icazə vermə]">
-<!ENTITY torbirdy.prefs.renegotiation.key "P">
<!ENTITY torbirdy.prefs.account_specific "Hesabla Bağlı">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Hesab seç:">
diff --git a/bg/torbirdy.dtd b/bg/torbirdy.dtd
index bd39127..a023b4d 100644
--- a/bg/torbirdy.dtd
+++ b/bg/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Прокси">
<!ENTITY torbirdy.prefs.privacy.label "Поверителност">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail - OpenPGP интерфейс за криптиране и автентификация на съобщения за вашата клиентска програма за е-поща, като Thunderbird и Outlook.">
-<!ENTITY torbirdy.prefs.security.label "Сигурност">
<!ENTITY torbirdy.prefs.recommended.text "Използвай препоръчителните настройки за прокси в TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Изберете анонимизираща услуга">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Провери автоматично за нови съобщения за всички акаунти [По подразбиране: изключено]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Позволете връзки към сървъри, които не поддържат SSL/TLS със сигурно предоговаряне [по подразбиране: непозволено]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Специфичен-Профил">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Изберете профил:">
diff --git a/bs/torbirdy.dtd b/bs/torbirdy.dtd
index 366e48b..d54cef2 100644
--- a/bs/torbirdy.dtd
+++ b/bs/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privatnost">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail - Extenzija za enkripciju i dekripciju podataka.">
-<!ENTITY torbirdy.prefs.security.label "Sigurnost">
<!ENTITY torbirdy.prefs.recommended.text "Koristite preporučene proxy postavke za TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Odaberi servis za anonimizaciju">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Automatski provjeri da li ima novih poruka za sve račune [standardno: isključeno]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Omoguci veze sa serverima koji ne podržavaju SSL / TLS sa sigurnim reprograma [Standardno: nemoj omoguciti]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Vezano za račun">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Odaberi račun">
diff --git a/ca/torbirdy.dtd b/ca/torbirdy.dtd
index ac77423..0b91316 100644
--- a/ca/torbirdy.dtd
+++ b/ca/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Servidor intermediari">
<!ENTITY torbirdy.prefs.privacy.label "Privadesa">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Seguretat">
<!ENTITY torbirdy.prefs.recommended.text "Utilitza la configuració del servidor intermediari recomanat per TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Tria un servei d'anonimat">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "p">
<!ENTITY torbirdy.prefs.automatic.label "Revisa els nous missatges automàticament per a tots els comptes [per defecte: desactivat]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Permet connexions a servidors que no suporten SSL/TLS amb renegociació segura [per defecte: no permès]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Per compte">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Trieu un compte:">
diff --git a/cs/torbirdy.dtd b/cs/torbirdy.dtd
index 5936286..fab510f 100644
--- a/cs/torbirdy.dtd
+++ b/cs/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Soukromí">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Bezpečnost">
<!ENTITY torbirdy.prefs.recommended.text "Použít doporučené nastavení proxy pro TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Použít anonymizační službu">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Automatická kontrola nových zpráv na všech účtech [standartně: nepovoleno]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Povolit přípojení k serverům, které nepodporují SSL/TLS s bezpečným opětovným sjednáním. [standartně: nepovoluje]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Účet-specifický">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Vyber účet:">
diff --git a/da/torbirdy.dtd b/da/torbirdy.dtd
index 035288d..a4eb2a2 100644
--- a/da/torbirdy.dtd
+++ b/da/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privatliv">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Sikkerhed">
<!ENTITY torbirdy.prefs.recommended.text "Brug de anbefalede proxyindstillinger til TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Vælg en anonymiserings-service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Hent automatisk nye beskeder for alle konti [standardindstilling: slået fra]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Tillad forbindelser til servere der ikke understøtter SSL/TLS med sikker genforhandling [standard: tillad ikke]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Kontospecifik">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Vælg en konto:">
diff --git a/de/torbirdy.dtd b/de/torbirdy.dtd
index c0fee66..f895a4b 100644
--- a/de/torbirdy.dtd
+++ b/de/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Vermittlungsserver">
<!ENTITY torbirdy.prefs.privacy.label "Privatsphäre">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Sicherheit">
<!ENTITY torbirdy.prefs.recommended.text "Die empfohlenen Vermittlungsservereinstellungen für TorBirdy (Tor) benutzen">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Anonymisierungsdienst auswählen">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "T">
<!ENTITY torbirdy.prefs.automatic.label "Automatisch auf neue Nachrichten für alle Konten prüfen [Vorgabe: deaktiviert]">
<!ENTITY torbirdy.prefs.automatic.key "A">
-<!ENTITY torbirdy.prefs.renegotiation.label "Verbindungen zu Servern erlauben, die kein SSL/TLS mit sicherer Neuverhandlung unterstützen [Vorgabe: nicht erlauben]">
-<!ENTITY torbirdy.prefs.renegotiation.key "V">
<!ENTITY torbirdy.prefs.account_specific "Bestimmtes Konto">
<!ENTITY torbirdy.prefs.select_account.key "K">
<!ENTITY torbirdy.prefs.select_account.label "Konto auswählen: ">
diff --git a/el/torbirdy.dtd b/el/torbirdy.dtd
index 1a7a98d..ddfa6a2 100644
--- a/el/torbirdy.dtd
+++ b/el/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Ιδιωτικότητα">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Ασφάλεια">
<!ENTITY torbirdy.prefs.recommended.text "Χρήση των προτεινόμενων ρυθμίσεων Proxy για το TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Επιλογή μιας υπηρεσίας ανωνυμίας">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "β">
<!ENTITY torbirdy.prefs.automatic.label "Αυτόματος έλεγχος νέων μηνυμάτων για όλους τους λογαριασμούς [προεπιλογή: απενεργοποιημένο]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Να επιτρέπονται συνδέσεις σε διακομιστές που δεν υποστηρίζουν SSL / TLS με ασφαλή επαναδιαπραγμάτευση [προεπιλογή: να μην επιτρέπονται] ">
-<!ENTITY torbirdy.prefs.renegotiation.key "ρ">
<!ENTITY torbirdy.prefs.account_specific "Ειδικός λογαριασμός">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Επιλογή ενός λογαριασμού">
diff --git a/en_GB/torbirdy.dtd b/en_GB/torbirdy.dtd
index d670135..26d357e 100644
--- a/en_GB/torbirdy.dtd
+++ b/en_GB/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/es/torbirdy.dtd b/es/torbirdy.dtd
index e59a3f8..97f99c3 100644
--- a/es/torbirdy.dtd
+++ b/es/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacidad">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Seguridad">
<!ENTITY torbirdy.prefs.recommended.text "Usar la configuración de proxy recomendada para TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "y">
<!ENTITY torbirdy.prefs.anonservice.text "Escoger un servicio de anonimización">
@@ -46,8 +45,6 @@
<!ENTITY torbirdy.prefs.automatic.label "Buscar mensajes nuevos automáticamente para todas
las cuentas [por defecto: dehabilitado]">
<!ENTITY torbirdy.prefs.automatic.key "t">
-<!ENTITY torbirdy.prefs.renegotiation.label "Permitir conexiones a servidores que no soporten SSL/TLS con renegociación segura [predeterminado: no permitir]">
-<!ENTITY torbirdy.prefs.renegotiation.key "x">
<!ENTITY torbirdy.prefs.account_specific "Configuración específica de la cuenta">
<!ENTITY torbirdy.prefs.select_account.key "e">
<!ENTITY torbirdy.prefs.select_account.label "Elegir una cuenta">
diff --git a/es_AR/torbirdy.dtd b/es_AR/torbirdy.dtd
index 1f9ca73..1dd0b28 100644
--- a/es_AR/torbirdy.dtd
+++ b/es_AR/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacidad">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Seguridad">
<!ENTITY torbirdy.prefs.recommended.text "Use los ajustes proxy recomendados para TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Elija un servicio de anonimatización">
@@ -48,8 +47,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Chequee nuevos mensajes automáticamente para todas las cuentas [valor por defecto: inhabilitado]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Permitir conexiones a servidores sin soporte SSL/TLS con renegociación segura [valor por defecto: no permitir]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Específico/a de la cuenta">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Elija una cuenta">
diff --git a/et/torbirdy.dtd b/et/torbirdy.dtd
index e038c63..ff3c3ee 100644
--- a/et/torbirdy.dtd
+++ b/et/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proksi">
<!ENTITY torbirdy.prefs.privacy.label "Privaatsus">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Turvalisus">
<!ENTITY torbirdy.prefs.recommended.text "Kasuta TorBirdy (Tor) jaoks soovituslikke proksi seadeid">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Vali anonümiseerimise teenus">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "v">
<!ENTITY torbirdy.prefs.automatic.label "Kontrolli kõigi kontode uusi sõnumeid [vaikimisi: keelatud]">
<!ENTITY torbirdy.prefs.automatic.key "u">
-<!ENTITY torbirdy.prefs.renegotiation.label "Luba ühendused serveritesse, mis ei toeta SSL/TLS ühenduse turvalist taaskokkuleppimist [vaikimisi: ära luba]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Konto spetsiifiline">
<!ENTITY torbirdy.prefs.select_account.key "f">
<!ENTITY torbirdy.prefs.select_account.label "Vali konto:">
diff --git a/eu/torbirdy.dtd b/eu/torbirdy.dtd
index efceca7..7523457 100644
--- a/eu/torbirdy.dtd
+++ b/eu/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy-a">
<!ENTITY torbirdy.prefs.privacy.label "Pribatutasuna">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Segurtasuna">
<!ENTITY torbirdy.prefs.recommended.text "TorBirdy(Tor)rentzako gomendatutako proxy ezarpenak erabili">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Aukeratu anonimotasun zerbitzu bat">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Egiaztatu mezu berririk dagoen kontu guztietarako [lehenetsia: ezgaituta]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "SSL/TLS birnegoziazioa onartzen ez duten zerbitzarietara konexioak baimendu [lehenetsia: ez baimendu]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Kontuaren araberakoa">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Kontu bat aukeratu:">
diff --git a/fa/torbirdy.dtd b/fa/torbirdy.dtd
index 05bd1fe..1409164 100644
--- a/fa/torbirdy.dtd
+++ b/fa/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "پروکسی">
<!ENTITY torbirdy.prefs.privacy.label "حریم خصوصی">
<!ENTITY torbirdy.prefs.enigmail.label "اِنیگ میل">
-<!ENTITY torbirdy.prefs.security.label "امنیت">
<!ENTITY torbirdy.prefs.recommended.text "از تنظیمات پراکسی توصیه شده برای توربِردی استفاده کن (تور)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "یک سرویس ناشناسی انتخاب کنید">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "پیام های جدید را به طور خودکار برای همه حساب ها بررسی کن [به طور پیش فرض: غیر فعال]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "اجازه برقراری ارتباط با سرورهایی که از SSL/TLS با مذاکره دوباره امن پشتیبانی نمیکنند [پیش فرض: غیرفعال]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "مخصوص حساب کاربری">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "یک حساب کاربری انتخاب کنید:">
diff --git a/fi/torbirdy.dtd b/fi/torbirdy.dtd
index 29a5572..f0c8e15 100644
--- a/fi/torbirdy.dtd
+++ b/fi/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Välityspalvelin">
<!ENTITY torbirdy.prefs.privacy.label "Yksityisyys">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Turvallisuus">
<!ENTITY torbirdy.prefs.recommended.text "Käytä suositeltuja välityspalvelinasetuksia TorBirdylle (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "R">
<!ENTITY torbirdy.prefs.anonservice.text "Valitse anonymisointipalvelu">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "m">
<!ENTITY torbirdy.prefs.automatic.label "Tarkista uudet viestit automaattisesti kaikille tileille [oletus: ei käytössä]">
<!ENTITY torbirdy.prefs.automatic.key "d">
-<!ENTITY torbirdy.prefs.renegotiation.label "Salli palvelimille yhteydet, jotka eivät tue SSL/TLS-yhteyskäytäntöä turvallisuuden uudelleenneuvottelulla [oletus: älä salli]">
-<!ENTITY torbirdy.prefs.renegotiation.key "S">
<!ENTITY torbirdy.prefs.account_specific "Tilikohtainen">
<!ENTITY torbirdy.prefs.select_account.key "E">
<!ENTITY torbirdy.prefs.select_account.label "Valitse tili:">
diff --git a/fo/torbirdy.dtd b/fo/torbirdy.dtd
index 7f71887..e4ae1ea 100644
--- a/fo/torbirdy.dtd
+++ b/fo/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privatir stillingar">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Trygd">
<!ENTITY torbirdy.prefs.recommended.text "Brúka viðmældir proxy-stillingar til TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Vel eina dulnevningar-tænastu">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "s">
<!ENTITY torbirdy.prefs.automatic.label "Kann fyri nýggjum boðum sjávvirkandi fyri allar kontur [vanliga ikki gildað]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Loyva samband við ambætarar, sum ikki brúka SSL/TLS við tryggum samráðingum [vanliga ikki loyvt]">
-<!ENTITY torbirdy.prefs.renegotiation.key "s">
<!ENTITY torbirdy.prefs.account_specific "Serliga fyri kontu">
<!ENTITY torbirdy.prefs.select_account.key "o">
<!ENTITY torbirdy.prefs.select_account.label "Vel eina kontu:">
diff --git a/fr/torbirdy.dtd b/fr/torbirdy.dtd
index b4d4ebc..64cc55c 100644
--- a/fr/torbirdy.dtd
+++ b/fr/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Vie privée">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Sécurité">
<!ENTITY torbirdy.prefs.recommended.text "Utiliser les paramètres proxy recommandés pour TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choisir un service d'anonymisation">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Relever automatiquement les nouveaux messages de tous les comptes [par défaut : désactivé]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Autoriser les connexions aux serveurs qui ne gèrent pas SSL/TLS avec renégociation sécurisée [défaut : ne pas autoriser]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Propre à un compte">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choisir un compte : ">
diff --git a/fr_CA/torbirdy.dtd b/fr_CA/torbirdy.dtd
index e6b0a8e..c459b6a 100644
--- a/fr_CA/torbirdy.dtd
+++ b/fr_CA/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Mandataire">
<!ENTITY torbirdy.prefs.privacy.label "Vie privée">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Sécurité">
<!ENTITY torbirdy.prefs.recommended.text "Utiliser les paramètres de mandataire recommandés pour TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choisir un service d'anonymisation">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Vérifier les nouveaux messages automatiquement pour tous les comptes [par défaut : désactivé]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Autoriser les connexions aux serveurs qui ne prennent pas en charge SSL/TLS avec renégociation sécurisée [par défaut : ne pas autoriser]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Spécifique au compte">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choisir un compte : ">
diff --git a/he/torbirdy.dtd b/he/torbirdy.dtd
index a02fb8b..9d3c977 100644
--- a/he/torbirdy.dtd
+++ b/he/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "פרוקסי">
<!ENTITY torbirdy.prefs.privacy.label "פרטיות">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "אבטחה">
<!ENTITY torbirdy.prefs.recommended.text "השתמש בהגדרות פרוקסי מומלצות עבור TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "בחר שרות אלמוניות">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "בדוק אם התקבלו הודעות חדשות אוטומטית עבור כל החשבונות [ברירת מחדל: מנוטרל]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "התר חיבורית לשרתים שאינם תומכים בהצפנות SSL/TLS עם חידוש משא ומתן מאובטח [ברירת מחדל: אל תתיר]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "חשבון ספציפי">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "בחר חשבון: ">
diff --git a/hr_HR/torbirdy.dtd b/hr_HR/torbirdy.dtd
index 0d49ba9..194f597 100644
--- a/hr_HR/torbirdy.dtd
+++ b/hr_HR/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privatnost">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Sigurnost">
<!ENTITY torbirdy.prefs.recommended.text "Koristite preporučene postavke proxy-a za TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Odaberite jednu od anonimizacijskih usluga">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Automatski provjerite za nove poruke za sve račune [zadano: isključeno]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Dopustite veze sa serverima koji ne podržavaju SSL/TLS sa sigurnim ponovnim pregovorima [zadano: ne dopuštaj]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Određeno za račun">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Odaberite račun:">
diff --git a/hu/torbirdy.dtd b/hu/torbirdy.dtd
index 4900b57..20b9505 100644
--- a/hu/torbirdy.dtd
+++ b/hu/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Adatvédelem">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Biztonság">
<!ENTITY torbirdy.prefs.recommended.text "Az ajánlott proxy beállítások használata a TorBirdy (Tor) használatához">
<!ENTITY torbirdy.prefs.recommended.key "a">
<!ENTITY torbirdy.prefs.anonservice.text "Névtelenné tevő szerver választása">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "n">
<!ENTITY torbirdy.prefs.automatic.label "Új üzenetek ellenőrzése minden felhasználónál [Alapértelmezés: kikapcsolva]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Csatlakozás engedélyezése olyan szerverekhez amelyek nem támogatják az SSL/TLS protokoll secure renegotiation funkcióját [alapértelmezett: ne engedélyezze]">
-<!ENTITY torbirdy.prefs.renegotiation.key "a">
<!ENTITY torbirdy.prefs.account_specific "Fiók-specifikus">
<!ENTITY torbirdy.prefs.select_account.key "V">
<!ENTITY torbirdy.prefs.select_account.label "Válasszon egy fiókot:">
diff --git a/id/torbirdy.dtd b/id/torbirdy.dtd
index f85a95b..ffb58f5 100644
--- a/id/torbirdy.dtd
+++ b/id/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proksi">
<!ENTITY torbirdy.prefs.privacy.label "Privasi">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Keamanan">
<!ENTITY torbirdy.prefs.recommended.text "Gunakan pengaturan proksi yang disarankan untuk TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Pilih layanan anonim">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "P">
<!ENTITY torbirdy.prefs.automatic.label "Periksa pesan baru secara otomatis untuk semua akun [bawaan: non-aktif]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Fungsikan koneksi ke server yang tidak mendukung SSL/TLS dengan renegosiasi aman [bawaan: tidak bisa]">
-<!ENTITY torbirdy.prefs.renegotiation.key "P">
<!ENTITY torbirdy.prefs.account_specific "Spesifik ke Akun Tertentu">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Pilih akun:">
diff --git a/it/torbirdy.dtd b/it/torbirdy.dtd
index 760cd5e..bf560bf 100644
--- a/it/torbirdy.dtd
+++ b/it/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Sicurezza">
<!ENTITY torbirdy.prefs.recommended.text "Utilizza le impostazioni consigliate per TorBirdy(Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Scegli un servizio per l'anonimato">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Controlla automaticamente nuovi messaggi per tutti gli account [disabilitato di default]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Permetti connessioni a server che non supportano SSL/TLS con rinegoziazione sicura [predefinito: non permettere]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Relativo all'Account">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Seleziona un account:">
diff --git a/ja/torbirdy.dtd b/ja/torbirdy.dtd
index 64cd3da..68e3dc9 100644
--- a/ja/torbirdy.dtd
+++ b/ja/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "プロクシ設定">
<!ENTITY torbirdy.prefs.privacy.label "プライバシー設定">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmailの設定">
-<!ENTITY torbirdy.prefs.security.label "セキュリティ設定">
<!ENTITY torbirdy.prefs.recommended.text "Torbirdyに推奨されるプロキシ設定を使用 (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "匿名化サービスを選択">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "自動的にすべてのアカウントで新しいメッセージを確認 [既定: 無効]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "安全な再ネゴシエーションでSSL/TLSをサポートしていないサーバーへの接続を許可する [デフォルト: 許可しない]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "アカウント特有">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "アカウントを選択:">
diff --git a/km/torbirdy.dtd b/km/torbirdy.dtd
index 8726098..d283170 100644
--- a/km/torbirdy.dtd
+++ b/km/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "ប្រូកស៊ី">
<!ENTITY torbirdy.prefs.privacy.label "ភាពឯកជន">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "សន្តិសុខ">
<!ENTITY torbirdy.prefs.recommended.text "ប្រើការកំណត់ប្រូកស៊ីដែលផ្ដល់អនុសាសន៍សម្រាប់ (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "ជ្រើសសេវាកម្ម anonymization">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "ពិនិត្យមើលសារថ្មីៗដោយស្វ័យប្រវត្តិសម្រាប់គណនីទាំងអស់ [លំនាំដើម៖ បានបិទ]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "អនុញ្ញាតឲ្យតភ្ជាប់ទៅម៉ាស៊ីនមេដែលមិនគាំទ្រ SSL/TLS ដោយប្រើកិច្ចពិភាក្សាសុវត្ថិភាព [លំនាំដើម៖ មិនអនុញ្ញាត]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "គណនីជាក់លាក់">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "ជ្រើសគណនី៖">
diff --git a/ko/torbirdy.dtd b/ko/torbirdy.dtd
index 46c4b01..b1db905 100644
--- a/ko/torbirdy.dtd
+++ b/ko/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "프록시">
<!ENTITY torbirdy.prefs.privacy.label "개인 정보">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label " 보안">
<!ENTITY torbirdy.prefs.recommended.text "Tor버디(Tor)에게 권장하는 프록시 설정을 사용합니다.">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "익명 서비스 선택">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "모든 계정에 대해 자동으로 새 메시지를 확인 [기본값 : 사용 안 함]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "SSL/TLS가 호환되지 않는 사이트에의 비보호 접근을 허용 [기본 설정: 비허용]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "계정별">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "계정 선택 : ">
diff --git a/lv/torbirdy.dtd b/lv/torbirdy.dtd
index 1302259..02fcb42 100644
--- a/lv/torbirdy.dtd
+++ b/lv/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Starpnieks">
<!ENTITY torbirdy.prefs.privacy.label "Privātums">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Drošība">
<!ENTITY torbirdy.prefs.recommended.text "Lietot ieteiktos starpnieka iestatījumus TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Izvēlieties anonimizācijas pakalpojumu">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Automātiski pārbaudīt visos kontos vai ir jauni ziņojumi [noklusējumvērtība: atspējots]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Atļaut tādu serveru savienojumus, kuri nenodrošina SSL/TLS ar drošu atkārtotu vienošanos [noklusējuma vērtība: neatļaut]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Kontam-piemītošs">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Izvēlēties kontu:">
diff --git a/mk/torbirdy.dtd b/mk/torbirdy.dtd
index a3f26dc..4d108a1 100644
--- a/mk/torbirdy.dtd
+++ b/mk/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "прокси">
<!ENTITY torbirdy.prefs.privacy.label "Приватност">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Безбедност">
<!ENTITY torbirdy.prefs.recommended.text "Користи ги препорачаните прокси подесувања за TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "P">
<!ENTITY torbirdy.prefs.anonservice.text "Користи услуга на анонимизација">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "P">
<!ENTITY torbirdy.prefs.automatic.label "Провери автоматски дали има нови пораки за сите сметки [основно: оневозможено]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Дозволи конекции кон сервери кои не подржуваат SSL/TLS со безбедни повторни преговори [основно: не дозволувај]">
-<!ENTITY torbirdy.prefs.renegotiation.key "P">
<!ENTITY torbirdy.prefs.account_specific "Специфични за сметка">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Избери сметка:">
diff --git a/ms_MY/torbirdy.dtd b/ms_MY/torbirdy.dtd
index 6a370d7..ad704ff 100644
--- a/ms_MY/torbirdy.dtd
+++ b/ms_MY/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proksi">
<!ENTITY torbirdy.prefs.privacy.label "Privasi">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Keselamatan">
<!ENTITY torbirdy.prefs.recommended.text "Guna tetapan proksi yang digalakkan untuk TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Pilih servis keselamatan anda">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Semak mesej baru secara automatik untuk semua akaun [default: dimatikan]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Benarkan sambungan kepada pelayan yang tidak menyokong SSL / TLS dengan rundingan semula selamat [default: tidak membenarkan]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Akaun-spesifik">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Pilih akaun:">
diff --git a/nb/torbirdy.dtd b/nb/torbirdy.dtd
index 940cec0..3b5db95 100644
--- a/nb/torbirdy.dtd
+++ b/nb/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Mellomtjener">
<!ENTITY torbirdy.prefs.privacy.label "Personvern">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Sikkerhet">
<!ENTITY torbirdy.prefs.recommended.text "Bruk anbefalte mellomtjeningsinnstillinger for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Velg en anonymiseringstjeneste">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Se etter nye meldinger automatisk på alle kontoer [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Tillat tilkoblinger til tjenere som ikke støtter SSL/TLS med sikker omforhandling [forvalg: ikke tillat]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Kontospesifikt">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Velg en konto:">
diff --git a/nl/torbirdy.dtd b/nl/torbirdy.dtd
index b3f733a..d131314 100644
--- a/nl/torbirdy.dtd
+++ b/nl/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Beveiliging">
<!ENTITY torbirdy.prefs.recommended.text "Aanbevolen configuratie voor TorBirdy (Tor) gebruiken">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Kies een anonimiseringsdienst">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Controleer automatisch op nieuwe berichten voor alle accounts [standaard: uitgeschakeld]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Sta connecties met servers die SSL/TLS met "safe renegotiation" niet ondersteunen toe [standaard: niet toestaan]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-specifiek">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Kies een account: ">
diff --git a/nn/torbirdy.dtd b/nn/torbirdy.dtd
index a55f454..8f3d4a4 100644
--- a/nn/torbirdy.dtd
+++ b/nn/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Mellomtenar">
<!ENTITY torbirdy.prefs.privacy.label "Personvern">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Tryggleik">
<!ENTITY torbirdy.prefs.recommended.text "Bruk tilrådde mellomtenarinnstillingar for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Vel ei anonymiseringsteneste">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "h">
<!ENTITY torbirdy.prefs.automatic.label "Sjå etter nye meldingar automatisk på alle kontoar [standard: dslått av] ">
<!ENTITY torbirdy.prefs.automatic.key "p">
-<!ENTITY torbirdy.prefs.renegotiation.label "Tillat tilkoplingar til tenarar som ikkje støttar SSL/TLS med trygg attkjenning [standard: ikkje tillat]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Konto-spesifikk">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Vel ein konto:">
diff --git a/pa/torbirdy.dtd b/pa/torbirdy.dtd
index 2ef331e..ce19f00 100644
--- a/pa/torbirdy.dtd
+++ b/pa/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "ਪਰਾਕਸੀ">
<!ENTITY torbirdy.prefs.privacy.label "ਪਰਾਈਵੇਸੀ">
<!ENTITY torbirdy.prefs.enigmail.label "ਏਨਿਗਮੇਲ">
-<!ENTITY torbirdy.prefs.security.label "ਸੁਰੱਖਿਆ">
<!ENTITY torbirdy.prefs.recommended.text "ਟੋਰਬਰਡੀ ਲਈ ਆਖੀ ਹੋਈ ਪਰਾਕਸੀ ਸੈਟਿੰਗ ਵਰਤੋਂ ਕਰੋ (ਟੋਰ)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "ਅਗਿਆਤ ਸੇਵਾ ਚੁਣੋ">
@@ -46,8 +45,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "ਨਵੇਂ ਸੰਦੇਸ਼ਾਂ ਵਾਸਤੇ ਚੇਕ ਕਰੋ ਸਾਰੇ ਅਕਾਊਂਟਸ ਲਈ">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "ਜੇ ਸਰਵਰ ਤੇ SSL /TLS Secure Regontiation ਦੀ ਸਹਾਇਤਾ ਨਹੀਂ ਹੈ ਤਾਂ ਵੀ ਕਨੇਕਟ ਕਰੋ">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "ਖਾਤਾ-ਖਾਸ">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "ਖਾਤਾ ਚੁਣੋ:">
diff --git a/pl/torbirdy.dtd b/pl/torbirdy.dtd
index da08cd2..09cc90a 100644
--- a/pl/torbirdy.dtd
+++ b/pl/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Prywatność">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Bezpieczeństwo">
<!ENTITY torbirdy.prefs.recommended.text "Użyj zalecanych ustawień proxy dla TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "j">
<!ENTITY torbirdy.prefs.anonservice.text "Wybierz usługę anonimizującą">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Sprawdź czy masz nowe wiadomości na wszystkich kontach [domyślnie: wyłączone]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Zezwalaj na połączenia do serwerów nie obsługujących SSL/TLS z bezpieczną renegocjacją [domyślne: nie zezwalaj]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Specyficzne dla konta">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Wybierz konto:">
diff --git a/pt/torbirdy.dtd b/pt/torbirdy.dtd
index 963516e..d299b2a 100644
--- a/pt/torbirdy.dtd
+++ b/pt/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Definições de Privacidade">
<!ENTITY torbirdy.prefs.enigmail.label "Configurações do Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Configurações de Segurança">
<!ENTITY torbirdy.prefs.recommended.text "Use as configurações de proxy recomendadas para o TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Escolha um serviço de anonimização">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Verificar a existência de novas mensagens automaticamente em todas as contas [por defeito: desativado]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Permitir ligações a servidores que não suportem SSL/TLS com renegociação segura [por defeito: não permitir]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Específico-da-Conta">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Escolha uma conta:">
diff --git a/pt_BR/torbirdy.dtd b/pt_BR/torbirdy.dtd
index c6bd01d..39d037b 100644
--- a/pt_BR/torbirdy.dtd
+++ b/pt_BR/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacidade">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Segurança">
<!ENTITY torbirdy.prefs.recommended.text "Use as configurações de proxy recomendadas para o TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Escolher um serviço de anonimato">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Verificar automaticamente as novas mensagens em todas as contas [padrão: desabilitado]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Permitir conexões a provedores que não possuem suporte para SSL/TLS com renegociação segura [padrão: não permitir]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Conta Específica">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Escolher uma conta:">
diff --git a/ro/torbirdy.dtd b/ro/torbirdy.dtd
index 342cda5..bd174ff 100644
--- a/ro/torbirdy.dtd
+++ b/ro/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Intimitate">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Securitate">
<!ENTITY torbirdy.prefs.recommended.text "Folosește setările proxy recomandate pentru TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Alege un serviciu de anonimizare">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "p">
<!ENTITY torbirdy.prefs.automatic.label "Verifică pentru mesaje noi automat pentru toate conturile [implicit: dezactivat]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Permite conexiunile către servere care nu suportă SSL/TLS cu renegociere sigură [implicit: nu permite]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Specific contului">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Alege un cont:">
diff --git a/ru/torbirdy.dtd b/ru/torbirdy.dtd
index 0c4875d..9ee15ee 100644
--- a/ru/torbirdy.dtd
+++ b/ru/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Прокси-сервер">
<!ENTITY torbirdy.prefs.privacy.label "Приватность">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Безопасность">
<!ENTITY torbirdy.prefs.recommended.text "Использовать рекомендуемые параметры прокси-сервера для TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Выберите сервис анонимизации">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Автоматически проверять новые сообщения для всех новых аккаунтов [по умолчанию: отключено]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Разрешить соединения с серверами не поддерживающими SSL/TLS с безопасным согласованием [по умолчанию: запретить]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Определяемые учетной записью">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Выберите учётную запись:">
diff --git a/sk/torbirdy.dtd b/sk/torbirdy.dtd
index 7afe744..6d910fd 100644
--- a/sk/torbirdy.dtd
+++ b/sk/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Súkromie">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Bezpečnosť">
<!ENTITY torbirdy.prefs.recommended.text "Použiť odporúčané nastavenie proxy pre TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Použiť anonymizačnú službu">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Skontrolovať nové správy automaticky pre všetky účty [štandardne: vypnuté]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Umožniť pripojenia k serverom nepodporujúcim SSL/TLS s bezpečným prehodnocovaním [štandardne: neumožniť]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Špecifické pre účet">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Vyberte účet:">
diff --git a/sl_SI/torbirdy.dtd b/sl_SI/torbirdy.dtd
index 8dcf947..017b37c 100644
--- a/sl_SI/torbirdy.dtd
+++ b/sl_SI/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Zasebnost">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Varnost">
<!ENTITY torbirdy.prefs.recommended.text "Uporabite priporočene proxy nastavitve za TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Izberite anonimno storitev">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Preveri za sporočila avtomatsko za vse račune [privzeto: onemogoči]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Dovoli povezave na serverje, ki ne podpirajo SSL/TLS varnostna pogajanja [privzeto: nedovoli]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Račun-Poseben">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Izberite račun:">
diff --git a/sq/torbirdy.dtd b/sq/torbirdy.dtd
index 5f77497..872cc8c 100644
--- a/sq/torbirdy.dtd
+++ b/sq/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privatësi">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Siguria">
<!ENTITY torbirdy.prefs.recommended.text "Përdorni konfigurimin e rekomanduar të proxy-t për TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Zgjidhni një shërbim anonimizimi">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Kontrolloni automatikisht për mesazhe të reja për çdo llogari [parazgjedhja: jo aktive]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Lejoni lidhjet me shërbyesit që nuk mundësojnë SSL/TLS me rinegocim të sigurt [parazgjedhja: mos lejoni]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Veçoritë e Llogarisë">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Përzgjidhni një llogari">
diff --git a/sr/torbirdy.dtd b/sr/torbirdy.dtd
index ca7363c..19e94b5 100644
--- a/sr/torbirdy.dtd
+++ b/sr/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privatnost">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Sigurnost">
<!ENTITY torbirdy.prefs.recommended.text "Користите препоручена прокси подешавања за TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Изаберите сервис заштите (анонимности)">
@@ -49,9 +48,6 @@
<!ENTITY torbirdy.prefs.automatic.label "Проверите за нове поруке се аутоматски за све рачуне [дефаулт: искључен]
">
<!ENTITY torbirdy.prefs.automatic.key "ф">
-<!ENTITY torbirdy.prefs.renegotiation.label "Dozvolite povezivanje na servere koji ne podrzavaju SSL/TLS sa sigurnom rekonfiguracijom
-[standardn podesavanje: ne dozvoljavaj]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Специјално-за налог">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Изабери налог: ">
diff --git a/sv/torbirdy.dtd b/sv/torbirdy.dtd
index b4b74b7..44d0e74 100644
--- a/sv/torbirdy.dtd
+++ b/sv/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Integritet">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Säkerhet">
<!ENTITY torbirdy.prefs.recommended.text "Använd rekommenderade proxyinställningar för TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Välj en anonymiseringstjänst">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Kolla efter nya meddelanden automatiskt för alla konton [standard: inaktiverat]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Tillåt anslutningar till servrar som inte stöder SSL/TLS med säker omförhandling [standard: tillåt inte]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Konto-specifikt">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Välj ett konto:">
diff --git a/templates/torbirdy.dtd b/templates/torbirdy.dtd
index d670135..26d357e 100644
--- a/templates/torbirdy.dtd
+++ b/templates/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/tr/torbirdy.dtd b/tr/torbirdy.dtd
index 55c7490..8d8fc18 100644
--- a/tr/torbirdy.dtd
+++ b/tr/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Vekil Sunucu">
<!ENTITY torbirdy.prefs.privacy.label "Gizlilik">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Güvenlik">
<!ENTITY torbirdy.prefs.recommended.text "TorBirdy (Tor) için önerilen vekil sunucu ayarları kullanılsın">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Anonimleştirme hizmetini seçin">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Tüm hesaplar için iletiler otomatik olarak denetlensin [varsayılan: devre dışı]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Güvenli yeniden iletişim ile SSL/TLS desteklemeyen sunuculara erişilebilsin [varsayılan: devre dışı]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Hesaba Özgü">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Bir hesap seçin: ">
diff --git a/uk/torbirdy.dtd b/uk/torbirdy.dtd
index ef10fa3..8ee0441 100644
--- a/uk/torbirdy.dtd
+++ b/uk/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Проксі">
<!ENTITY torbirdy.prefs.privacy.label "Приватність">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Захист">
<!ENTITY torbirdy.prefs.recommended.text "Використовувати рекомендовані параметри проксі-сервера для TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Оберіть сервіс анонімізації">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Автоматично перевіряти нові повідомлення для всіх облікових записів [за замовчуванням: відключено]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Дозволити з'єднання з серверами, що не підтримують SSL/TLS з безпечним узгодженням [за замовчуванням: не дозволяти]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Визначається обліковим записом">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Виберіть акаунт:">
diff --git a/zh_CN/torbirdy.dtd b/zh_CN/torbirdy.dtd
index 5a84266..5488d75 100644
--- a/zh_CN/torbirdy.dtd
+++ b/zh_CN/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "代理">
<!ENTITY torbirdy.prefs.privacy.label "隐私">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "安全">
<!ENTITY torbirdy.prefs.recommended.text "使用推荐的 TorBirdy (Tor) 代理设置">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "选择匿名服务">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "所有账户自动检查新消息 [默认:禁用]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "允许连接至不支持具有安全重新协商机制的 SSL/TLS 的服务器 [默认:不允许]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "指定帐户">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "选择帐户:">
diff --git a/zh_HK/torbirdy.dtd b/zh_HK/torbirdy.dtd
index 1611c54..e866f78 100644
--- a/zh_HK/torbirdy.dtd
+++ b/zh_HK/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "代理伺服器">
<!ENTITY torbirdy.prefs.privacy.label "私隱">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "安全度">
<!ENTITY torbirdy.prefs.recommended.text "使用TorBirdy(Tor)建議嘅代理設定">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "選取一個匿名服務">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "自動檢查全部帳戶嘅新訊息[預設:停用]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "容許連線到唔具備支援SSL╱TLS安全重新交涉嘅伺服器[預設:唔容許]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "特定帳戶">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "請選取一個帳戶:">
diff --git a/zh_TW/torbirdy.dtd b/zh_TW/torbirdy.dtd
index 4b11498..9694b8d 100644
--- a/zh_TW/torbirdy.dtd
+++ b/zh_TW/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "代理伺服器">
<!ENTITY torbirdy.prefs.privacy.label "隱私權">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "安全性">
<!ENTITY torbirdy.prefs.recommended.text "在 TorBirdy (Tor) 中使用建議的代理伺服器設定">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "請選擇一個匿名服務">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "自動檢查所有帳戶的新訊息[預設:停用]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "允許連線到不具備支援 SSL / TLS 安全重新交涉的伺服器[預設:不允許]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "特定帳戶">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "請選擇一個帳戶:">
1
0
25 May '16
commit fda794720bf6de34f0bb2e46ed4e19c24bf158b6
Author: Translation commit bot <translation(a)torproject.org>
Date: Wed May 25 09:16:41 2016 +0000
Update translations for torbirdy
---
ach/torbirdy.dtd | 3 ---
ady/torbirdy.dtd | 3 ---
af/torbirdy.dtd | 3 ---
ak/torbirdy.dtd | 3 ---
am/torbirdy.dtd | 3 ---
ar/torbirdy.dtd | 3 ---
arn/torbirdy.dtd | 3 ---
ast/torbirdy.dtd | 3 ---
az/torbirdy.dtd | 3 ---
ba/torbirdy.dtd | 3 ---
be/torbirdy.dtd | 3 ---
bg/torbirdy.dtd | 3 ---
bn/torbirdy.dtd | 3 ---
bn_BD/torbirdy.dtd | 3 ---
bn_IN/torbirdy.dtd | 3 ---
bo/torbirdy.dtd | 3 ---
br/torbirdy.dtd | 3 ---
brx/torbirdy.dtd | 3 ---
bs/torbirdy.dtd | 3 ---
ca/torbirdy.dtd | 3 ---
ceb/torbirdy.dtd | 3 ---
cs/torbirdy.dtd | 3 ---
csb/torbirdy.dtd | 3 ---
cv/torbirdy.dtd | 3 ---
cy/torbirdy.dtd | 3 ---
da/torbirdy.dtd | 3 ---
de/torbirdy.dtd | 3 ---
dz/torbirdy.dtd | 3 ---
el/torbirdy.dtd | 3 ---
en_GB/torbirdy.dtd | 3 ---
eo/torbirdy.dtd | 3 ---
es/torbirdy.dtd | 3 ---
es_AR/torbirdy.dtd | 3 ---
es_CL/torbirdy.dtd | 3 ---
es_CO/torbirdy.dtd | 3 ---
es_MX/torbirdy.dtd | 3 ---
et/torbirdy.dtd | 3 ---
eu/torbirdy.dtd | 3 ---
fa/torbirdy.dtd | 3 ---
fi/torbirdy.dtd | 3 ---
fil/torbirdy.dtd | 3 ---
fo/torbirdy.dtd | 3 ---
fr/torbirdy.dtd | 3 ---
fr_CA/torbirdy.dtd | 3 ---
fur/torbirdy.dtd | 3 ---
fy/torbirdy.dtd | 3 ---
ga/torbirdy.dtd | 3 ---
gl/torbirdy.dtd | 3 ---
gu/torbirdy.dtd | 3 ---
gu_IN/torbirdy.dtd | 3 ---
gun/torbirdy.dtd | 3 ---
ha/torbirdy.dtd | 3 ---
he/torbirdy.dtd | 3 ---
hi/torbirdy.dtd | 3 ---
hr/torbirdy.dtd | 3 ---
hr_HR/torbirdy.dtd | 3 ---
ht/torbirdy.dtd | 3 ---
hu/torbirdy.dtd | 3 ---
hy/torbirdy.dtd | 3 ---
ia/torbirdy.dtd | 3 ---
id/torbirdy.dtd | 3 ---
is/torbirdy.dtd | 3 ---
it/torbirdy.dtd | 3 ---
ja/torbirdy.dtd | 3 ---
jv/torbirdy.dtd | 3 ---
ka/torbirdy.dtd | 3 ---
kk/torbirdy.dtd | 3 ---
km/torbirdy.dtd | 3 ---
kn/torbirdy.dtd | 3 ---
ko/torbirdy.dtd | 3 ---
ko_KR/torbirdy.dtd | 3 ---
ku/torbirdy.dtd | 3 ---
ku_IQ/torbirdy.dtd | 3 ---
kw/torbirdy.dtd | 3 ---
ky/torbirdy.dtd | 3 ---
la/torbirdy.dtd | 3 ---
lb/torbirdy.dtd | 3 ---
lg/torbirdy.dtd | 3 ---
ln/torbirdy.dtd | 3 ---
lo/torbirdy.dtd | 3 ---
lt/torbirdy.dtd | 3 ---
lv/torbirdy.dtd | 3 ---
mg/torbirdy.dtd | 3 ---
mi/torbirdy.dtd | 3 ---
mk/torbirdy.dtd | 3 ---
ml/torbirdy.dtd | 3 ---
mn/torbirdy.dtd | 3 ---
mr/torbirdy.dtd | 3 ---
ms_MY/torbirdy.dtd | 3 ---
mt/torbirdy.dtd | 3 ---
my/torbirdy.dtd | 3 ---
nah/torbirdy.dtd | 3 ---
nap/torbirdy.dtd | 3 ---
nb/torbirdy.dtd | 3 ---
nds/torbirdy.dtd | 3 ---
ne/torbirdy.dtd | 3 ---
nl/torbirdy.dtd | 3 ---
nl_BE/torbirdy.dtd | 3 ---
nn/torbirdy.dtd | 3 ---
nso/torbirdy.dtd | 3 ---
oc/torbirdy.dtd | 3 ---
or/torbirdy.dtd | 3 ---
pa/torbirdy.dtd | 3 ---
pap/torbirdy.dtd | 3 ---
pl/torbirdy.dtd | 3 ---
pms/torbirdy.dtd | 3 ---
ps/torbirdy.dtd | 3 ---
pt/torbirdy.dtd | 3 ---
pt_BR/torbirdy.dtd | 3 ---
ro/torbirdy.dtd | 3 ---
ru/torbirdy.dtd | 3 ---
ru(a)petr1708/torbirdy.dtd | 3 ---
scn/torbirdy.dtd | 3 ---
sco/torbirdy.dtd | 3 ---
si_LK/torbirdy.dtd | 3 ---
sk/torbirdy.dtd | 3 ---
sk_SK/torbirdy.dtd | 3 ---
sl/torbirdy.dtd | 3 ---
sl_SI/torbirdy.dtd | 3 ---
sn/torbirdy.dtd | 3 ---
so/torbirdy.dtd | 3 ---
son/torbirdy.dtd | 3 ---
sq/torbirdy.dtd | 3 ---
sr/torbirdy.dtd | 4 ----
sr(a)latin/torbirdy.dtd | 3 ---
st/torbirdy.dtd | 3 ---
su/torbirdy.dtd | 3 ---
sv/torbirdy.dtd | 3 ---
sw/torbirdy.dtd | 3 ---
szl/torbirdy.dtd | 3 ---
ta/torbirdy.dtd | 3 ---
te/torbirdy.dtd | 3 ---
te_IN/torbirdy.dtd | 3 ---
templates/torbirdy.dtd | 3 ---
tg/torbirdy.dtd | 3 ---
th/torbirdy.dtd | 3 ---
ti/torbirdy.dtd | 3 ---
tk/torbirdy.dtd | 3 ---
tr/torbirdy.dtd | 3 ---
tzm/torbirdy.dtd | 3 ---
ug(a)Arab/torbirdy.dtd | 3 ---
uk/torbirdy.dtd | 3 ---
ur/torbirdy.dtd | 3 ---
ur_PK/torbirdy.dtd | 3 ---
uz/torbirdy.dtd | 3 ---
ve/torbirdy.dtd | 3 ---
vi/torbirdy.dtd | 3 ---
wa/torbirdy.dtd | 3 ---
wo/torbirdy.dtd | 3 ---
yo/torbirdy.dtd | 3 ---
zh_CN/torbirdy.dtd | 3 ---
zh_HK/torbirdy.dtd | 3 ---
zh_TW/torbirdy.dtd | 3 ---
zu/torbirdy.dtd | 3 ---
154 files changed, 463 deletions(-)
diff --git a/ach/torbirdy.dtd b/ach/torbirdy.dtd
index d670135..26d357e 100644
--- a/ach/torbirdy.dtd
+++ b/ach/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/ady/torbirdy.dtd b/ady/torbirdy.dtd
index d670135..26d357e 100644
--- a/ady/torbirdy.dtd
+++ b/ady/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/af/torbirdy.dtd b/af/torbirdy.dtd
index fe313d4..c989316 100644
--- a/af/torbirdy.dtd
+++ b/af/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Volmag 'proxy'">
<!ENTITY torbirdy.prefs.privacy.label "Privaatheid">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Sekuriteit">
<!ENTITY torbirdy.prefs.recommended.text "Gebruik die voorgestelde volmag 'proxy' instellings vir TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Kies ń anonimiserings diens">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Kyk outomaties vir nuwe boodskappe vir alle rekeninge [verstek 'default': afgeskakel]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Laat verbindings toe aan bedieners 'servers' wat nie SSL / TLS ondersteun met veilige heronderhandeling nie [verstek 'default': moenie toelaat]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Rekening-spesifiek">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Kies ń rekening">
diff --git a/ak/torbirdy.dtd b/ak/torbirdy.dtd
index fffa753..1c46644 100644
--- a/ak/torbirdy.dtd
+++ b/ak/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/am/torbirdy.dtd b/am/torbirdy.dtd
index 6770e80..4d138ef 100644
--- a/am/torbirdy.dtd
+++ b/am/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "ተኪ">
<!ENTITY torbirdy.prefs.privacy.label "ግላዊነት">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "ደህንነት">
<!ENTITY torbirdy.prefs.recommended.text "የሚመከሩት የTorBirdy (Tor) ተኪ ቅብሮችን ተጠቀም">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "የስም-አልባ ማድረጊያ አገልግሎትን ምረጥ">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "ለሁሉም መለያዎች አዲስ መልዕክቶችን ካሉ በራስ-ሰር አረጋግጥ [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "ከአገልጋዮች ጋር የሚደረጉ ደህንነቱ የተጠበቀ ዳግም ድርድር ያለው SSL/TLSን የማይደግፉ ግኙነቶችን ፍቀድ [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "መለያ-ተኮር">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "መለያ ይምረጡ፦">
diff --git a/ar/torbirdy.dtd b/ar/torbirdy.dtd
index fb714c4..5a05511 100644
--- a/ar/torbirdy.dtd
+++ b/ar/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "بروكسي">
<!ENTITY torbirdy.prefs.privacy.label "خصوصية">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "أمن">
<!ENTITY torbirdy.prefs.recommended.text "استعمل خيارات البروكسي الموصى بها لتوربيردي (تور)">
<!ENTITY torbirdy.prefs.recommended.key "م">
<!ENTITY torbirdy.prefs.anonservice.text "اختر خدمة اخفاء هوية">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "ث">
<!ENTITY torbirdy.prefs.automatic.label "تحقق من وجود رسائل جديدة تلقائيًا لكل الحسابات [الوضع الافتراضي: مُعطل]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "سماح الأتصال بالخوادم التي لا تدعم SSL/TLS مع إعادة التفاوض آمنة [الوضع الأفتراضي: لا تسمح]">
-<!ENTITY torbirdy.prefs.renegotiation.key "ه">
<!ENTITY torbirdy.prefs.account_specific "خاص بالحساب">
<!ENTITY torbirdy.prefs.select_account.key "س">
<!ENTITY torbirdy.prefs.select_account.label "اختر حساباً">
diff --git a/arn/torbirdy.dtd b/arn/torbirdy.dtd
index fffa753..1c46644 100644
--- a/arn/torbirdy.dtd
+++ b/arn/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/ast/torbirdy.dtd b/ast/torbirdy.dtd
index fffa753..1c46644 100644
--- a/ast/torbirdy.dtd
+++ b/ast/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/az/torbirdy.dtd b/az/torbirdy.dtd
index 18d3f59..e2c6a17 100644
--- a/az/torbirdy.dtd
+++ b/az/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proksi">
<!ENTITY torbirdy.prefs.privacy.label "Şəxsilik">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Təhlükəsizlik">
<!ENTITY torbirdy.prefs.recommended.text "TorBirdy (Tor) üçün məsləhət edilən proksi parametrlərini istifadə et">
<!ENTITY torbirdy.prefs.recommended.key "P">
<!ENTITY torbirdy.prefs.anonservice.text "Anonimləşdirmə xidmətini seç">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "P">
<!ENTITY torbirdy.prefs.automatic.label "Bütün hesablar üçün avtomatik yeni mesajları yoxla [ilkin hal: deaktivə edilib]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Təhlükəsiz danışıqlar ilə SSL/TLS-i dəstəkləməyən əlaqələrin serverlə əlaqəsinə icazə ver [ilkin hal: icazə vermə]">
-<!ENTITY torbirdy.prefs.renegotiation.key "P">
<!ENTITY torbirdy.prefs.account_specific "Hesabla Bağlı">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Hesab seç:">
diff --git a/ba/torbirdy.dtd b/ba/torbirdy.dtd
index d670135..26d357e 100644
--- a/ba/torbirdy.dtd
+++ b/ba/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/be/torbirdy.dtd b/be/torbirdy.dtd
index fffa753..1c46644 100644
--- a/be/torbirdy.dtd
+++ b/be/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/bg/torbirdy.dtd b/bg/torbirdy.dtd
index bd39127..a023b4d 100644
--- a/bg/torbirdy.dtd
+++ b/bg/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Прокси">
<!ENTITY torbirdy.prefs.privacy.label "Поверителност">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail - OpenPGP интерфейс за криптиране и автентификация на съобщения за вашата клиентска програма за е-поща, като Thunderbird и Outlook.">
-<!ENTITY torbirdy.prefs.security.label "Сигурност">
<!ENTITY torbirdy.prefs.recommended.text "Използвай препоръчителните настройки за прокси в TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Изберете анонимизираща услуга">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Провери автоматично за нови съобщения за всички акаунти [По подразбиране: изключено]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Позволете връзки към сървъри, които не поддържат SSL/TLS със сигурно предоговаряне [по подразбиране: непозволено]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Специфичен-Профил">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Изберете профил:">
diff --git a/bn/torbirdy.dtd b/bn/torbirdy.dtd
index 5713d24..9768a29 100644
--- a/bn/torbirdy.dtd
+++ b/bn/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/bn_BD/torbirdy.dtd b/bn_BD/torbirdy.dtd
index d670135..26d357e 100644
--- a/bn_BD/torbirdy.dtd
+++ b/bn_BD/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/bn_IN/torbirdy.dtd b/bn_IN/torbirdy.dtd
index fffa753..1c46644 100644
--- a/bn_IN/torbirdy.dtd
+++ b/bn_IN/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/bo/torbirdy.dtd b/bo/torbirdy.dtd
index fffa753..1c46644 100644
--- a/bo/torbirdy.dtd
+++ b/bo/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/br/torbirdy.dtd b/br/torbirdy.dtd
index fffa753..1c46644 100644
--- a/br/torbirdy.dtd
+++ b/br/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/brx/torbirdy.dtd b/brx/torbirdy.dtd
index d670135..26d357e 100644
--- a/brx/torbirdy.dtd
+++ b/brx/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/bs/torbirdy.dtd b/bs/torbirdy.dtd
index 366e48b..d54cef2 100644
--- a/bs/torbirdy.dtd
+++ b/bs/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privatnost">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail - Extenzija za enkripciju i dekripciju podataka.">
-<!ENTITY torbirdy.prefs.security.label "Sigurnost">
<!ENTITY torbirdy.prefs.recommended.text "Koristite preporučene proxy postavke za TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Odaberi servis za anonimizaciju">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Automatski provjeri da li ima novih poruka za sve račune [standardno: isključeno]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Omoguci veze sa serverima koji ne podržavaju SSL / TLS sa sigurnim reprograma [Standardno: nemoj omoguciti]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Vezano za račun">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Odaberi račun">
diff --git a/ca/torbirdy.dtd b/ca/torbirdy.dtd
index ac77423..0b91316 100644
--- a/ca/torbirdy.dtd
+++ b/ca/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Servidor intermediari">
<!ENTITY torbirdy.prefs.privacy.label "Privadesa">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Seguretat">
<!ENTITY torbirdy.prefs.recommended.text "Utilitza la configuració del servidor intermediari recomanat per TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Tria un servei d'anonimat">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "p">
<!ENTITY torbirdy.prefs.automatic.label "Revisa els nous missatges automàticament per a tots els comptes [per defecte: desactivat]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Permet connexions a servidors que no suporten SSL/TLS amb renegociació segura [per defecte: no permès]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Per compte">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Trieu un compte:">
diff --git a/ceb/torbirdy.dtd b/ceb/torbirdy.dtd
index d670135..26d357e 100644
--- a/ceb/torbirdy.dtd
+++ b/ceb/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/cs/torbirdy.dtd b/cs/torbirdy.dtd
index 5936286..fab510f 100644
--- a/cs/torbirdy.dtd
+++ b/cs/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Soukromí">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Bezpečnost">
<!ENTITY torbirdy.prefs.recommended.text "Použít doporučené nastavení proxy pro TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Použít anonymizační službu">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Automatická kontrola nových zpráv na všech účtech [standartně: nepovoleno]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Povolit přípojení k serverům, které nepodporují SSL/TLS s bezpečným opětovným sjednáním. [standartně: nepovoluje]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Účet-specifický">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Vyber účet:">
diff --git a/csb/torbirdy.dtd b/csb/torbirdy.dtd
index fffa753..1c46644 100644
--- a/csb/torbirdy.dtd
+++ b/csb/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/cv/torbirdy.dtd b/cv/torbirdy.dtd
index d670135..26d357e 100644
--- a/cv/torbirdy.dtd
+++ b/cv/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/cy/torbirdy.dtd b/cy/torbirdy.dtd
index 74b7dac..e4ad3b6 100644
--- a/cy/torbirdy.dtd
+++ b/cy/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Dirprwy">
<!ENTITY torbirdy.prefs.privacy.label "Preifatrwydd">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Diogeledd">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "p">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "p">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "p">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Dewisiwch gyfrif:">
diff --git a/da/torbirdy.dtd b/da/torbirdy.dtd
index 035288d..a4eb2a2 100644
--- a/da/torbirdy.dtd
+++ b/da/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privatliv">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Sikkerhed">
<!ENTITY torbirdy.prefs.recommended.text "Brug de anbefalede proxyindstillinger til TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Vælg en anonymiserings-service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Hent automatisk nye beskeder for alle konti [standardindstilling: slået fra]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Tillad forbindelser til servere der ikke understøtter SSL/TLS med sikker genforhandling [standard: tillad ikke]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Kontospecifik">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Vælg en konto:">
diff --git a/de/torbirdy.dtd b/de/torbirdy.dtd
index c0fee66..f895a4b 100644
--- a/de/torbirdy.dtd
+++ b/de/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Vermittlungsserver">
<!ENTITY torbirdy.prefs.privacy.label "Privatsphäre">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Sicherheit">
<!ENTITY torbirdy.prefs.recommended.text "Die empfohlenen Vermittlungsservereinstellungen für TorBirdy (Tor) benutzen">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Anonymisierungsdienst auswählen">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "T">
<!ENTITY torbirdy.prefs.automatic.label "Automatisch auf neue Nachrichten für alle Konten prüfen [Vorgabe: deaktiviert]">
<!ENTITY torbirdy.prefs.automatic.key "A">
-<!ENTITY torbirdy.prefs.renegotiation.label "Verbindungen zu Servern erlauben, die kein SSL/TLS mit sicherer Neuverhandlung unterstützen [Vorgabe: nicht erlauben]">
-<!ENTITY torbirdy.prefs.renegotiation.key "V">
<!ENTITY torbirdy.prefs.account_specific "Bestimmtes Konto">
<!ENTITY torbirdy.prefs.select_account.key "K">
<!ENTITY torbirdy.prefs.select_account.label "Konto auswählen: ">
diff --git a/dz/torbirdy.dtd b/dz/torbirdy.dtd
index fffa753..1c46644 100644
--- a/dz/torbirdy.dtd
+++ b/dz/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/el/torbirdy.dtd b/el/torbirdy.dtd
index 1a7a98d..ddfa6a2 100644
--- a/el/torbirdy.dtd
+++ b/el/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Ιδιωτικότητα">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Ασφάλεια">
<!ENTITY torbirdy.prefs.recommended.text "Χρήση των προτεινόμενων ρυθμίσεων Proxy για το TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Επιλογή μιας υπηρεσίας ανωνυμίας">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "β">
<!ENTITY torbirdy.prefs.automatic.label "Αυτόματος έλεγχος νέων μηνυμάτων για όλους τους λογαριασμούς [προεπιλογή: απενεργοποιημένο]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Να επιτρέπονται συνδέσεις σε διακομιστές που δεν υποστηρίζουν SSL / TLS με ασφαλή επαναδιαπραγμάτευση [προεπιλογή: να μην επιτρέπονται] ">
-<!ENTITY torbirdy.prefs.renegotiation.key "ρ">
<!ENTITY torbirdy.prefs.account_specific "Ειδικός λογαριασμός">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Επιλογή ενός λογαριασμού">
diff --git a/en_GB/torbirdy.dtd b/en_GB/torbirdy.dtd
index d670135..26d357e 100644
--- a/en_GB/torbirdy.dtd
+++ b/en_GB/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/eo/torbirdy.dtd b/eo/torbirdy.dtd
index bc63407..00ba5e4 100644
--- a/eo/torbirdy.dtd
+++ b/eo/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Sekureco">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "A">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "A">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "A">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/es/torbirdy.dtd b/es/torbirdy.dtd
index e59a3f8..97f99c3 100644
--- a/es/torbirdy.dtd
+++ b/es/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacidad">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Seguridad">
<!ENTITY torbirdy.prefs.recommended.text "Usar la configuración de proxy recomendada para TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "y">
<!ENTITY torbirdy.prefs.anonservice.text "Escoger un servicio de anonimización">
@@ -46,8 +45,6 @@
<!ENTITY torbirdy.prefs.automatic.label "Buscar mensajes nuevos automáticamente para todas
las cuentas [por defecto: dehabilitado]">
<!ENTITY torbirdy.prefs.automatic.key "t">
-<!ENTITY torbirdy.prefs.renegotiation.label "Permitir conexiones a servidores que no soporten SSL/TLS con renegociación segura [predeterminado: no permitir]">
-<!ENTITY torbirdy.prefs.renegotiation.key "x">
<!ENTITY torbirdy.prefs.account_specific "Configuración específica de la cuenta">
<!ENTITY torbirdy.prefs.select_account.key "e">
<!ENTITY torbirdy.prefs.select_account.label "Elegir una cuenta">
diff --git a/es_AR/torbirdy.dtd b/es_AR/torbirdy.dtd
index 1f9ca73..1dd0b28 100644
--- a/es_AR/torbirdy.dtd
+++ b/es_AR/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacidad">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Seguridad">
<!ENTITY torbirdy.prefs.recommended.text "Use los ajustes proxy recomendados para TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Elija un servicio de anonimatización">
@@ -48,8 +47,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Chequee nuevos mensajes automáticamente para todas las cuentas [valor por defecto: inhabilitado]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Permitir conexiones a servidores sin soporte SSL/TLS con renegociación segura [valor por defecto: no permitir]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Específico/a de la cuenta">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Elija una cuenta">
diff --git a/es_CL/torbirdy.dtd b/es_CL/torbirdy.dtd
index 416ad88..f77e1d1 100644
--- a/es_CL/torbirdy.dtd
+++ b/es_CL/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/es_CO/torbirdy.dtd b/es_CO/torbirdy.dtd
index 6a39421..ce2e3eb 100644
--- a/es_CO/torbirdy.dtd
+++ b/es_CO/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/es_MX/torbirdy.dtd b/es_MX/torbirdy.dtd
index 4168e2f..2d536bc 100644
--- a/es_MX/torbirdy.dtd
+++ b/es_MX/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacidad">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Seguridad">
<!ENTITY torbirdy.prefs.recommended.text "Usa la configuración proxy recomenada para TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Elija un servicio de anonimato">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Escoja una cuenta: ">
diff --git a/et/torbirdy.dtd b/et/torbirdy.dtd
index e038c63..ff3c3ee 100644
--- a/et/torbirdy.dtd
+++ b/et/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proksi">
<!ENTITY torbirdy.prefs.privacy.label "Privaatsus">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Turvalisus">
<!ENTITY torbirdy.prefs.recommended.text "Kasuta TorBirdy (Tor) jaoks soovituslikke proksi seadeid">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Vali anonümiseerimise teenus">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "v">
<!ENTITY torbirdy.prefs.automatic.label "Kontrolli kõigi kontode uusi sõnumeid [vaikimisi: keelatud]">
<!ENTITY torbirdy.prefs.automatic.key "u">
-<!ENTITY torbirdy.prefs.renegotiation.label "Luba ühendused serveritesse, mis ei toeta SSL/TLS ühenduse turvalist taaskokkuleppimist [vaikimisi: ära luba]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Konto spetsiifiline">
<!ENTITY torbirdy.prefs.select_account.key "f">
<!ENTITY torbirdy.prefs.select_account.label "Vali konto:">
diff --git a/eu/torbirdy.dtd b/eu/torbirdy.dtd
index efceca7..7523457 100644
--- a/eu/torbirdy.dtd
+++ b/eu/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy-a">
<!ENTITY torbirdy.prefs.privacy.label "Pribatutasuna">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Segurtasuna">
<!ENTITY torbirdy.prefs.recommended.text "TorBirdy(Tor)rentzako gomendatutako proxy ezarpenak erabili">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Aukeratu anonimotasun zerbitzu bat">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Egiaztatu mezu berririk dagoen kontu guztietarako [lehenetsia: ezgaituta]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "SSL/TLS birnegoziazioa onartzen ez duten zerbitzarietara konexioak baimendu [lehenetsia: ez baimendu]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Kontuaren araberakoa">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Kontu bat aukeratu:">
diff --git a/fa/torbirdy.dtd b/fa/torbirdy.dtd
index 05bd1fe..1409164 100644
--- a/fa/torbirdy.dtd
+++ b/fa/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "پروکسی">
<!ENTITY torbirdy.prefs.privacy.label "حریم خصوصی">
<!ENTITY torbirdy.prefs.enigmail.label "اِنیگ میل">
-<!ENTITY torbirdy.prefs.security.label "امنیت">
<!ENTITY torbirdy.prefs.recommended.text "از تنظیمات پراکسی توصیه شده برای توربِردی استفاده کن (تور)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "یک سرویس ناشناسی انتخاب کنید">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "پیام های جدید را به طور خودکار برای همه حساب ها بررسی کن [به طور پیش فرض: غیر فعال]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "اجازه برقراری ارتباط با سرورهایی که از SSL/TLS با مذاکره دوباره امن پشتیبانی نمیکنند [پیش فرض: غیرفعال]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "مخصوص حساب کاربری">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "یک حساب کاربری انتخاب کنید:">
diff --git a/fi/torbirdy.dtd b/fi/torbirdy.dtd
index 29a5572..f0c8e15 100644
--- a/fi/torbirdy.dtd
+++ b/fi/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Välityspalvelin">
<!ENTITY torbirdy.prefs.privacy.label "Yksityisyys">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Turvallisuus">
<!ENTITY torbirdy.prefs.recommended.text "Käytä suositeltuja välityspalvelinasetuksia TorBirdylle (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "R">
<!ENTITY torbirdy.prefs.anonservice.text "Valitse anonymisointipalvelu">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "m">
<!ENTITY torbirdy.prefs.automatic.label "Tarkista uudet viestit automaattisesti kaikille tileille [oletus: ei käytössä]">
<!ENTITY torbirdy.prefs.automatic.key "d">
-<!ENTITY torbirdy.prefs.renegotiation.label "Salli palvelimille yhteydet, jotka eivät tue SSL/TLS-yhteyskäytäntöä turvallisuuden uudelleenneuvottelulla [oletus: älä salli]">
-<!ENTITY torbirdy.prefs.renegotiation.key "S">
<!ENTITY torbirdy.prefs.account_specific "Tilikohtainen">
<!ENTITY torbirdy.prefs.select_account.key "E">
<!ENTITY torbirdy.prefs.select_account.label "Valitse tili:">
diff --git a/fil/torbirdy.dtd b/fil/torbirdy.dtd
index 5eab478..d8c6694 100644
--- a/fil/torbirdy.dtd
+++ b/fil/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/fo/torbirdy.dtd b/fo/torbirdy.dtd
index 7f71887..e4ae1ea 100644
--- a/fo/torbirdy.dtd
+++ b/fo/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privatir stillingar">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Trygd">
<!ENTITY torbirdy.prefs.recommended.text "Brúka viðmældir proxy-stillingar til TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Vel eina dulnevningar-tænastu">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "s">
<!ENTITY torbirdy.prefs.automatic.label "Kann fyri nýggjum boðum sjávvirkandi fyri allar kontur [vanliga ikki gildað]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Loyva samband við ambætarar, sum ikki brúka SSL/TLS við tryggum samráðingum [vanliga ikki loyvt]">
-<!ENTITY torbirdy.prefs.renegotiation.key "s">
<!ENTITY torbirdy.prefs.account_specific "Serliga fyri kontu">
<!ENTITY torbirdy.prefs.select_account.key "o">
<!ENTITY torbirdy.prefs.select_account.label "Vel eina kontu:">
diff --git a/fr/torbirdy.dtd b/fr/torbirdy.dtd
index b4d4ebc..64cc55c 100644
--- a/fr/torbirdy.dtd
+++ b/fr/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Vie privée">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Sécurité">
<!ENTITY torbirdy.prefs.recommended.text "Utiliser les paramètres proxy recommandés pour TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choisir un service d'anonymisation">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Relever automatiquement les nouveaux messages de tous les comptes [par défaut : désactivé]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Autoriser les connexions aux serveurs qui ne gèrent pas SSL/TLS avec renégociation sécurisée [défaut : ne pas autoriser]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Propre à un compte">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choisir un compte : ">
diff --git a/fr_CA/torbirdy.dtd b/fr_CA/torbirdy.dtd
index e6b0a8e..c459b6a 100644
--- a/fr_CA/torbirdy.dtd
+++ b/fr_CA/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Mandataire">
<!ENTITY torbirdy.prefs.privacy.label "Vie privée">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Sécurité">
<!ENTITY torbirdy.prefs.recommended.text "Utiliser les paramètres de mandataire recommandés pour TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choisir un service d'anonymisation">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Vérifier les nouveaux messages automatiquement pour tous les comptes [par défaut : désactivé]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Autoriser les connexions aux serveurs qui ne prennent pas en charge SSL/TLS avec renégociation sécurisée [par défaut : ne pas autoriser]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Spécifique au compte">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choisir un compte : ">
diff --git a/fur/torbirdy.dtd b/fur/torbirdy.dtd
index fffa753..1c46644 100644
--- a/fur/torbirdy.dtd
+++ b/fur/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/fy/torbirdy.dtd b/fy/torbirdy.dtd
index fffa753..1c46644 100644
--- a/fy/torbirdy.dtd
+++ b/fy/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/ga/torbirdy.dtd b/ga/torbirdy.dtd
index fffa753..1c46644 100644
--- a/ga/torbirdy.dtd
+++ b/ga/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/gl/torbirdy.dtd b/gl/torbirdy.dtd
index a8b095a..d0a836d 100644
--- a/gl/torbirdy.dtd
+++ b/gl/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Elixe unha conta:">
diff --git a/gu/torbirdy.dtd b/gu/torbirdy.dtd
index dd32fae..97b329e 100644
--- a/gu/torbirdy.dtd
+++ b/gu/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "P">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "P">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "P">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/gu_IN/torbirdy.dtd b/gu_IN/torbirdy.dtd
index 520fff9..f36cdd7 100644
--- a/gu_IN/torbirdy.dtd
+++ b/gu_IN/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "ટોરબર્ડિ (ટોર) માટે આગ્રહ કરેલ પ્રોક્સી ગોઠવણીઓ વાપરો">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "અજ્ઞાત થવાની સેવા પસંદ કરો">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "ખાતા-સંબંધિત">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "ખાતું પસંદ કરો: ">
diff --git a/gun/torbirdy.dtd b/gun/torbirdy.dtd
index fffa753..1c46644 100644
--- a/gun/torbirdy.dtd
+++ b/gun/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/ha/torbirdy.dtd b/ha/torbirdy.dtd
index fffa753..1c46644 100644
--- a/ha/torbirdy.dtd
+++ b/ha/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/he/torbirdy.dtd b/he/torbirdy.dtd
index a02fb8b..9d3c977 100644
--- a/he/torbirdy.dtd
+++ b/he/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "פרוקסי">
<!ENTITY torbirdy.prefs.privacy.label "פרטיות">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "אבטחה">
<!ENTITY torbirdy.prefs.recommended.text "השתמש בהגדרות פרוקסי מומלצות עבור TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "בחר שרות אלמוניות">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "בדוק אם התקבלו הודעות חדשות אוטומטית עבור כל החשבונות [ברירת מחדל: מנוטרל]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "התר חיבורית לשרתים שאינם תומכים בהצפנות SSL/TLS עם חידוש משא ומתן מאובטח [ברירת מחדל: אל תתיר]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "חשבון ספציפי">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "בחר חשבון: ">
diff --git a/hi/torbirdy.dtd b/hi/torbirdy.dtd
index c5ab3a2..fd816c3 100644
--- a/hi/torbirdy.dtd
+++ b/hi/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "निजता">
<!ENTITY torbirdy.prefs.enigmail.label "इनिग्मेल">
-<!ENTITY torbirdy.prefs.security.label "सुरक्षा ">
<!ENTITY torbirdy.prefs.recommended.text "टॉरबर्डी (टॉर) के लिए अनुशंसित प्रोक्सी सेटिंग्स का प्रयोग करें">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "एक अज्ञातीकरण सेवा चुनें">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "P/प">
<!ENTITY torbirdy.prefs.automatic.label "सभी खातों के लिए नये संदेशों कि स्वतः जाँच करें [मानक: अक्षम]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "खाता विशिष्ट">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "खाता चुनें">
diff --git a/hr/torbirdy.dtd b/hr/torbirdy.dtd
index 6f355e6..b2e1848 100644
--- a/hr/torbirdy.dtd
+++ b/hr/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Koristite preporučene proxy postavke za TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "k">
<!ENTITY torbirdy.prefs.anonservice.text "Odaberite jedan od anonimizacija usluga">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "k">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "k">
<!ENTITY torbirdy.prefs.account_specific "Određeno za račun">
<!ENTITY torbirdy.prefs.select_account.key "Z">
<!ENTITY torbirdy.prefs.select_account.label "Odaberi račun">
diff --git a/hr_HR/torbirdy.dtd b/hr_HR/torbirdy.dtd
index 0d49ba9..194f597 100644
--- a/hr_HR/torbirdy.dtd
+++ b/hr_HR/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privatnost">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Sigurnost">
<!ENTITY torbirdy.prefs.recommended.text "Koristite preporučene postavke proxy-a za TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Odaberite jednu od anonimizacijskih usluga">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Automatski provjerite za nove poruke za sve račune [zadano: isključeno]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Dopustite veze sa serverima koji ne podržavaju SSL/TLS sa sigurnim ponovnim pregovorima [zadano: ne dopuštaj]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Određeno za račun">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Odaberite račun:">
diff --git a/ht/torbirdy.dtd b/ht/torbirdy.dtd
index fffa753..1c46644 100644
--- a/ht/torbirdy.dtd
+++ b/ht/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/hu/torbirdy.dtd b/hu/torbirdy.dtd
index 4900b57..20b9505 100644
--- a/hu/torbirdy.dtd
+++ b/hu/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Adatvédelem">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Biztonság">
<!ENTITY torbirdy.prefs.recommended.text "Az ajánlott proxy beállítások használata a TorBirdy (Tor) használatához">
<!ENTITY torbirdy.prefs.recommended.key "a">
<!ENTITY torbirdy.prefs.anonservice.text "Névtelenné tevő szerver választása">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "n">
<!ENTITY torbirdy.prefs.automatic.label "Új üzenetek ellenőrzése minden felhasználónál [Alapértelmezés: kikapcsolva]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Csatlakozás engedélyezése olyan szerverekhez amelyek nem támogatják az SSL/TLS protokoll secure renegotiation funkcióját [alapértelmezett: ne engedélyezze]">
-<!ENTITY torbirdy.prefs.renegotiation.key "a">
<!ENTITY torbirdy.prefs.account_specific "Fiók-specifikus">
<!ENTITY torbirdy.prefs.select_account.key "V">
<!ENTITY torbirdy.prefs.select_account.label "Válasszon egy fiókot:">
diff --git a/hy/torbirdy.dtd b/hy/torbirdy.dtd
index fffa753..1c46644 100644
--- a/hy/torbirdy.dtd
+++ b/hy/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/ia/torbirdy.dtd b/ia/torbirdy.dtd
index 2f8654a..304b417 100644
--- a/ia/torbirdy.dtd
+++ b/ia/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/id/torbirdy.dtd b/id/torbirdy.dtd
index f85a95b..ffb58f5 100644
--- a/id/torbirdy.dtd
+++ b/id/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proksi">
<!ENTITY torbirdy.prefs.privacy.label "Privasi">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Keamanan">
<!ENTITY torbirdy.prefs.recommended.text "Gunakan pengaturan proksi yang disarankan untuk TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Pilih layanan anonim">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "P">
<!ENTITY torbirdy.prefs.automatic.label "Periksa pesan baru secara otomatis untuk semua akun [bawaan: non-aktif]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Fungsikan koneksi ke server yang tidak mendukung SSL/TLS dengan renegosiasi aman [bawaan: tidak bisa]">
-<!ENTITY torbirdy.prefs.renegotiation.key "P">
<!ENTITY torbirdy.prefs.account_specific "Spesifik ke Akun Tertentu">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Pilih akun:">
diff --git a/is/torbirdy.dtd b/is/torbirdy.dtd
index 07c1641..2248d3a 100644
--- a/is/torbirdy.dtd
+++ b/is/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/it/torbirdy.dtd b/it/torbirdy.dtd
index 760cd5e..bf560bf 100644
--- a/it/torbirdy.dtd
+++ b/it/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Sicurezza">
<!ENTITY torbirdy.prefs.recommended.text "Utilizza le impostazioni consigliate per TorBirdy(Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Scegli un servizio per l'anonimato">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Controlla automaticamente nuovi messaggi per tutti gli account [disabilitato di default]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Permetti connessioni a server che non supportano SSL/TLS con rinegoziazione sicura [predefinito: non permettere]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Relativo all'Account">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Seleziona un account:">
diff --git a/ja/torbirdy.dtd b/ja/torbirdy.dtd
index 64cd3da..68e3dc9 100644
--- a/ja/torbirdy.dtd
+++ b/ja/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "プロクシ設定">
<!ENTITY torbirdy.prefs.privacy.label "プライバシー設定">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmailの設定">
-<!ENTITY torbirdy.prefs.security.label "セキュリティ設定">
<!ENTITY torbirdy.prefs.recommended.text "Torbirdyに推奨されるプロキシ設定を使用 (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "匿名化サービスを選択">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "自動的にすべてのアカウントで新しいメッセージを確認 [既定: 無効]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "安全な再ネゴシエーションでSSL/TLSをサポートしていないサーバーへの接続を許可する [デフォルト: 許可しない]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "アカウント特有">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "アカウントを選択:">
diff --git a/jv/torbirdy.dtd b/jv/torbirdy.dtd
index fffa753..1c46644 100644
--- a/jv/torbirdy.dtd
+++ b/jv/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/ka/torbirdy.dtd b/ka/torbirdy.dtd
index 25a30d2..8d39d32 100644
--- a/ka/torbirdy.dtd
+++ b/ka/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "რ">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "რ">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "ჩ">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/kk/torbirdy.dtd b/kk/torbirdy.dtd
index d670135..26d357e 100644
--- a/kk/torbirdy.dtd
+++ b/kk/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/km/torbirdy.dtd b/km/torbirdy.dtd
index 8726098..d283170 100644
--- a/km/torbirdy.dtd
+++ b/km/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "ប្រូកស៊ី">
<!ENTITY torbirdy.prefs.privacy.label "ភាពឯកជន">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "សន្តិសុខ">
<!ENTITY torbirdy.prefs.recommended.text "ប្រើការកំណត់ប្រូកស៊ីដែលផ្ដល់អនុសាសន៍សម្រាប់ (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "ជ្រើសសេវាកម្ម anonymization">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "ពិនិត្យមើលសារថ្មីៗដោយស្វ័យប្រវត្តិសម្រាប់គណនីទាំងអស់ [លំនាំដើម៖ បានបិទ]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "អនុញ្ញាតឲ្យតភ្ជាប់ទៅម៉ាស៊ីនមេដែលមិនគាំទ្រ SSL/TLS ដោយប្រើកិច្ចពិភាក្សាសុវត្ថិភាព [លំនាំដើម៖ មិនអនុញ្ញាត]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "គណនីជាក់លាក់">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "ជ្រើសគណនី៖">
diff --git a/kn/torbirdy.dtd b/kn/torbirdy.dtd
index fffa753..1c46644 100644
--- a/kn/torbirdy.dtd
+++ b/kn/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/ko/torbirdy.dtd b/ko/torbirdy.dtd
index 46c4b01..b1db905 100644
--- a/ko/torbirdy.dtd
+++ b/ko/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "프록시">
<!ENTITY torbirdy.prefs.privacy.label "개인 정보">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label " 보안">
<!ENTITY torbirdy.prefs.recommended.text "Tor버디(Tor)에게 권장하는 프록시 설정을 사용합니다.">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "익명 서비스 선택">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "모든 계정에 대해 자동으로 새 메시지를 확인 [기본값 : 사용 안 함]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "SSL/TLS가 호환되지 않는 사이트에의 비보호 접근을 허용 [기본 설정: 비허용]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "계정별">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "계정 선택 : ">
diff --git a/ko_KR/torbirdy.dtd b/ko_KR/torbirdy.dtd
index 410d67f..9ed3859 100644
--- a/ko_KR/torbirdy.dtd
+++ b/ko_KR/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/ku/torbirdy.dtd b/ku/torbirdy.dtd
index fffa753..1c46644 100644
--- a/ku/torbirdy.dtd
+++ b/ku/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/ku_IQ/torbirdy.dtd b/ku_IQ/torbirdy.dtd
index 70282aa..2d0be2e 100644
--- a/ku_IQ/torbirdy.dtd
+++ b/ku_IQ/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/kw/torbirdy.dtd b/kw/torbirdy.dtd
index fffa753..1c46644 100644
--- a/kw/torbirdy.dtd
+++ b/kw/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/ky/torbirdy.dtd b/ky/torbirdy.dtd
index 1441916..a053cd3 100644
--- a/ky/torbirdy.dtd
+++ b/ky/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/la/torbirdy.dtd b/la/torbirdy.dtd
index d670135..26d357e 100644
--- a/la/torbirdy.dtd
+++ b/la/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/lb/torbirdy.dtd b/lb/torbirdy.dtd
index fffa753..1c46644 100644
--- a/lb/torbirdy.dtd
+++ b/lb/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/lg/torbirdy.dtd b/lg/torbirdy.dtd
index fffa753..1c46644 100644
--- a/lg/torbirdy.dtd
+++ b/lg/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/ln/torbirdy.dtd b/ln/torbirdy.dtd
index fffa753..1c46644 100644
--- a/ln/torbirdy.dtd
+++ b/ln/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/lo/torbirdy.dtd b/lo/torbirdy.dtd
index 9603968..a4dd8c7 100644
--- a/lo/torbirdy.dtd
+++ b/lo/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/lt/torbirdy.dtd b/lt/torbirdy.dtd
index f2b3a3d..7544326 100644
--- a/lt/torbirdy.dtd
+++ b/lt/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privatumas">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Saugumas">
<!ENTITY torbirdy.prefs.recommended.text "Naudoti rekomenduojamus proxy nustatymus TorBirdy(Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Pasirinkti anonimizacijos paslaugą">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "p">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Pasirinkti paskyrą:">
diff --git a/lv/torbirdy.dtd b/lv/torbirdy.dtd
index 1302259..02fcb42 100644
--- a/lv/torbirdy.dtd
+++ b/lv/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Starpnieks">
<!ENTITY torbirdy.prefs.privacy.label "Privātums">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Drošība">
<!ENTITY torbirdy.prefs.recommended.text "Lietot ieteiktos starpnieka iestatījumus TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Izvēlieties anonimizācijas pakalpojumu">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Automātiski pārbaudīt visos kontos vai ir jauni ziņojumi [noklusējumvērtība: atspējots]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Atļaut tādu serveru savienojumus, kuri nenodrošina SSL/TLS ar drošu atkārtotu vienošanos [noklusējuma vērtība: neatļaut]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Kontam-piemītošs">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Izvēlēties kontu:">
diff --git a/mg/torbirdy.dtd b/mg/torbirdy.dtd
index fffa753..1c46644 100644
--- a/mg/torbirdy.dtd
+++ b/mg/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/mi/torbirdy.dtd b/mi/torbirdy.dtd
index fffa753..1c46644 100644
--- a/mi/torbirdy.dtd
+++ b/mi/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/mk/torbirdy.dtd b/mk/torbirdy.dtd
index a3f26dc..4d108a1 100644
--- a/mk/torbirdy.dtd
+++ b/mk/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "прокси">
<!ENTITY torbirdy.prefs.privacy.label "Приватност">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Безбедност">
<!ENTITY torbirdy.prefs.recommended.text "Користи ги препорачаните прокси подесувања за TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "P">
<!ENTITY torbirdy.prefs.anonservice.text "Користи услуга на анонимизација">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "P">
<!ENTITY torbirdy.prefs.automatic.label "Провери автоматски дали има нови пораки за сите сметки [основно: оневозможено]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Дозволи конекции кон сервери кои не подржуваат SSL/TLS со безбедни повторни преговори [основно: не дозволувај]">
-<!ENTITY torbirdy.prefs.renegotiation.key "P">
<!ENTITY torbirdy.prefs.account_specific "Специфични за сметка">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Избери сметка:">
diff --git a/ml/torbirdy.dtd b/ml/torbirdy.dtd
index fffa753..1c46644 100644
--- a/ml/torbirdy.dtd
+++ b/ml/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/mn/torbirdy.dtd b/mn/torbirdy.dtd
index cfb6f7b..ac6ff56 100644
--- a/mn/torbirdy.dtd
+++ b/mn/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/mr/torbirdy.dtd b/mr/torbirdy.dtd
index a461fe7..a2d939f 100644
--- a/mr/torbirdy.dtd
+++ b/mr/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "प्रॉक्सी">
<!ENTITY torbirdy.prefs.privacy.label "गोपनीयता">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "सुरक्षा">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "खाते निवडा:">
diff --git a/ms_MY/torbirdy.dtd b/ms_MY/torbirdy.dtd
index 6a370d7..ad704ff 100644
--- a/ms_MY/torbirdy.dtd
+++ b/ms_MY/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proksi">
<!ENTITY torbirdy.prefs.privacy.label "Privasi">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Keselamatan">
<!ENTITY torbirdy.prefs.recommended.text "Guna tetapan proksi yang digalakkan untuk TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Pilih servis keselamatan anda">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Semak mesej baru secara automatik untuk semua akaun [default: dimatikan]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Benarkan sambungan kepada pelayan yang tidak menyokong SSL / TLS dengan rundingan semula selamat [default: tidak membenarkan]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Akaun-spesifik">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Pilih akaun:">
diff --git a/mt/torbirdy.dtd b/mt/torbirdy.dtd
index fffa753..1c46644 100644
--- a/mt/torbirdy.dtd
+++ b/mt/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/my/torbirdy.dtd b/my/torbirdy.dtd
index 92b8048..99c05b8 100644
--- a/my/torbirdy.dtd
+++ b/my/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "P">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/nah/torbirdy.dtd b/nah/torbirdy.dtd
index fffa753..1c46644 100644
--- a/nah/torbirdy.dtd
+++ b/nah/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/nap/torbirdy.dtd b/nap/torbirdy.dtd
index fffa753..1c46644 100644
--- a/nap/torbirdy.dtd
+++ b/nap/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/nb/torbirdy.dtd b/nb/torbirdy.dtd
index 940cec0..3b5db95 100644
--- a/nb/torbirdy.dtd
+++ b/nb/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Mellomtjener">
<!ENTITY torbirdy.prefs.privacy.label "Personvern">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Sikkerhet">
<!ENTITY torbirdy.prefs.recommended.text "Bruk anbefalte mellomtjeningsinnstillinger for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Velg en anonymiseringstjeneste">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Se etter nye meldinger automatisk på alle kontoer [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Tillat tilkoblinger til tjenere som ikke støtter SSL/TLS med sikker omforhandling [forvalg: ikke tillat]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Kontospesifikt">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Velg en konto:">
diff --git a/nds/torbirdy.dtd b/nds/torbirdy.dtd
index d670135..26d357e 100644
--- a/nds/torbirdy.dtd
+++ b/nds/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/ne/torbirdy.dtd b/ne/torbirdy.dtd
index fffa753..1c46644 100644
--- a/ne/torbirdy.dtd
+++ b/ne/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/nl/torbirdy.dtd b/nl/torbirdy.dtd
index b3f733a..d131314 100644
--- a/nl/torbirdy.dtd
+++ b/nl/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Beveiliging">
<!ENTITY torbirdy.prefs.recommended.text "Aanbevolen configuratie voor TorBirdy (Tor) gebruiken">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Kies een anonimiseringsdienst">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Controleer automatisch op nieuwe berichten voor alle accounts [standaard: uitgeschakeld]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Sta connecties met servers die SSL/TLS met "safe renegotiation" niet ondersteunen toe [standaard: niet toestaan]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-specifiek">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Kies een account: ">
diff --git a/nl_BE/torbirdy.dtd b/nl_BE/torbirdy.dtd
index e94c462..be11ba2 100644
--- a/nl_BE/torbirdy.dtd
+++ b/nl_BE/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Beveiliging">
<!ENTITY torbirdy.prefs.recommended.text "Gebruik de aanbevolen proxy instellingen voor TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Kies een dienst om u anoniem te maken">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check voor nieuwe berichten voor alle accounts [standaard: uitgeschakeld]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Sta connecties toe naar servers die gee SSL/TLS supporteren met beveiligde heronderhandeling. [standaard: niet toestaan]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specifiek">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Kies een account:">
diff --git a/nn/torbirdy.dtd b/nn/torbirdy.dtd
index a55f454..8f3d4a4 100644
--- a/nn/torbirdy.dtd
+++ b/nn/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Mellomtenar">
<!ENTITY torbirdy.prefs.privacy.label "Personvern">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Tryggleik">
<!ENTITY torbirdy.prefs.recommended.text "Bruk tilrådde mellomtenarinnstillingar for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Vel ei anonymiseringsteneste">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "h">
<!ENTITY torbirdy.prefs.automatic.label "Sjå etter nye meldingar automatisk på alle kontoar [standard: dslått av] ">
<!ENTITY torbirdy.prefs.automatic.key "p">
-<!ENTITY torbirdy.prefs.renegotiation.label "Tillat tilkoplingar til tenarar som ikkje støttar SSL/TLS med trygg attkjenning [standard: ikkje tillat]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Konto-spesifikk">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Vel ein konto:">
diff --git a/nso/torbirdy.dtd b/nso/torbirdy.dtd
index fffa753..1c46644 100644
--- a/nso/torbirdy.dtd
+++ b/nso/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/oc/torbirdy.dtd b/oc/torbirdy.dtd
index fffa753..1c46644 100644
--- a/oc/torbirdy.dtd
+++ b/oc/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/or/torbirdy.dtd b/or/torbirdy.dtd
index fffa753..1c46644 100644
--- a/or/torbirdy.dtd
+++ b/or/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/pa/torbirdy.dtd b/pa/torbirdy.dtd
index 2ef331e..ce19f00 100644
--- a/pa/torbirdy.dtd
+++ b/pa/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "ਪਰਾਕਸੀ">
<!ENTITY torbirdy.prefs.privacy.label "ਪਰਾਈਵੇਸੀ">
<!ENTITY torbirdy.prefs.enigmail.label "ਏਨਿਗਮੇਲ">
-<!ENTITY torbirdy.prefs.security.label "ਸੁਰੱਖਿਆ">
<!ENTITY torbirdy.prefs.recommended.text "ਟੋਰਬਰਡੀ ਲਈ ਆਖੀ ਹੋਈ ਪਰਾਕਸੀ ਸੈਟਿੰਗ ਵਰਤੋਂ ਕਰੋ (ਟੋਰ)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "ਅਗਿਆਤ ਸੇਵਾ ਚੁਣੋ">
@@ -46,8 +45,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "ਨਵੇਂ ਸੰਦੇਸ਼ਾਂ ਵਾਸਤੇ ਚੇਕ ਕਰੋ ਸਾਰੇ ਅਕਾਊਂਟਸ ਲਈ">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "ਜੇ ਸਰਵਰ ਤੇ SSL /TLS Secure Regontiation ਦੀ ਸਹਾਇਤਾ ਨਹੀਂ ਹੈ ਤਾਂ ਵੀ ਕਨੇਕਟ ਕਰੋ">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "ਖਾਤਾ-ਖਾਸ">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "ਖਾਤਾ ਚੁਣੋ:">
diff --git a/pap/torbirdy.dtd b/pap/torbirdy.dtd
index fffa753..1c46644 100644
--- a/pap/torbirdy.dtd
+++ b/pap/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/pl/torbirdy.dtd b/pl/torbirdy.dtd
index da08cd2..09cc90a 100644
--- a/pl/torbirdy.dtd
+++ b/pl/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Prywatność">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Bezpieczeństwo">
<!ENTITY torbirdy.prefs.recommended.text "Użyj zalecanych ustawień proxy dla TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "j">
<!ENTITY torbirdy.prefs.anonservice.text "Wybierz usługę anonimizującą">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Sprawdź czy masz nowe wiadomości na wszystkich kontach [domyślnie: wyłączone]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Zezwalaj na połączenia do serwerów nie obsługujących SSL/TLS z bezpieczną renegocjacją [domyślne: nie zezwalaj]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Specyficzne dla konta">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Wybierz konto:">
diff --git a/pms/torbirdy.dtd b/pms/torbirdy.dtd
index fffa753..1c46644 100644
--- a/pms/torbirdy.dtd
+++ b/pms/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/ps/torbirdy.dtd b/ps/torbirdy.dtd
index fffa753..1c46644 100644
--- a/ps/torbirdy.dtd
+++ b/ps/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/pt/torbirdy.dtd b/pt/torbirdy.dtd
index 963516e..d299b2a 100644
--- a/pt/torbirdy.dtd
+++ b/pt/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Definições de Privacidade">
<!ENTITY torbirdy.prefs.enigmail.label "Configurações do Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Configurações de Segurança">
<!ENTITY torbirdy.prefs.recommended.text "Use as configurações de proxy recomendadas para o TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Escolha um serviço de anonimização">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Verificar a existência de novas mensagens automaticamente em todas as contas [por defeito: desativado]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Permitir ligações a servidores que não suportem SSL/TLS com renegociação segura [por defeito: não permitir]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Específico-da-Conta">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Escolha uma conta:">
diff --git a/pt_BR/torbirdy.dtd b/pt_BR/torbirdy.dtd
index c6bd01d..39d037b 100644
--- a/pt_BR/torbirdy.dtd
+++ b/pt_BR/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacidade">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Segurança">
<!ENTITY torbirdy.prefs.recommended.text "Use as configurações de proxy recomendadas para o TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Escolher um serviço de anonimato">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Verificar automaticamente as novas mensagens em todas as contas [padrão: desabilitado]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Permitir conexões a provedores que não possuem suporte para SSL/TLS com renegociação segura [padrão: não permitir]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Conta Específica">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Escolher uma conta:">
diff --git a/ro/torbirdy.dtd b/ro/torbirdy.dtd
index 342cda5..bd174ff 100644
--- a/ro/torbirdy.dtd
+++ b/ro/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Intimitate">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Securitate">
<!ENTITY torbirdy.prefs.recommended.text "Folosește setările proxy recomandate pentru TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Alege un serviciu de anonimizare">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "p">
<!ENTITY torbirdy.prefs.automatic.label "Verifică pentru mesaje noi automat pentru toate conturile [implicit: dezactivat]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Permite conexiunile către servere care nu suportă SSL/TLS cu renegociere sigură [implicit: nu permite]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Specific contului">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Alege un cont:">
diff --git a/ru/torbirdy.dtd b/ru/torbirdy.dtd
index 0c4875d..9ee15ee 100644
--- a/ru/torbirdy.dtd
+++ b/ru/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Прокси-сервер">
<!ENTITY torbirdy.prefs.privacy.label "Приватность">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Безопасность">
<!ENTITY torbirdy.prefs.recommended.text "Использовать рекомендуемые параметры прокси-сервера для TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Выберите сервис анонимизации">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Автоматически проверять новые сообщения для всех новых аккаунтов [по умолчанию: отключено]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Разрешить соединения с серверами не поддерживающими SSL/TLS с безопасным согласованием [по умолчанию: запретить]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Определяемые учетной записью">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Выберите учётную запись:">
diff --git a/ru(a)petr1708/torbirdy.dtd b/ru(a)petr1708/torbirdy.dtd
index e1c746b..ebfbb1a 100644
--- a/ru(a)petr1708/torbirdy.dtd
+++ b/ru(a)petr1708/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/scn/torbirdy.dtd b/scn/torbirdy.dtd
index d670135..26d357e 100644
--- a/scn/torbirdy.dtd
+++ b/scn/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/sco/torbirdy.dtd b/sco/torbirdy.dtd
index fffa753..1c46644 100644
--- a/sco/torbirdy.dtd
+++ b/sco/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/si_LK/torbirdy.dtd b/si_LK/torbirdy.dtd
index 479f491..bf165c5 100644
--- a/si_LK/torbirdy.dtd
+++ b/si_LK/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "TorBirdy (Tor) සදහා නිර්දේශිත නියුතු සේවාදායක සිටවුම් භාවිතා කරන්න ">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "නිර්ණාමික සේවාවක් තෝරන්න ">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "ආරක්ෂිත නැවත හුවමාරුවක් සහිත SSL/TLS අනුබල නොදෙන සේවාදායකයන්ට සම්බන්ධ වීමට ඉඩහරින්න [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "විශේෂිත-ගිණුම ">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "ගිණුමක් තෝරන්න:">
diff --git a/sk/torbirdy.dtd b/sk/torbirdy.dtd
index 7afe744..6d910fd 100644
--- a/sk/torbirdy.dtd
+++ b/sk/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Súkromie">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Bezpečnosť">
<!ENTITY torbirdy.prefs.recommended.text "Použiť odporúčané nastavenie proxy pre TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Použiť anonymizačnú službu">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Skontrolovať nové správy automaticky pre všetky účty [štandardne: vypnuté]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Umožniť pripojenia k serverom nepodporujúcim SSL/TLS s bezpečným prehodnocovaním [štandardne: neumožniť]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Špecifické pre účet">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Vyberte účet:">
diff --git a/sk_SK/torbirdy.dtd b/sk_SK/torbirdy.dtd
index d9e09dd..f2a791e 100644
--- a/sk_SK/torbirdy.dtd
+++ b/sk_SK/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Súkromie">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Bezpečnosť">
<!ENTITY torbirdy.prefs.recommended.text "Použiť odporúčané nastavenia proxy pre TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Zvoľ anonymizačnú službu">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Automaticky kontrolovať nové správy na všetkých účtoch [predvolené: zakázané]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Povoľ pripojenia na servery ktoré nepodporujú protokoly SSL/TLS so zabezpečením [predvolené: nepovoľ]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Špecifické pre účet">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Zvoľ účet:">
diff --git a/sl/torbirdy.dtd b/sl/torbirdy.dtd
index 0afa612..596ff19 100644
--- a/sl/torbirdy.dtd
+++ b/sl/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "P">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/sl_SI/torbirdy.dtd b/sl_SI/torbirdy.dtd
index 8dcf947..017b37c 100644
--- a/sl_SI/torbirdy.dtd
+++ b/sl_SI/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Zasebnost">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Varnost">
<!ENTITY torbirdy.prefs.recommended.text "Uporabite priporočene proxy nastavitve za TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Izberite anonimno storitev">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Preveri za sporočila avtomatsko za vse račune [privzeto: onemogoči]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Dovoli povezave na serverje, ki ne podpirajo SSL/TLS varnostna pogajanja [privzeto: nedovoli]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Račun-Poseben">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Izberite račun:">
diff --git a/sn/torbirdy.dtd b/sn/torbirdy.dtd
index d670135..26d357e 100644
--- a/sn/torbirdy.dtd
+++ b/sn/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/so/torbirdy.dtd b/so/torbirdy.dtd
index fffa753..1c46644 100644
--- a/so/torbirdy.dtd
+++ b/so/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/son/torbirdy.dtd b/son/torbirdy.dtd
index fffa753..1c46644 100644
--- a/son/torbirdy.dtd
+++ b/son/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/sq/torbirdy.dtd b/sq/torbirdy.dtd
index 5f77497..872cc8c 100644
--- a/sq/torbirdy.dtd
+++ b/sq/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privatësi">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Siguria">
<!ENTITY torbirdy.prefs.recommended.text "Përdorni konfigurimin e rekomanduar të proxy-t për TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Zgjidhni një shërbim anonimizimi">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Kontrolloni automatikisht për mesazhe të reja për çdo llogari [parazgjedhja: jo aktive]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Lejoni lidhjet me shërbyesit që nuk mundësojnë SSL/TLS me rinegocim të sigurt [parazgjedhja: mos lejoni]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Veçoritë e Llogarisë">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Përzgjidhni një llogari">
diff --git a/sr/torbirdy.dtd b/sr/torbirdy.dtd
index ca7363c..19e94b5 100644
--- a/sr/torbirdy.dtd
+++ b/sr/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privatnost">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Sigurnost">
<!ENTITY torbirdy.prefs.recommended.text "Користите препоручена прокси подешавања за TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Изаберите сервис заштите (анонимности)">
@@ -49,9 +48,6 @@
<!ENTITY torbirdy.prefs.automatic.label "Проверите за нове поруке се аутоматски за све рачуне [дефаулт: искључен]
">
<!ENTITY torbirdy.prefs.automatic.key "ф">
-<!ENTITY torbirdy.prefs.renegotiation.label "Dozvolite povezivanje na servere koji ne podrzavaju SSL/TLS sa sigurnom rekonfiguracijom
-[standardn podesavanje: ne dozvoljavaj]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Специјално-за налог">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Изабери налог: ">
diff --git a/sr(a)latin/torbirdy.dtd b/sr(a)latin/torbirdy.dtd
index 01bf025..3c629eb 100644
--- a/sr(a)latin/torbirdy.dtd
+++ b/sr(a)latin/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/st/torbirdy.dtd b/st/torbirdy.dtd
index fffa753..1c46644 100644
--- a/st/torbirdy.dtd
+++ b/st/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/su/torbirdy.dtd b/su/torbirdy.dtd
index fffa753..1c46644 100644
--- a/su/torbirdy.dtd
+++ b/su/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/sv/torbirdy.dtd b/sv/torbirdy.dtd
index b4b74b7..44d0e74 100644
--- a/sv/torbirdy.dtd
+++ b/sv/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Integritet">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Säkerhet">
<!ENTITY torbirdy.prefs.recommended.text "Använd rekommenderade proxyinställningar för TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Välj en anonymiseringstjänst">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Kolla efter nya meddelanden automatiskt för alla konton [standard: inaktiverat]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Tillåt anslutningar till servrar som inte stöder SSL/TLS med säker omförhandling [standard: tillåt inte]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Konto-specifikt">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Välj ett konto:">
diff --git a/sw/torbirdy.dtd b/sw/torbirdy.dtd
index fffa753..1c46644 100644
--- a/sw/torbirdy.dtd
+++ b/sw/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/szl/torbirdy.dtd b/szl/torbirdy.dtd
index d670135..26d357e 100644
--- a/szl/torbirdy.dtd
+++ b/szl/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/ta/torbirdy.dtd b/ta/torbirdy.dtd
index ae09699..45ff52c 100644
--- a/ta/torbirdy.dtd
+++ b/ta/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/te/torbirdy.dtd b/te/torbirdy.dtd
index fffa753..1c46644 100644
--- a/te/torbirdy.dtd
+++ b/te/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/te_IN/torbirdy.dtd b/te_IN/torbirdy.dtd
index d670135..26d357e 100644
--- a/te_IN/torbirdy.dtd
+++ b/te_IN/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/templates/torbirdy.dtd b/templates/torbirdy.dtd
index d670135..26d357e 100644
--- a/templates/torbirdy.dtd
+++ b/templates/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/tg/torbirdy.dtd b/tg/torbirdy.dtd
index fffa753..1c46644 100644
--- a/tg/torbirdy.dtd
+++ b/tg/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/th/torbirdy.dtd b/th/torbirdy.dtd
index e6997a5..d33d778 100644
--- a/th/torbirdy.dtd
+++ b/th/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "ใช้การตั้งค่าพร็อกซีที่แนะนำสำหรับ TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "น">
<!ENTITY torbirdy.prefs.anonservice.text "เลือกบริการปกปิดชื่อ">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "พ">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "น">
<!ENTITY torbirdy.prefs.account_specific "เฉพาะบัญชี">
<!ENTITY torbirdy.prefs.select_account.key "ต">
<!ENTITY torbirdy.prefs.select_account.label "เลือกบัญชีผู้ใช้">
diff --git a/ti/torbirdy.dtd b/ti/torbirdy.dtd
index fffa753..1c46644 100644
--- a/ti/torbirdy.dtd
+++ b/ti/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/tk/torbirdy.dtd b/tk/torbirdy.dtd
index fffa753..1c46644 100644
--- a/tk/torbirdy.dtd
+++ b/tk/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/tr/torbirdy.dtd b/tr/torbirdy.dtd
index 55c7490..8d8fc18 100644
--- a/tr/torbirdy.dtd
+++ b/tr/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Vekil Sunucu">
<!ENTITY torbirdy.prefs.privacy.label "Gizlilik">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Güvenlik">
<!ENTITY torbirdy.prefs.recommended.text "TorBirdy (Tor) için önerilen vekil sunucu ayarları kullanılsın">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Anonimleştirme hizmetini seçin">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Tüm hesaplar için iletiler otomatik olarak denetlensin [varsayılan: devre dışı]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Güvenli yeniden iletişim ile SSL/TLS desteklemeyen sunuculara erişilebilsin [varsayılan: devre dışı]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Hesaba Özgü">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Bir hesap seçin: ">
diff --git a/tzm/torbirdy.dtd b/tzm/torbirdy.dtd
index d670135..26d357e 100644
--- a/tzm/torbirdy.dtd
+++ b/tzm/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/ug(a)Arab/torbirdy.dtd b/ug(a)Arab/torbirdy.dtd
index d670135..26d357e 100644
--- a/ug(a)Arab/torbirdy.dtd
+++ b/ug(a)Arab/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/uk/torbirdy.dtd b/uk/torbirdy.dtd
index ef10fa3..8ee0441 100644
--- a/uk/torbirdy.dtd
+++ b/uk/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Проксі">
<!ENTITY torbirdy.prefs.privacy.label "Приватність">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Захист">
<!ENTITY torbirdy.prefs.recommended.text "Використовувати рекомендовані параметри проксі-сервера для TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Оберіть сервіс анонімізації">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Автоматично перевіряти нові повідомлення для всіх облікових записів [за замовчуванням: відключено]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Дозволити з'єднання з серверами, що не підтримують SSL/TLS з безпечним узгодженням [за замовчуванням: не дозволяти]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Визначається обліковим записом">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Виберіть акаунт:">
diff --git a/ur/torbirdy.dtd b/ur/torbirdy.dtd
index b52624d..53e114c 100644
--- a/ur/torbirdy.dtd
+++ b/ur/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/ur_PK/torbirdy.dtd b/ur_PK/torbirdy.dtd
index fd03afa..5ca66a2 100644
--- a/ur_PK/torbirdy.dtd
+++ b/ur_PK/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/uz/torbirdy.dtd b/uz/torbirdy.dtd
index 6468644..c4e540f 100644
--- a/uz/torbirdy.dtd
+++ b/uz/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/ve/torbirdy.dtd b/ve/torbirdy.dtd
index fffa753..1c46644 100644
--- a/ve/torbirdy.dtd
+++ b/ve/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/vi/torbirdy.dtd b/vi/torbirdy.dtd
index a60f565..979a0be 100644
--- a/vi/torbirdy.dtd
+++ b/vi/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "y">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "y">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "y">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/wa/torbirdy.dtd b/wa/torbirdy.dtd
index fffa753..1c46644 100644
--- a/wa/torbirdy.dtd
+++ b/wa/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/wo/torbirdy.dtd b/wo/torbirdy.dtd
index fffa753..1c46644 100644
--- a/wo/torbirdy.dtd
+++ b/wo/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/yo/torbirdy.dtd b/yo/torbirdy.dtd
index d670135..26d357e 100644
--- a/yo/torbirdy.dtd
+++ b/yo/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
diff --git a/zh_CN/torbirdy.dtd b/zh_CN/torbirdy.dtd
index 5a84266..5488d75 100644
--- a/zh_CN/torbirdy.dtd
+++ b/zh_CN/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "代理">
<!ENTITY torbirdy.prefs.privacy.label "隐私">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "安全">
<!ENTITY torbirdy.prefs.recommended.text "使用推荐的 TorBirdy (Tor) 代理设置">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "选择匿名服务">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "所有账户自动检查新消息 [默认:禁用]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "允许连接至不支持具有安全重新协商机制的 SSL/TLS 的服务器 [默认:不允许]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "指定帐户">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "选择帐户:">
diff --git a/zh_HK/torbirdy.dtd b/zh_HK/torbirdy.dtd
index 1611c54..e866f78 100644
--- a/zh_HK/torbirdy.dtd
+++ b/zh_HK/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "代理伺服器">
<!ENTITY torbirdy.prefs.privacy.label "私隱">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "安全度">
<!ENTITY torbirdy.prefs.recommended.text "使用TorBirdy(Tor)建議嘅代理設定">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "選取一個匿名服務">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "自動檢查全部帳戶嘅新訊息[預設:停用]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "容許連線到唔具備支援SSL╱TLS安全重新交涉嘅伺服器[預設:唔容許]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "特定帳戶">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "請選取一個帳戶:">
diff --git a/zh_TW/torbirdy.dtd b/zh_TW/torbirdy.dtd
index 4b11498..9694b8d 100644
--- a/zh_TW/torbirdy.dtd
+++ b/zh_TW/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "代理伺服器">
<!ENTITY torbirdy.prefs.privacy.label "隱私權">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "安全性">
<!ENTITY torbirdy.prefs.recommended.text "在 TorBirdy (Tor) 中使用建議的代理伺服器設定">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "請選擇一個匿名服務">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "自動檢查所有帳戶的新訊息[預設:停用]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "允許連線到不具備支援 SSL / TLS 安全重新交涉的伺服器[預設:不允許]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "特定帳戶">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "請選擇一個帳戶:">
diff --git a/zu/torbirdy.dtd b/zu/torbirdy.dtd
index fffa753..1c46644 100644
--- a/zu/torbirdy.dtd
+++ b/zu/torbirdy.dtd
@@ -19,7 +19,6 @@
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
-<!ENTITY torbirdy.prefs.security.label "Security">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
<!ENTITY torbirdy.prefs.anonservice.text "Choose an anonymization service">
@@ -45,8 +44,6 @@
<!ENTITY torbirdy.prefs.emailwizard.key "w">
<!ENTITY torbirdy.prefs.automatic.label "Check for new messages automatically for all accounts [default: disabled]">
<!ENTITY torbirdy.prefs.automatic.key "f">
-<!ENTITY torbirdy.prefs.renegotiation.label "Allow connections to servers that do not support SSL/TLS with secure renegotiation [default: do not allow]">
-<!ENTITY torbirdy.prefs.renegotiation.key "r">
<!ENTITY torbirdy.prefs.account_specific "Account-Specific">
<!ENTITY torbirdy.prefs.select_account.key "C">
<!ENTITY torbirdy.prefs.select_account.label "Choose an account: ">
1
0
commit 9a069e0bc70e905fb44897370f57bb4d1d67a599
Author: Georg Koppen <gk(a)torproject.org>
Date: Wed May 25 07:59:20 2016 +0000
Release preparations for 6.0
Version bumps, changelog update and config.yml update
---
Bundle-Data/Docs/ChangeLog.txt | 91 +++++++++++++++++++++++++++++++++++++++
gitian/versions | 38 ++++++++++------
tools/update-responses/config.yml | 12 +++---
3 files changed, 121 insertions(+), 20 deletions(-)
diff --git a/Bundle-Data/Docs/ChangeLog.txt b/Bundle-Data/Docs/ChangeLog.txt
index b96cb79..fc1a14b 100644
--- a/Bundle-Data/Docs/ChangeLog.txt
+++ b/Bundle-Data/Docs/ChangeLog.txt
@@ -1,3 +1,94 @@
+Tor Browser 6.0 -- May 30
+ * All Platforms
+ * Update Firefox to 45.1.1esr
+ * Update OpenSSL to 1.0.1t
+ * Update Torbutton to 1.9.5.4
+ * Bug 18466: Make Torbutton compatible with Firefox ESR 45
+ * Bug 18743: Pref to hide 'Sign in to Sync' button in hamburger menu
+ * Bug 18905: Hide unusable items from help menu
+ * Bug 16017: Allow users to more easily set a non-tor SSH proxy
+ * Bug 17599: Provide shortcuts for New Identity and New Circuit
+ * Translation updates
+ * Code clean-up
+ * Update Tor Launcher to 0.2.9.3
+ * Bug 13252: Do not store data in the application bundle
+ * Bug 18947: Tor Browser is not starting on OS X if put into /Applications
+ * Bug 11773: Setup wizard UI flow improvements
+ * Translation updates
+ * Update HTTPS-Everywhere to 5.1.9
+ * Update meek to 0.22 (tag 0.22-18371-3)
+ * Bug 18371: Symlinks are incompatible with Gatekeeper signing
+ * Bug 18904: Mac OS: meek-http-helper profile not updated
+ * Bug 15197 and child tickets: Rebase Tor Browser patches to ESR 45
+ * Bug 18900: Fix broken updater on Linux
+ * Bug 18042: Disable SHA1 certificate support
+ * Bug 18821: Disable libmdns support for desktop and mobile
+ * Bug 18848: Disable additional welcome URL shown on first start
+ * Bug 14970: Exempt our extensions from signing requirement
+ * Bug 16328: Disable MediaDevices.enumerateDevices
+ * Bug 16673: Disable HTTP Alternative-Services
+ * Bug 17167: Disable Mozilla's tracking protection
+ * Bug 18603: Disable performance-based WebGL fingerprinting option
+ * Bug 18738: Disable Selfsupport and Unified Telemetry
+ * Bug 18799: Disable Network Tickler
+ * Bug 18800: Remove DNS lookup in lockfile code
+ * Bug 18801: Disable dom.push preferences
+ * Bug 18802: Remove the JS-based Flash VM (Shumway)
+ * Bug 18863: Disable MozTCPSocket explicitly
+ * Bug 15640: Place Canvas MediaStream behind site permission
+ * Bug 16326: Verify cache isolation for Request and Fetch APIs
+ * Bug 18741: Fix OCSP and favicon isolation for ESR 45
+ * Bug 16998: Disable <link rel="preconnect"> for now
+ * Bug 18898: Exempt the meek extension from the signing requirement as well
+ * Bug 18899: Don't copy Torbutton, TorLauncher, etc. into meek profile
+ * Bug 18890: Test importScripts() for cache and network isolation
+ * Bug 18886: Hide pocket menu items when Pocket is disabled
+ * Bug 18703: Fix circuit isolation issues on Page Info dialog
+ * bug 19115: Tor Browser should not fall back to Bing as its search engine
+ * Bug 18915+19065: Use our search plugins in localized builds
+ * Bug 18811: Fix first-party isolation for blobs URLs in Workers
+ * Bug 18950: Disable or audit Reader View
+ * Bug 18886: Remove Pocket
+ * Bug 18619: Tor Browser reports "InvalidStateError" in browser console
+ * Bug 18945: Disable monitoring the connected state of Tor Browser users
+ * Bug 18855: Don't show error after add-on directory clean-up
+ * Bug 18885: Disable the option of logging TLS/SSL key material
+ * Bug 18770: SVGs should not show up on Page Info dialog when disabled
+ * Bug 18958: Spoof screen.orientation values
+ * Bug 19047: Disable Heartbeat prompts
+ * Bug 18914: Use English-only label in <isindex/> tags
+ * Bug 18996: Investigate server logging in esr45-based Tor Browser
+ * Bug 17790: Add unit tests for keyboard fingerprinting defenses
+ * Bug 18995: Regression test to ensure CacheStorage is disabled
+ * Bug 18912: Add automated tests for updater cert pinning
+ * Bug 16728: Add test cases for favicon isolation
+ * Bug 18976: Remove some FTE bridges
+ * Windows
+ * Bug 13419: Support ICU in Windows builds
+ * Bug 16874: Fix broken https://sports.yahoo.com/dailyfantasy page
+ * Bug 18767: Context menu is broken on Windows in ESR 45 based Tor Browser
+ * OS X
+ * Bug 6540: Support OS X Gatekeeper
+ * Bug 13252: Tor Browser should not store data in the application bundle
+ * Bug 18951: HTTPS-E is missing after update
+ * Bug 18904: meek-http-helper profile not updated
+ * Bug 18928: Upgrade is not smooth (requires another restart)
+ * Build System
+ * All Platforms
+ * Bug 18127: Add LXC support for building with Debian guest VMs
+ * Bug 16224: Don't use BUILD_HOSTNAME anymore in Firefox builds
+ * Bug 18919: Remove unused keys and unused dependencies
+ * Windows
+ * Bug 17895: Use NSIS 2.51 for installer to avoid DLL hijacking
+ * Bug 18290: Bump mingw-w64 commit we use
+ * OS X
+ * Bug 18331: Update toolchain for Firefox 45 ESR
+ * Bug 18690: Switch to Debian Wheezy guest VMs
+ * Linux
+ * Bug 18699: Stripping fails due to obsolete Browser/components directory
+ * Bug 18698: Include libgconf2-dev for our Linux builds
+ * Bug 15578: Switch to Debian Wheezy guest VMs (10.04 LTS is EOL)
+
Tor Browser 6.0a5-hardened -- April 28 2016
* All Platforms
* Update Firefox to 45.1.0esr
diff --git a/gitian/versions b/gitian/versions
index a18afab..a3b3a1f 100755
--- a/gitian/versions
+++ b/gitian/versions
@@ -5,29 +5,35 @@ BUNDLE_LOCALES_WIN32="ja"
BUNDLE_LOCALES_MAC="ja-JP-mac"
BUILD_PT_BUNDLES=1
+# DATA_OUTSIDE_APP_DIR is only implemented for Mac OS.
+DATA_OUTSIDE_APP_DIR=1
+
VERIFY_TAGS=1
-FIREFOX_VERSION=38.6.0esr
+FIREFOX_VERSION=45.1.1esr
TORBROWSER_UPDATE_CHANNEL=release
-TORBROWSER_TAG=tor-browser-${FIREFOX_VERSION}-5.5-1-build1
+TORBROWSER_TAG=tor-browser-${FIREFOX_VERSION}-6.0-1-build1
TOR_TAG=tor-0.2.7.6
-TORLAUNCHER_TAG=0.2.7.8
-TORBUTTON_TAG=1.9.4.3
-HTTPSE_TAG=5.1.2
-NSIS_TAG=v0.3
+TORLAUNCHER_TAG=0.2.9.3
+TORBUTTON_TAG=1.9.5.4
+HTTPSE_TAG=5.1.9
+NSIS_TAG=v0.3.1
ZLIB_TAG=v1.2.8
LIBEVENT_TAG=release-2.0.22-stable
-MINGW_TAG=a883b47a45ff74ced41dfbd9f748d5c2c61f3c01 # due to bug 1156131
+CMAKE_TAG=v2.8.12.2
+LLVM_TAG=8f188e0ea735ac9383a65a0d1c846eb790c2ec74 # r247539
+CLANG_TAG=592b43b609b42cffd1531a700c140e10766bf049 # r247539
+MINGW_TAG=a0cd5afeb60be3be0860e9a203314c10485bb9b8
PYPTLIB_TAG=pyptlib-0.0.6
OBFSPROXY_TAG=obfsproxy-0.2.12
LIBFTE_TAG=85ef8ae58dbf0d02ea26b627e343784b5574c428 # sketch master with fix
FTEPROXY_TAG=597f8378f6f4f3de570b8e1064c2e4cb8d67fbd0 # tag 0.2.19
LIBDMG_TAG=dfd5e5cc3dc1191e37d3c3a6118975afdd1d7014
TXSOCKSX_TAG=216eb0894a1755872f4789f9458aa6cf543b8433 # unsigned habnabit/1.13.0.2
-GOPTLIB_TAG=0.2
-MEEK_TAG=0.20
+GOPTLIB_TAG=0.5
+MEEK_TAG=0.22-18371-3
FAKETIME_TAG=70aa6b394d9341522dffe8a5a5cf5929e82cc6b9 # unsigned v0.9.6
GOED25519_TAG=c4161f4c7483313562781c61b9a20aba73daf9de
GOSIPHASH_TAG=42ba037e748c9062a75e0924705c43b893edefcd
@@ -36,14 +42,15 @@ GO_X_NET_TAG=7dbad50ab5b31073856416cdcfeb2796d682f844
OBFS4_TAG=obfs4proxy-0.0.5
NOTOFONTS_TAG=720e34851382ee3c1ef024d8dffb68ffbfb234c2
-GITIAN_TAG=tor-browser-builder-3.x-8-gpgsux
+GITIAN_TAG=tor-browser-builder-4-1
-OPENSSL_VER=1.0.1q
+OPENSSL_VER=1.0.1t
GMP_VER=5.1.3
FIREFOX_LANG_VER=$FIREFOX_VERSION
FIREFOX_LANG_BUILD=build1
BINUTILS_VER=2.24
GCC_VER=5.1.0
+CLANG_VER=r247539
PYTHON_VER=2.7.5
PYCRYPTO_VER=2.6.1
ARGPARSE_VER=1.2.1
@@ -59,8 +66,9 @@ NSIS_VER=2.51
## File names for the source packages
OPENSSL_PACKAGE=openssl-${OPENSSL_VER}.tar.gz
GMP_PACKAGE=gmp-${GMP_VER}.tar.bz2
-NOSCRIPT_PACKAGE=noscript_security_suite-2.9.0.2-sm+fx+fn.xpi
+NOSCRIPT_PACKAGE=noscript_security_suite-2.9.0.11-fn+sm+fx.xpi
TOOLCHAIN4_OLD_PACKAGE=multiarch-darwin11-cctools127.2-gcc42-5666.3-llvmgcc42-2336.1-Linux-120724.tar.xz
+CCTOOLS_PACKAGE=cctools.tar.gz
OSXSDK_PACKAGE=MacOSX10.7.sdk.tar.gz
OSXSDK_OLD_PACKAGE=apple-uni-sdk-10.6_20110407-0.flosoft1_i386.deb
MSVCR100_PACKAGE=msvcr100.dll
@@ -86,12 +94,13 @@ NOTOSCFONT_PACKAGE=NotoSansSC-Regular.otf
NOTOTCFONT_PACKAGE=NotoSansTC-Regular.otf
# Hashes for packages with weak sigs or no sigs
-OPENSSL_HASH=b3658b84e9ea606a5ded3c972a5517cd785282e7ea86b20c78aa4b773a047fb7
+OPENSSL_HASH=4a6ee491a2fdb22e519c76fdc2a628bb3cec12762cd456861d207996c8a07088
GMP_HASH=752079520b4690531171d0f4532e40f08600215feefede70b24fabdc6f1ab160
OSXSDK_HASH=da77bb0003fcca5ea8c4e8cb2da8828ded750c54afdcac29ec6f3b46ad5e3adf
OSXSDK_OLD_HASH=6602d8d5ddb371fbc02e2a5967d9bd0cd7358d46f9417753c8234b923f2ea6fc
TOOLCHAIN4_OLD_HASH=65c1b2d302358a6b95a26c6828a66908a199276193bb0b268f2dcc1a997731e9
-NOSCRIPT_HASH=f3c9dec710e02d809fa85ac76750e5f074656105c1bde03d400cb597b2eb1fba
+NOSCRIPT_HASH=fdd965a69188ac651b08a7d3ada54821a89db10a4685aa73ba59edc0b8243390
+CCTOOLS_HASH=e908fdebc2886ee5491ebfc7e7950af451b3c4e2439c2d7a923ed06ad05113e4
MSVCR100_HASH=1221a09484964a6f38af5e34ee292b9afefccb3dc6e55435fd3aaf7c235d9067
PYCRYPTO_HASH=f2ce1e989b272cfcb677616763e0a2e7ec659effa67a88aa92b3a65528f60a3c
ARGPARSE_HASH=ddaf4b0a618335a32b6664d4ae038a1de8fbada3b25033f9021510ed2b3941a4
@@ -116,6 +125,7 @@ NOTOTCFONT_HASH=e6b82f7d3dab605c428161124ceb5e169cde93de632d800297b167cdd88e7baa
OPENSSL_URL=https://www.openssl.org/source/${OPENSSL_PACKAGE}
GMP_URL=https://ftp.gnu.org/gnu/gmp/${GMP_PACKAGE}
TOOLCHAIN4_OLD_URL=https://people.torproject.org/~mikeperry/mirrors/sources…
+CCTOOLS_URL=https://people.torproject.org/~gk/mirrors/sources/${CCTOOLS_PACKAGE}
OSXSDK_URL=https://launchpad.net/~flosoft/+archive/cross-apple/+files/${OSX…
BINUTILS_URL=https://ftp.gnu.org/gnu/binutils/${BINUTILS_PACKAGE}
GCC_URL=https://ftp.gnu.org/gnu/gcc/gcc-${GCC_VER}/${GCC_PACKAGE}
diff --git a/tools/update-responses/config.yml b/tools/update-responses/config.yml
index a747fd6..55a767f 100644
--- a/tools/update-responses/config.yml
+++ b/tools/update-responses/config.yml
@@ -10,14 +10,14 @@ build_targets:
osx64: Darwin_x86_64-gcc3
channels:
alpha: 6.0a5
- release: 5.5
+ release: 6.0
versions:
- 5.5:
- platformVersion: 38.6.0
- detailsURL: https://blog.torproject.org/blog/tor-browser-55-released
- download_url: https://www.torproject.org/dist/torbrowser/5.5
+ 6.0:
+ platformVersion: 45.1.1
+ detailsURL: https://blog.torproject.org/blog/tor-browser-60-released
+ download_url: https://www.torproject.org/dist/torbrowser/6.0
incremental_from:
- - 5.0.7
+ - 5.5.5
migrate_archs:
osx32: osx64
osx32:
1
0
[tor-browser/tor-browser-45.1.0esr-6.0-1] Bug 18914: Use English-only label in <isindex/> tags
by gk@torproject.org 25 May '16
by gk@torproject.org 25 May '16
25 May '16
commit 4166668b7cf72bdb0666e53ecd1abdc41de90c23
Author: Arthur Edelstein <arthuredelstein(a)gmail.com>
Date: Mon May 23 18:14:43 2016 -0700
Bug 18914: Use English-only label in <isindex/> tags
---
parser/html/nsHtml5TreeOperation.cpp | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/parser/html/nsHtml5TreeOperation.cpp b/parser/html/nsHtml5TreeOperation.cpp
index 866e657..02357b5 100644
--- a/parser/html/nsHtml5TreeOperation.cpp
+++ b/parser/html/nsHtml5TreeOperation.cpp
@@ -474,11 +474,16 @@ nsHtml5TreeOperation::SetFormElement(nsIContent* aNode, nsIContent* aParent)
nsresult
nsHtml5TreeOperation::AppendIsindexPrompt(nsIContent* parent, nsHtml5DocumentBuilder* aBuilder)
{
+ /*
nsXPIDLString prompt;
nsresult rv =
nsContentUtils::GetLocalizedString(nsContentUtils::eFORMS_PROPERTIES,
"IsIndexPromptWithSpace", prompt);
+ */
+ nsString prompt(NS_LITERAL_STRING(
+ "This is a searchable index. Enter search keywords:\u0020"));
uint32_t len = prompt.Length();
+ /*
if (NS_FAILED(rv)) {
return rv;
}
@@ -486,6 +491,7 @@ nsHtml5TreeOperation::AppendIsindexPrompt(nsIContent* parent, nsHtml5DocumentBui
// Don't bother appending a zero-length text node.
return NS_OK;
}
+ */
return AppendText(prompt.BeginReading(), len, parent, aBuilder);
}
1
0