tor-commits
Threads by month
- ----- 2025 -----
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
March 2018
- 15 participants
- 1430 discussions
commit 4a8f8d0499aefaddd6d5d9386744e1b1125c6036
Merge: 3e1414f8 7af33123
Author: Damian Johnson <atagar(a)torproject.org>
Date: Fri Mar 23 17:59:09 2018 -0700
Fix the ONLINE integ test target
Handful of changes to support running our ONLINE integ testing target. There's
still two failing tests:
* test_has_all_tor_config_options (stem.manual)
Filed a couple tickets about the config options it's mentioning
(ExitPolicyDefault, _HSLayer2Nodes, and _HSLayer3Nodes).
* test_using_authorities (stem.descriptor.remote)
Our dirauths presently have an issue where they're rejecting each other's
descriptors. Gonna add a DocTor check to start notifying about this.
stem/cached_tor_manual.sqlite | Bin 227328 -> 239616 bytes
stem/control.py | 6 ++--
stem/manual.py | 3 +-
stem/settings.cfg | 32 ++++++++++++-----
test/integ/control/controller.py | 21 ++++++-----
test/integ/manual.py | 13 ++++---
test/network.py | 76 +++------------------------------------
7 files changed, 55 insertions(+), 96 deletions(-)
1
0
commit 7af33123135355d0e7805f9688160d799103cb58
Author: Damian Johnson <atagar(a)torproject.org>
Date: Fri Mar 23 17:36:43 2018 -0700
Drop dead code from test.network
Chunks of this module are unused, so testing 'em.
---
test/network.py | 72 ++-------------------------------------------------------
1 file changed, 2 insertions(+), 70 deletions(-)
diff --git a/test/network.py b/test/network.py
index 05f51cd6..0278a8ad 100644
--- a/test/network.py
+++ b/test/network.py
@@ -11,19 +11,15 @@ the tor network.
+- SocksError - Reports problems returned by the SOCKS proxy.
Socks - Communicate through a SOCKS5 proxy with a socket interface
-
- SocksPatch - Force socket-using code to use test.network.Socks
"""
-import functools
import socket
import struct
+import stem
import stem.util.connection
import stem.util.str_tools
-from stem import ProtocolError, SocketError
-
# Store a reference to the original class so we can find it after
# monkey patching.
_socket_socket = socket.socket
@@ -247,70 +243,6 @@ class Socks(_socket_socket):
raise NotImplementedError
-class SocksPatch(object):
- """
- Monkey-patch **socket.socket** to use :class:`~test.network.Socks`, instead.
- Classes in the patched context (e.g. urllib.urlopen in the example below)
- do not use the SOCKS5 proxy for domain name resolution and such information
- may be leaked.
-
- ::
-
- import urllib
- from test.network import SocksPatch
-
- with SocksPatch(('127.0.0.1', 9050)):
- with urllib.urlopen('https://www.torproject.org') as f:
- for line in f.readline():
- print line
- """
-
- def __init__(self, *args, **kwargs):
- self._partial = functools.partial(Socks, *args, **kwargs)
-
- def __enter__(self):
- socket.socket = self._partial
- return self
-
- def __exit__(self, exit_type, value, traceback):
- socket.socket = _socket_socket
-
-
-def external_ip(host, port):
- """
- Returns the externally visible IP address when using a SOCKS4a proxy.
- Negotiates the socks connection, connects to ipconfig.me and requests
- http://ifconfig.me/ip to find out the externally visible IP.
-
- Supports only SOCKS4a proxies.
-
- :param str host: hostname/IP of the proxy server
- :param int port: port on which the proxy server is listening
-
- :returns: externally visible IP address, or None if it isn't able to
-
- :raises: :class:`stem.socket.SocketError`: unable to connect a socket to the socks server
- """
-
- try:
- sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
- sock.connect((host, int(port)))
- except Exception as exc:
- raise SocketError('Failed to connect to the socks server: ' + str(exc))
-
- try:
- negotiate_socks(sock, 'ifconfig.me', 80)
- sock.sendall(IP_REQUEST)
- response = sock.recv(1000)
-
- # everything after the blank line is the 'data' in a HTTP response
- # The response data for our request for request should be an IP address + '\n'
-
- return response[response.find('\r\n\r\n'):].strip()
- except Exception as exc:
- return None
-
-
def negotiate_socks(sock, host, port):
"""
Negotiate with a socks4a server. Closes the socket and raises an exception on
@@ -332,6 +264,6 @@ def negotiate_socks(sock, host, port):
if len(response) != 8 or response[0:2] != b'\x00\x5a':
sock.close()
- raise ProtocolError(ERROR_MSG.get(response[1], 'SOCKS server returned unrecognized error code'))
+ raise stem.ProtocolError(ERROR_MSG.get(response[1], 'SOCKS server returned unrecognized error code'))
return [socket.inet_ntoa(response[4:]), struct.unpack('!H', response[2:4])[0]]
1
0
commit d749f6b5f62731d42bdad5d60a413fdd7f120158
Merge: 398bef259 eacfd2911
Author: Nick Mathewson <nickm(a)torproject.org>
Date: Fri Mar 23 17:49:29 2018 -0400
Merge branch 'maint-0.3.3'
src/or/hs_service.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
1
0

23 Mar '18
commit eacfd2911274a7f6676509fc8173b66bd1264bc2
Author: Nick Mathewson <nickm(a)torproject.org>
Date: Fri Mar 23 17:47:56 2018 -0400
Fix windows compilation warnings in hs_service.c
These were breaking jenkins builds. Bugfix on 5804ccc9070dc54;
bug not in any released Tor.
---
src/or/hs_service.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/src/or/hs_service.c b/src/or/hs_service.c
index 169ba0dfc..6fa9ec6b1 100644
--- a/src/or/hs_service.c
+++ b/src/or/hs_service.c
@@ -1954,7 +1954,9 @@ should_rotate_descriptors(hs_service_t *service, time_t now)
"time is %ld (now: %ld). Valid after time from "
"consensus is %ld",
service->desc_current, service->desc_next,
- service->state.next_rotation_time, now, ns->valid_after);
+ (long)service->state.next_rotation_time,
+ (long)now,
+ (long)ns->valid_after);
goto no_rotation;
}
goto rotation;
1
0

[tor/release-0.3.3] Fix windows compilation warnings in hs_service.c
by nickm@torproject.org 23 Mar '18
by nickm@torproject.org 23 Mar '18
23 Mar '18
commit eacfd2911274a7f6676509fc8173b66bd1264bc2
Author: Nick Mathewson <nickm(a)torproject.org>
Date: Fri Mar 23 17:47:56 2018 -0400
Fix windows compilation warnings in hs_service.c
These were breaking jenkins builds. Bugfix on 5804ccc9070dc54;
bug not in any released Tor.
---
src/or/hs_service.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/src/or/hs_service.c b/src/or/hs_service.c
index 169ba0dfc..6fa9ec6b1 100644
--- a/src/or/hs_service.c
+++ b/src/or/hs_service.c
@@ -1954,7 +1954,9 @@ should_rotate_descriptors(hs_service_t *service, time_t now)
"time is %ld (now: %ld). Valid after time from "
"consensus is %ld",
service->desc_current, service->desc_next,
- service->state.next_rotation_time, now, ns->valid_after);
+ (long)service->state.next_rotation_time,
+ (long)now,
+ (long)ns->valid_after);
goto no_rotation;
}
goto rotation;
1
0

[tor/maint-0.3.3] Fix windows compilation warnings in hs_service.c
by nickm@torproject.org 23 Mar '18
by nickm@torproject.org 23 Mar '18
23 Mar '18
commit eacfd2911274a7f6676509fc8173b66bd1264bc2
Author: Nick Mathewson <nickm(a)torproject.org>
Date: Fri Mar 23 17:47:56 2018 -0400
Fix windows compilation warnings in hs_service.c
These were breaking jenkins builds. Bugfix on 5804ccc9070dc54;
bug not in any released Tor.
---
src/or/hs_service.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/src/or/hs_service.c b/src/or/hs_service.c
index 169ba0dfc..6fa9ec6b1 100644
--- a/src/or/hs_service.c
+++ b/src/or/hs_service.c
@@ -1954,7 +1954,9 @@ should_rotate_descriptors(hs_service_t *service, time_t now)
"time is %ld (now: %ld). Valid after time from "
"consensus is %ld",
service->desc_current, service->desc_next,
- service->state.next_rotation_time, now, ns->valid_after);
+ (long)service->state.next_rotation_time,
+ (long)now,
+ (long)ns->valid_after);
goto no_rotation;
}
goto rotation;
1
0

[tor/release-0.3.3] Merge branch 'maint-0.3.3' into release-0.3.3
by nickm@torproject.org 23 Mar '18
by nickm@torproject.org 23 Mar '18
23 Mar '18
commit a4190d44fa744707229f0ca737bddec36f9aae8c
Merge: 7c360ee75 eacfd2911
Author: Nick Mathewson <nickm(a)torproject.org>
Date: Fri Mar 23 17:49:29 2018 -0400
Merge branch 'maint-0.3.3' into release-0.3.3
src/or/hs_service.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
1
0

23 Mar '18
commit 398bef2592010e71692dd9c3b5b90d3751c48bb2
Author: Nick Mathewson <nickm(a)torproject.org>
Date: Fri Mar 23 12:38:27 2018 -0400
Define SRCDIR more correctly in configure.ac
Without this fix, we were just getting SRCDIR=`pwd`, which naturally
was breaking out-of-tree builds.
Bugfix on becae4c943969a4f4f14423cc897d39f41af7773; bug not in any
released Tor.
---
configure.ac | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configure.ac b/configure.ac
index 6fadc21df..d7cc05c09 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1879,7 +1879,7 @@ AH_TEMPLATE([BUILDDIR],[tor's build directory])
AC_DEFINE_UNQUOTED(BUILDDIR,"$BUILDDIR")
if test "x$SRCDIR" = "x"; then
- SRCDIR=`pwd`
+ SRCDIR=$(cd "$srcdir"; pwd)
fi
AH_TEMPLATE([SRCDIR],[tor's sourcedir directory])
AC_DEFINE_UNQUOTED(SRCDIR,"$SRCDIR")
1
0
commit 06b100b8c151cb2ef6dc9c8f69c2af80030952ad
Author: Sukhbir Singh <sukhbir(a)torproject.org>
Date: Fri Mar 23 12:26:53 2018 -0400
Update translations
---
chrome/locale/af/torbirdy.dtd | 2 --
chrome/locale/am/torbirdy.dtd | 2 --
chrome/locale/ast/torbirdy.dtd | 2 --
chrome/locale/be/torbirdy.dtd | 6 ++----
chrome/locale/bg/torbirdy.dtd | 2 --
chrome/locale/bo/torbirdy.dtd | 8 +++-----
chrome/locale/brx/torbirdy.dtd | 10 ++++------
chrome/locale/bs/torbirdy.dtd | 2 --
chrome/locale/cy/torbirdy.dtd | 2 --
chrome/locale/eo/torbirdy.dtd | 2 --
chrome/locale/es-CO/torbirdy.dtd | 6 ++----
chrome/locale/es-MX/torbirdy.dtd | 2 --
chrome/locale/es/torbirdy.dtd | 2 +-
chrome/locale/eu/torbirdy.dtd | 2 --
chrome/locale/fa/torbirdy.dtd | 2 --
chrome/locale/fi/torbirdy.dtd | 2 --
chrome/locale/fil/torbirdy.dtd | 2 --
chrome/locale/fo/torbirdy.dtd | 2 --
chrome/locale/fr-CA/torbirdy.dtd | 2 --
chrome/locale/fr/torbirdy.dtd | 4 ++--
chrome/locale/fy/torbirdy.dtd | 2 --
chrome/locale/gu-IN/torbirdy.dtd | 2 --
chrome/locale/gu/torbirdy.dtd | 2 --
chrome/locale/hi/torbirdy.dtd | 4 +---
chrome/locale/hr-HR/torbirdy.dtd | 2 --
chrome/locale/hr/torbirdy.dtd | 2 +-
chrome/locale/hu/torbirdy.dtd | 2 --
chrome/locale/hy/torbirdy.dtd | 4 ++--
chrome/locale/ja/torbirdy.dtd | 2 --
chrome/locale/ka/torbirdy.dtd | 6 ++----
chrome/locale/kk/torbirdy.dtd | 8 +++-----
chrome/locale/ko-KR/torbirdy.dtd | 2 --
chrome/locale/ko/torbirdy.dtd | 2 --
chrome/locale/ku-IQ/torbirdy.dtd | 2 --
chrome/locale/ky/torbirdy.dtd | 4 +---
chrome/locale/la/torbirdy.dtd | 2 --
chrome/locale/lb/torbirdy.dtd | 2 --
chrome/locale/lg/torbirdy.dtd | 4 +---
chrome/locale/lo/torbirdy.dtd | 2 --
chrome/locale/lt/torbirdy.dtd | 2 --
chrome/locale/mg/torbirdy.dtd | 2 --
chrome/locale/ml/torbirdy.dtd | 6 ++----
chrome/locale/my/torbirdy.dtd | 2 --
chrome/locale/nl-BE/torbirdy.dtd | 2 --
chrome/locale/nn/torbirdy.dtd | 2 --
chrome/locale/oc/torbirdy.dtd | 6 ++----
chrome/locale/om/torbirdy.dtd | 10 ++++------
chrome/locale/pa/torbirdy.dtd | 2 --
chrome/locale/pl/torbirdy.dtd | 2 --
chrome/locale/sco/torbirdy.dtd | 2 --
chrome/locale/si-LK/torbirdy.dtd | 2 --
chrome/locale/sk-SK/torbirdy.dtd | 2 --
chrome/locale/sk/torbirdy.dtd | 2 --
chrome/locale/sl-SI/torbirdy.dtd | 2 --
chrome/locale/sl/torbirdy.dtd | 2 --
chrome/locale/sn/torbirdy.dtd | 6 ++----
chrome/locale/sr/torbirdy.dtd | 2 --
chrome/locale/sv/torbirdy.dtd | 2 +-
chrome/locale/sw/torbirdy.dtd | 2 --
chrome/locale/ta/torbirdy.dtd | 2 --
chrome/locale/tg/torbirdy.dtd | 10 ++++------
chrome/locale/ti/torbirdy.dtd | 8 +++-----
chrome/locale/tk/torbirdy.dtd | 10 ++++------
chrome/locale/ug(a)Arab/torbirdy.dtd | 2 --
chrome/locale/uk/torbirdy.dtd | 2 +-
chrome/locale/ur-PK/torbirdy.dtd | 2 --
chrome/locale/ur/torbirdy.dtd | 2 --
chrome/locale/uz/torbirdy.dtd | 4 +---
chrome/locale/vi/torbirdy.dtd | 2 --
chrome/locale/zh-HK/torbirdy.dtd | 2 --
70 files changed, 49 insertions(+), 177 deletions(-)
diff --git a/chrome/locale/af/torbirdy.dtd b/chrome/locale/af/torbirdy.dtd
index cc62553..affbc79 100644
--- a/chrome/locale/af/torbirdy.dtd
+++ b/chrome/locale/af/torbirdy.dtd
@@ -40,8 +40,6 @@
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.key "r">
<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
-<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
-<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
<!ENTITY torbirdy.prefs.confirmemail.label "Bevestig voor e-pos gestuur word as Enigmail aangeskakel is [verstek 'default': moet nie bevestig nie]">
<!ENTITY torbirdy.prefs.confirmemail.key "c">
<!ENTITY torbirdy.prefs.emailwizard.label "Stel Thunderbird se outomatiese e-pos opset 'wizard' in staat [verstek 'default': afgeskakel]">
diff --git a/chrome/locale/am/torbirdy.dtd b/chrome/locale/am/torbirdy.dtd
index 1ad0f6e..901c1cb 100644
--- a/chrome/locale/am/torbirdy.dtd
+++ b/chrome/locale/am/torbirdy.dtd
@@ -40,8 +40,6 @@
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.key "r">
<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
-<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
-<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
<!ENTITY torbirdy.prefs.confirmemail.label "Enigmail ከነቃ ኢሜይል ከመላኩ በፊት አረጋግጥ [default: do not confirm]">
<!ENTITY torbirdy.prefs.confirmemail.key "c">
<!ENTITY torbirdy.prefs.emailwizard.label "የThunderbird ራስ-ሰር የኢሜይል ውቅር አዋቂ አንቃ [default: disabled]">
diff --git a/chrome/locale/ast/torbirdy.dtd b/chrome/locale/ast/torbirdy.dtd
index d7ed48f..bdccae1 100644
--- a/chrome/locale/ast/torbirdy.dtd
+++ b/chrome/locale/ast/torbirdy.dtd
@@ -40,8 +40,6 @@
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.key "r">
<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
-<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
-<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
<!ENTITY torbirdy.prefs.confirmemail.label "Confirm before sending email if Enigmail is enabled [default: do not confirm]">
<!ENTITY torbirdy.prefs.confirmemail.key "c">
<!ENTITY torbirdy.prefs.emailwizard.label "Enable Thunderbird's automatic email configuration wizard [default: disabled]">
diff --git a/chrome/locale/be/torbirdy.dtd b/chrome/locale/be/torbirdy.dtd
index 09d056d..3a64aaf 100644
--- a/chrome/locale/be/torbirdy.dtd
+++ b/chrome/locale/be/torbirdy.dtd
@@ -5,11 +5,11 @@
<!ENTITY torbirdy.accountprefs.minutes.key "d">
<!ENTITY torbirdy.accountprefs.minutes.trail.label "minutes">
<!ENTITY torbirdy.accountprefs.cancel.button "Cancel">
-<!ENTITY torbirdy.accountprefs.save.button "Save">
+<!ENTITY torbirdy.accountprefs.save.button "Захаваць">
<!ENTITY torbirdy.accountprefs.save.key "S">
<!ENTITY torbirdy.prefs.title "TorBirdy Preferences">
-<!ENTITY torbirdy.prefs.save.button "Save">
+<!ENTITY torbirdy.prefs.save.button "Захаваць">
<!ENTITY torbirdy.prefs.save.key "s">
<!ENTITY torbirdy.prefs.cancel.button "Cancel">
<!ENTITY torbirdy.prefs.extra2.button "Restore Defaults">
@@ -40,8 +40,6 @@
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.key "r">
<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
-<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
-<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
<!ENTITY torbirdy.prefs.confirmemail.label "Confirm before sending email if Enigmail is enabled [default: do not confirm]">
<!ENTITY torbirdy.prefs.confirmemail.key "c">
<!ENTITY torbirdy.prefs.emailwizard.label "Enable Thunderbird's automatic email configuration wizard [default: disabled]">
diff --git a/chrome/locale/bg/torbirdy.dtd b/chrome/locale/bg/torbirdy.dtd
index f39e891..75c4631 100644
--- a/chrome/locale/bg/torbirdy.dtd
+++ b/chrome/locale/bg/torbirdy.dtd
@@ -40,8 +40,6 @@
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.key "r">
<!ENTITY torbirdy.prefs.enigmail_protected.label "Деактивиране на криптирането на хедърите на имейла [по подразбиране: активирано]">
<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
-<!ENTITY torbirdy.prefs.enigmail_protected.label "Деактивиране на криптирането на хедърите на имейла [по подразбиране: активирано]">
-<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
<!ENTITY torbirdy.prefs.confirmemail.label "Потвърдете, преди да изпратите е-поща, ако Enigmail е активиран [по подразбиране: е непотвърдено]">
<!ENTITY torbirdy.prefs.confirmemail.key "c">
<!ENTITY torbirdy.prefs.emailwizard.label "Включване автоматично на съветника за конфигурация на е-поща на Thunderbird [по подразбиране: изключено]">
diff --git a/chrome/locale/bo/torbirdy.dtd b/chrome/locale/bo/torbirdy.dtd
index 21db1c7..d387436 100644
--- a/chrome/locale/bo/torbirdy.dtd
+++ b/chrome/locale/bo/torbirdy.dtd
@@ -3,7 +3,7 @@
<!ENTITY torbirdy.accountprefs.startup.key "C">
<!ENTITY torbirdy.accountprefs.minutes.label "Check for new messages every">
<!ENTITY torbirdy.accountprefs.minutes.key "d">
-<!ENTITY torbirdy.accountprefs.minutes.trail.label "minutes">
+<!ENTITY torbirdy.accountprefs.minutes.trail.label "སྐར་མ།">
<!ENTITY torbirdy.accountprefs.cancel.button "Cancel">
<!ENTITY torbirdy.accountprefs.save.button "ཉར་ཚགས།">
<!ENTITY torbirdy.accountprefs.save.key "S">
@@ -16,8 +16,8 @@
<!ENTITY torbirdy.prefs.extra2.key "d">
<!ENTITY torbirdy.prefs.testproxy.button "Test Proxy Settings">
<!ENTITY torbirdy.prefs.testproxy.key "n">
-<!ENTITY torbirdy.prefs.proxy.label "Proxy">
-<!ENTITY torbirdy.prefs.privacy.label "Privacy">
+<!ENTITY torbirdy.prefs.proxy.label "ངོ་ཚབ།">
+<!ENTITY torbirdy.prefs.privacy.label "གསང་དོན།">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
@@ -40,8 +40,6 @@
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.key "r">
<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
-<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
-<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
<!ENTITY torbirdy.prefs.confirmemail.label "Confirm before sending email if Enigmail is enabled [default: do not confirm]">
<!ENTITY torbirdy.prefs.confirmemail.key "c">
<!ENTITY torbirdy.prefs.emailwizard.label "Enable Thunderbird's automatic email configuration wizard [default: disabled]">
diff --git a/chrome/locale/brx/torbirdy.dtd b/chrome/locale/brx/torbirdy.dtd
index 232f04b..5773359 100644
--- a/chrome/locale/brx/torbirdy.dtd
+++ b/chrome/locale/brx/torbirdy.dtd
@@ -4,14 +4,14 @@
<!ENTITY torbirdy.accountprefs.minutes.label "Check for new messages every">
<!ENTITY torbirdy.accountprefs.minutes.key "y">
<!ENTITY torbirdy.accountprefs.minutes.trail.label "minutes">
-<!ENTITY torbirdy.accountprefs.cancel.button "Cancel">
-<!ENTITY torbirdy.accountprefs.save.button "Save">
+<!ENTITY torbirdy.accountprefs.cancel.button "नेवसि">
+<!ENTITY torbirdy.accountprefs.save.button "थिना दोन">
<!ENTITY torbirdy.accountprefs.save.key "S">
<!ENTITY torbirdy.prefs.title "TorBirdy Preferences">
-<!ENTITY torbirdy.prefs.save.button "Save">
+<!ENTITY torbirdy.prefs.save.button "थिना दोन">
<!ENTITY torbirdy.prefs.save.key "s">
-<!ENTITY torbirdy.prefs.cancel.button "Cancel">
+<!ENTITY torbirdy.prefs.cancel.button "नेवसि">
<!ENTITY torbirdy.prefs.extra2.button "Restore Defaults">
<!ENTITY torbirdy.prefs.extra2.key "d">
<!ENTITY torbirdy.prefs.testproxy.button "Test Proxy Settings">
@@ -40,8 +40,6 @@
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.key "r">
<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
-<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
-<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
<!ENTITY torbirdy.prefs.confirmemail.label "Confirm before sending email if Enigmail is enabled [default: do not confirm]">
<!ENTITY torbirdy.prefs.confirmemail.key "c">
<!ENTITY torbirdy.prefs.emailwizard.label "Enable Thunderbird's automatic email configuration wizard [default: disabled]">
diff --git a/chrome/locale/bs/torbirdy.dtd b/chrome/locale/bs/torbirdy.dtd
index 8e0fdda..168615e 100644
--- a/chrome/locale/bs/torbirdy.dtd
+++ b/chrome/locale/bs/torbirdy.dtd
@@ -40,8 +40,6 @@
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.key "r">
<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
-<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
-<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
<!ENTITY torbirdy.prefs.confirmemail.label "Potvrdi prije slanja poruke da li je "Enigmail" omogućen [standardno: nemoj potvrditi]">
<!ENTITY torbirdy.prefs.confirmemail.key "c">
<!ENTITY torbirdy.prefs.emailwizard.label "Omogući Thunderbird-ovog čarobnjaka za automatsku konfiguraciju email-a [standardno: isključi]">
diff --git a/chrome/locale/cy/torbirdy.dtd b/chrome/locale/cy/torbirdy.dtd
index 5f84110..946af1e 100644
--- a/chrome/locale/cy/torbirdy.dtd
+++ b/chrome/locale/cy/torbirdy.dtd
@@ -40,8 +40,6 @@
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.key "p">
<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
-<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
-<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
<!ENTITY torbirdy.prefs.confirmemail.label "Confirm before sending email if Enigmail is enabled [default: do not confirm]">
<!ENTITY torbirdy.prefs.confirmemail.key "p">
<!ENTITY torbirdy.prefs.emailwizard.label "Enable Thunderbird's automatic email configuration wizard [default: disabled]">
diff --git a/chrome/locale/eo/torbirdy.dtd b/chrome/locale/eo/torbirdy.dtd
index c34bd4b..a837fa9 100644
--- a/chrome/locale/eo/torbirdy.dtd
+++ b/chrome/locale/eo/torbirdy.dtd
@@ -40,8 +40,6 @@
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.key "A">
<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
-<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
-<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
<!ENTITY torbirdy.prefs.confirmemail.label "Confirm before sending email if Enigmail is enabled [default: do not confirm]">
<!ENTITY torbirdy.prefs.confirmemail.key "A">
<!ENTITY torbirdy.prefs.emailwizard.label "Enable Thunderbird's automatic email configuration wizard [default: disabled]">
diff --git a/chrome/locale/es-CO/torbirdy.dtd b/chrome/locale/es-CO/torbirdy.dtd
index 19c78a4..9ebb4ad 100644
--- a/chrome/locale/es-CO/torbirdy.dtd
+++ b/chrome/locale/es-CO/torbirdy.dtd
@@ -5,11 +5,11 @@
<!ENTITY torbirdy.accountprefs.minutes.key "y">
<!ENTITY torbirdy.accountprefs.minutes.trail.label "minutes">
<!ENTITY torbirdy.accountprefs.cancel.button "Cancelar">
-<!ENTITY torbirdy.accountprefs.save.button "Save">
+<!ENTITY torbirdy.accountprefs.save.button "Guardar">
<!ENTITY torbirdy.accountprefs.save.key "S">
<!ENTITY torbirdy.prefs.title "TorBirdy Preferences">
-<!ENTITY torbirdy.prefs.save.button "Save">
+<!ENTITY torbirdy.prefs.save.button "Guardar">
<!ENTITY torbirdy.prefs.save.key "s">
<!ENTITY torbirdy.prefs.cancel.button "Cancelar">
<!ENTITY torbirdy.prefs.extra2.button "Restore Defaults">
@@ -40,8 +40,6 @@
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.key "r">
<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
-<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
-<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
<!ENTITY torbirdy.prefs.confirmemail.label "Confirm before sending email if Enigmail is enabled [default: do not confirm]">
<!ENTITY torbirdy.prefs.confirmemail.key "c">
<!ENTITY torbirdy.prefs.emailwizard.label "Enable Thunderbird's automatic email configuration wizard [default: disabled]">
diff --git a/chrome/locale/es-MX/torbirdy.dtd b/chrome/locale/es-MX/torbirdy.dtd
index 988c719..6d9ea85 100644
--- a/chrome/locale/es-MX/torbirdy.dtd
+++ b/chrome/locale/es-MX/torbirdy.dtd
@@ -40,8 +40,6 @@
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.key "r">
<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
-<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
-<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
<!ENTITY torbirdy.prefs.confirmemail.label "Confirma antes de mandar el correo si Enigmail está activado [por defecto: no confirmar]">
<!ENTITY torbirdy.prefs.confirmemail.key "c">
<!ENTITY torbirdy.prefs.emailwizard.label "Enable Thunderbird's automatic email configuration wizard [default: disabled]">
diff --git a/chrome/locale/es/torbirdy.dtd b/chrome/locale/es/torbirdy.dtd
index 33e9ee9..e86850f 100644
--- a/chrome/locale/es/torbirdy.dtd
+++ b/chrome/locale/es/torbirdy.dtd
@@ -36,7 +36,7 @@
<!ENTITY torbirdy.prefs.imap.key "p">
<!ENTITY torbirdy.prefs.startup_folder.label "Cuando arranque seleccionar la última carpeta de correo a la que se accedió [predeterminado: deshabilitado]">
<!ENTITY torbirdy.prefs.startup_folder.key "u">
-<!ENTITY torbirdy.prefs.enigmail_throwkeyid.label "No ponga la clave de identificación del receptor en los mensajes cifrados [por defecto: poner]">
+<!ENTITY torbirdy.prefs.enigmail_throwkeyid.label "No poner la clave de identificación del receptor en los mensajes cifrados [por defecto: poner]">
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.key "f">
<!ENTITY torbirdy.prefs.enigmail_protected.label "Deshabilitar cabeceras cifradas de correo electrónico [predeterminado: habilitado]">
<!ENTITY torbirdy.prefs.enigmail_protected.key "r">
diff --git a/chrome/locale/eu/torbirdy.dtd b/chrome/locale/eu/torbirdy.dtd
index 9b69d36..e3582e0 100644
--- a/chrome/locale/eu/torbirdy.dtd
+++ b/chrome/locale/eu/torbirdy.dtd
@@ -40,8 +40,6 @@
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.key "r">
<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
-<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
-<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
<!ENTITY torbirdy.prefs.confirmemail.label "Berretsi Enigmail gaituta dagoen eposta bidali baino lehen [lehentsia: es berretsi]">
<!ENTITY torbirdy.prefs.confirmemail.key "c">
<!ENTITY torbirdy.prefs.emailwizard.label "Gaitu Thunderbirden eposta konfigurazio morroi automatikoa [lehenetsia: ezgaituta]">
diff --git a/chrome/locale/fa/torbirdy.dtd b/chrome/locale/fa/torbirdy.dtd
index d1d1703..8075b4a 100644
--- a/chrome/locale/fa/torbirdy.dtd
+++ b/chrome/locale/fa/torbirdy.dtd
@@ -40,8 +40,6 @@
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.key "r">
<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
-<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
-<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
<!ENTITY torbirdy.prefs.confirmemail.label "تایید قبل از ارسال کردن ایمیل، در صورتی که Enigmail فعال باشد. [ پیشفرض: خاموش] ">
<!ENTITY torbirdy.prefs.confirmemail.key "c">
<!ENTITY torbirdy.prefs.emailwizard.label "فعال کردن سیستم اتومیتک تنظیم ایمیل در Thunderbird. [ پیش فرض: خاموش ]">
diff --git a/chrome/locale/fi/torbirdy.dtd b/chrome/locale/fi/torbirdy.dtd
index e83a869..3a289e1 100644
--- a/chrome/locale/fi/torbirdy.dtd
+++ b/chrome/locale/fi/torbirdy.dtd
@@ -40,8 +40,6 @@
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.key "R">
<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
<!ENTITY torbirdy.prefs.enigmail_protected.key "u">
-<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
-<!ENTITY torbirdy.prefs.enigmail_protected.key "u">
<!ENTITY torbirdy.prefs.confirmemail.label "Vahvista ennen sähköpostin lähetystä, että onko Enigmail käytössä [oletus: älä vahvista]">
<!ENTITY torbirdy.prefs.confirmemail.key "h">
<!ENTITY torbirdy.prefs.emailwizard.label "Ota käyttöön Thunderbirdin automaattinen sähköpostin määritysopastusohjelma [oletus: ei käytössä]">
diff --git a/chrome/locale/fil/torbirdy.dtd b/chrome/locale/fil/torbirdy.dtd
index 68d5ac2..62c648a 100644
--- a/chrome/locale/fil/torbirdy.dtd
+++ b/chrome/locale/fil/torbirdy.dtd
@@ -40,8 +40,6 @@
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.key "r">
<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
-<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
-<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
<!ENTITY torbirdy.prefs.confirmemail.label "Confirm before sending email if Enigmail is enabled [default: do not confirm]">
<!ENTITY torbirdy.prefs.confirmemail.key "c">
<!ENTITY torbirdy.prefs.emailwizard.label "Enable Thunderbird's automatic email configuration wizard [default: disabled]">
diff --git a/chrome/locale/fo/torbirdy.dtd b/chrome/locale/fo/torbirdy.dtd
index a003001..01b2835 100644
--- a/chrome/locale/fo/torbirdy.dtd
+++ b/chrome/locale/fo/torbirdy.dtd
@@ -40,8 +40,6 @@
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.key "b">
<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
<!ENTITY torbirdy.prefs.enigmail_protected.key "u">
-<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
-<!ENTITY torbirdy.prefs.enigmail_protected.key "u">
<!ENTITY torbirdy.prefs.confirmemail.label "Vátta áðrenn teldupostar verða sendir, um Enigmail er gildað [er vanliga ikki gildað]">
<!ENTITY torbirdy.prefs.confirmemail.key "E">
<!ENTITY torbirdy.prefs.emailwizard.label "Gilda sjálvvirkandi teldupostvegleiðaran hjá Thunderbird [er vanliga ikki gildaður]">
diff --git a/chrome/locale/fr-CA/torbirdy.dtd b/chrome/locale/fr-CA/torbirdy.dtd
index 1802912..d47c5f3 100644
--- a/chrome/locale/fr-CA/torbirdy.dtd
+++ b/chrome/locale/fr-CA/torbirdy.dtd
@@ -40,8 +40,6 @@
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.key "r">
<!ENTITY torbirdy.prefs.enigmail_protected.label "Désactiver les en-têtes de courriel chiffrés [par défaut : activé]">
<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
-<!ENTITY torbirdy.prefs.enigmail_protected.label "Désactiver les en-têtes de courriel chiffrés [par défaut : activé]">
-<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
<!ENTITY torbirdy.prefs.confirmemail.label "Avant d’envoyer un courriel, confirmer si Enigmail est activé [par défaut : ne pas confirmer]">
<!ENTITY torbirdy.prefs.confirmemail.key "c">
<!ENTITY torbirdy.prefs.emailwizard.label "Activer l’assistant automatique de configuration de courriel de Thunderbird [par défaut : désactivé]">
diff --git a/chrome/locale/fr/torbirdy.dtd b/chrome/locale/fr/torbirdy.dtd
index b51aa6e..2eda20c 100644
--- a/chrome/locale/fr/torbirdy.dtd
+++ b/chrome/locale/fr/torbirdy.dtd
@@ -1,6 +1,6 @@
<!ENTITY torbirdy.accountprefs.title "Configuration du compte">
<!ENTITY torbirdy.accountprefs.startup.label "Relever les nouveaux messages au démarrage">
-<!ENTITY torbirdy.accountprefs.startup.key "C">
+<!ENTITY torbirdy.accountprefs.startup.key "R">
<!ENTITY torbirdy.accountprefs.minutes.label "Relever les nouveaux messages toutes les">
<!ENTITY torbirdy.accountprefs.minutes.key "y">
<!ENTITY torbirdy.accountprefs.minutes.trail.label "minutes">
@@ -49,7 +49,7 @@
<!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 :">
-<!ENTITY torbirdy.prefs.enigmail.keyserver.label "Serveur(s) de clés à utiliser :">
+<!ENTITY torbirdy.prefs.enigmail.keyserver.label "Serveurs de clés à utiliser :">
<!ENTITY torbirdy.prefs.enigmail.keyserver.key "k">
<!ENTITY torbirdy.panel.usetor.label "Utiliser le routeur oignon de Tor">
diff --git a/chrome/locale/fy/torbirdy.dtd b/chrome/locale/fy/torbirdy.dtd
index d7ed48f..bdccae1 100644
--- a/chrome/locale/fy/torbirdy.dtd
+++ b/chrome/locale/fy/torbirdy.dtd
@@ -40,8 +40,6 @@
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.key "r">
<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
-<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
-<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
<!ENTITY torbirdy.prefs.confirmemail.label "Confirm before sending email if Enigmail is enabled [default: do not confirm]">
<!ENTITY torbirdy.prefs.confirmemail.key "c">
<!ENTITY torbirdy.prefs.emailwizard.label "Enable Thunderbird's automatic email configuration wizard [default: disabled]">
diff --git a/chrome/locale/gu-IN/torbirdy.dtd b/chrome/locale/gu-IN/torbirdy.dtd
index 1434de3..d9973e3 100644
--- a/chrome/locale/gu-IN/torbirdy.dtd
+++ b/chrome/locale/gu-IN/torbirdy.dtd
@@ -40,8 +40,6 @@
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.key "p">
<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
-<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
-<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
<!ENTITY torbirdy.prefs.confirmemail.label "Confirm before sending email if Enigmail is enabled [default: do not confirm]">
<!ENTITY torbirdy.prefs.confirmemail.key "c">
<!ENTITY torbirdy.prefs.emailwizard.label "Enable Thunderbird's automatic email configuration wizard [default: disabled]">
diff --git a/chrome/locale/gu/torbirdy.dtd b/chrome/locale/gu/torbirdy.dtd
index 14b1e41..b2403dd 100644
--- a/chrome/locale/gu/torbirdy.dtd
+++ b/chrome/locale/gu/torbirdy.dtd
@@ -40,8 +40,6 @@
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.key "P">
<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
-<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
-<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
<!ENTITY torbirdy.prefs.confirmemail.label "Confirm before sending email if Enigmail is enabled [default: do not confirm]">
<!ENTITY torbirdy.prefs.confirmemail.key "P">
<!ENTITY torbirdy.prefs.emailwizard.label "Enable Thunderbird's automatic email configuration wizard [default: disabled]">
diff --git a/chrome/locale/hi/torbirdy.dtd b/chrome/locale/hi/torbirdy.dtd
index e011807..5165dd1 100644
--- a/chrome/locale/hi/torbirdy.dtd
+++ b/chrome/locale/hi/torbirdy.dtd
@@ -38,9 +38,7 @@
<!ENTITY torbirdy.prefs.startup_folder.key "i">
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.label "इनक्रिप्टेट (गोपनीकृत) संदेशों में प्राप्तकर्ता की कुंजी न प्रेषित करें [मानक स्थिति: प्रेषित]">
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.key "r">
-<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
-<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
-<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
+<!ENTITY torbirdy.prefs.enigmail_protected.label "एन्क्रिप्ट किए गए ईमेल headers लेखों को अक्षम करें [डिफ़ॉल्ट: सक्षम]">
<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
<!ENTITY torbirdy.prefs.confirmemail.label "यदि इनिग्मेल सक्रिय है, तो ई मेल प्रेषित करने से पूर्व पुष्टि करें [मानक स्थिति: पुष्टि न करें]">
<!ENTITY torbirdy.prefs.confirmemail.key "c">
diff --git a/chrome/locale/hr-HR/torbirdy.dtd b/chrome/locale/hr-HR/torbirdy.dtd
index 633c1b2..e80505c 100644
--- a/chrome/locale/hr-HR/torbirdy.dtd
+++ b/chrome/locale/hr-HR/torbirdy.dtd
@@ -40,8 +40,6 @@
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.key "r">
<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
-<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
-<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
<!ENTITY torbirdy.prefs.confirmemail.label "Potvrdite prije slanja poruke da li je Enigmail omogućen [zadano: ne potvrđuj]">
<!ENTITY torbirdy.prefs.confirmemail.key "c">
<!ENTITY torbirdy.prefs.emailwizard.label "Omogućite Thuderbirdov automatski čarobnjak za postavljanje emaila [zadano: onemogućeno]">
diff --git a/chrome/locale/hr/torbirdy.dtd b/chrome/locale/hr/torbirdy.dtd
index 555d3f8..99b287e 100644
--- a/chrome/locale/hr/torbirdy.dtd
+++ b/chrome/locale/hr/torbirdy.dtd
@@ -17,7 +17,7 @@
<!ENTITY torbirdy.prefs.testproxy.button "Test Proxy Settings">
<!ENTITY torbirdy.prefs.testproxy.key "k">
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
-<!ENTITY torbirdy.prefs.privacy.label "Privacy">
+<!ENTITY torbirdy.prefs.privacy.label "Privatnost">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
<!ENTITY torbirdy.prefs.recommended.text "Koristite preporučene proxy postavke za TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "k">
diff --git a/chrome/locale/hu/torbirdy.dtd b/chrome/locale/hu/torbirdy.dtd
index b1a3474..c964d4d 100644
--- a/chrome/locale/hu/torbirdy.dtd
+++ b/chrome/locale/hu/torbirdy.dtd
@@ -40,8 +40,6 @@
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.key "a">
<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
<!ENTITY torbirdy.prefs.enigmail_protected.key "a">
-<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
-<!ENTITY torbirdy.prefs.enigmail_protected.key "a">
<!ENTITY torbirdy.prefs.confirmemail.label "Email küldése előtt rákérdezés, ha Enigmail engedélyezett [alapértelmezés: ne egyen rákérdezés]">
<!ENTITY torbirdy.prefs.confirmemail.key "p">
<!ENTITY torbirdy.prefs.emailwizard.label "A Thunderbird automatikus email beállítási varázslójának engedélyezése [alapértelmezés: tiltott]">
diff --git a/chrome/locale/hy/torbirdy.dtd b/chrome/locale/hy/torbirdy.dtd
index c88803a..59b4d1e 100644
--- a/chrome/locale/hy/torbirdy.dtd
+++ b/chrome/locale/hy/torbirdy.dtd
@@ -5,11 +5,11 @@
<!ENTITY torbirdy.accountprefs.minutes.key "y">
<!ENTITY torbirdy.accountprefs.minutes.trail.label "minutes">
<!ENTITY torbirdy.accountprefs.cancel.button "Cancel">
-<!ENTITY torbirdy.accountprefs.save.button "Save">
+<!ENTITY torbirdy.accountprefs.save.button "Պահել">
<!ENTITY torbirdy.accountprefs.save.key "S">
<!ENTITY torbirdy.prefs.title "TorBirdy Preferences">
-<!ENTITY torbirdy.prefs.save.button "Save">
+<!ENTITY torbirdy.prefs.save.button "Պահել">
<!ENTITY torbirdy.prefs.save.key "s">
<!ENTITY torbirdy.prefs.cancel.button "Cancel">
<!ENTITY torbirdy.prefs.extra2.button "Restore Defaults">
diff --git a/chrome/locale/ja/torbirdy.dtd b/chrome/locale/ja/torbirdy.dtd
index a3c3178..7136ad0 100644
--- a/chrome/locale/ja/torbirdy.dtd
+++ b/chrome/locale/ja/torbirdy.dtd
@@ -40,8 +40,6 @@
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.key "r">
<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
-<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
-<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
<!ENTITY torbirdy.prefs.confirmemail.label "Enigmailが有効の場合メールを送信する前に確認 [デフォルト: 確認しない]">
<!ENTITY torbirdy.prefs.confirmemail.key "c">
<!ENTITY torbirdy.prefs.emailwizard.label "サンダーバードの自動メール設定ウィザードを有効に [デフォルト:無効]">
diff --git a/chrome/locale/ka/torbirdy.dtd b/chrome/locale/ka/torbirdy.dtd
index 2c6f078..3fbb9c5 100644
--- a/chrome/locale/ka/torbirdy.dtd
+++ b/chrome/locale/ka/torbirdy.dtd
@@ -5,11 +5,11 @@
<!ENTITY torbirdy.accountprefs.minutes.key "ყ">
<!ENTITY torbirdy.accountprefs.minutes.trail.label "minutes">
<!ENTITY torbirdy.accountprefs.cancel.button "Cancel">
-<!ENTITY torbirdy.accountprefs.save.button "Save">
+<!ENTITY torbirdy.accountprefs.save.button "გადარჩენა">
<!ENTITY torbirdy.accountprefs.save.key "შ">
<!ENTITY torbirdy.prefs.title "TorBirdy Preferences">
-<!ENTITY torbirdy.prefs.save.button "Save">
+<!ENTITY torbirdy.prefs.save.button "გადარჩენა">
<!ENTITY torbirdy.prefs.save.key "s">
<!ENTITY torbirdy.prefs.cancel.button "გაუქმება">
<!ENTITY torbirdy.prefs.extra2.button "გაჩუმების პრინციპით დაყენებული პარამეტრების აღდგენა">
@@ -40,8 +40,6 @@
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.key "რ">
<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
<!ENTITY torbirdy.prefs.enigmail_protected.key "დ">
-<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
-<!ENTITY torbirdy.prefs.enigmail_protected.key "დ">
<!ENTITY torbirdy.prefs.confirmemail.label "Confirm before sending email if Enigmail is enabled [default: do not confirm]">
<!ENTITY torbirdy.prefs.confirmemail.key "c">
<!ENTITY torbirdy.prefs.emailwizard.label "Enable Thunderbird's automatic email configuration wizard [default: disabled]">
diff --git a/chrome/locale/kk/torbirdy.dtd b/chrome/locale/kk/torbirdy.dtd
index 31f6722..125a2dc 100644
--- a/chrome/locale/kk/torbirdy.dtd
+++ b/chrome/locale/kk/torbirdy.dtd
@@ -5,18 +5,18 @@
<!ENTITY torbirdy.accountprefs.minutes.key "y">
<!ENTITY torbirdy.accountprefs.minutes.trail.label "minutes">
<!ENTITY torbirdy.accountprefs.cancel.button "Болдырмау">
-<!ENTITY torbirdy.accountprefs.save.button "Save">
+<!ENTITY torbirdy.accountprefs.save.button "Сақтау">
<!ENTITY torbirdy.accountprefs.save.key "S">
<!ENTITY torbirdy.prefs.title "TorBirdy Preferences">
-<!ENTITY torbirdy.prefs.save.button "Save">
+<!ENTITY torbirdy.prefs.save.button "Сақтау">
<!ENTITY torbirdy.prefs.save.key "s">
<!ENTITY torbirdy.prefs.cancel.button "Болдырмау">
<!ENTITY torbirdy.prefs.extra2.button "Restore Defaults">
<!ENTITY torbirdy.prefs.extra2.key "d">
<!ENTITY torbirdy.prefs.testproxy.button "Test Proxy Settings">
<!ENTITY torbirdy.prefs.testproxy.key "n">
-<!ENTITY torbirdy.prefs.proxy.label "Proxy">
+<!ENTITY torbirdy.prefs.proxy.label "Прокси">
<!ENTITY torbirdy.prefs.privacy.label "Құпиялылық">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
@@ -40,8 +40,6 @@
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.key "r">
<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
-<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
-<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
<!ENTITY torbirdy.prefs.confirmemail.label "Confirm before sending email if Enigmail is enabled [default: do not confirm]">
<!ENTITY torbirdy.prefs.confirmemail.key "c">
<!ENTITY torbirdy.prefs.emailwizard.label "Enable Thunderbird's automatic email configuration wizard [default: disabled]">
diff --git a/chrome/locale/ko-KR/torbirdy.dtd b/chrome/locale/ko-KR/torbirdy.dtd
index e569770..482dee9 100644
--- a/chrome/locale/ko-KR/torbirdy.dtd
+++ b/chrome/locale/ko-KR/torbirdy.dtd
@@ -40,8 +40,6 @@
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.key "r">
<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
-<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
-<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
<!ENTITY torbirdy.prefs.confirmemail.label "Confirm before sending email if Enigmail is enabled [default: do not confirm]">
<!ENTITY torbirdy.prefs.confirmemail.key "c">
<!ENTITY torbirdy.prefs.emailwizard.label "Enable Thunderbird's automatic email configuration wizard [default: disabled]">
diff --git a/chrome/locale/ko/torbirdy.dtd b/chrome/locale/ko/torbirdy.dtd
index 770139f..50d8a19 100644
--- a/chrome/locale/ko/torbirdy.dtd
+++ b/chrome/locale/ko/torbirdy.dtd
@@ -40,8 +40,6 @@
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.key "r">
<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
-<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
-<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
<!ENTITY torbirdy.prefs.confirmemail.label "Enigmail이 활성화되었을 경우 메일을 보내기 전에 확인하기 [기본값 : 확인하지 않음]">
<!ENTITY torbirdy.prefs.confirmemail.key "c">
<!ENTITY torbirdy.prefs.emailwizard.label "썬더버드의 자동 이메일 환경설정 마법사 활성화 [기본값 : 비활성화]">
diff --git a/chrome/locale/ku-IQ/torbirdy.dtd b/chrome/locale/ku-IQ/torbirdy.dtd
index cebf20b..e0debd7 100644
--- a/chrome/locale/ku-IQ/torbirdy.dtd
+++ b/chrome/locale/ku-IQ/torbirdy.dtd
@@ -40,8 +40,6 @@
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.key "r">
<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
-<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
-<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
<!ENTITY torbirdy.prefs.confirmemail.label "Confirm before sending email if Enigmail is enabled [default: do not confirm]">
<!ENTITY torbirdy.prefs.confirmemail.key "c">
<!ENTITY torbirdy.prefs.emailwizard.label "Enable Thunderbird's automatic email configuration wizard [default: disabled]">
diff --git a/chrome/locale/ky/torbirdy.dtd b/chrome/locale/ky/torbirdy.dtd
index 3275c70..9a1c024 100644
--- a/chrome/locale/ky/torbirdy.dtd
+++ b/chrome/locale/ky/torbirdy.dtd
@@ -17,7 +17,7 @@
<!ENTITY torbirdy.prefs.testproxy.button "Test Proxy Settings">
<!ENTITY torbirdy.prefs.testproxy.key "n">
<!ENTITY torbirdy.prefs.proxy.label "Прокси">
-<!ENTITY torbirdy.prefs.privacy.label "Privacy">
+<!ENTITY torbirdy.prefs.privacy.label "Купуялык">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
@@ -40,8 +40,6 @@
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.key "r">
<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
-<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
-<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
<!ENTITY torbirdy.prefs.confirmemail.label "Confirm before sending email if Enigmail is enabled [default: do not confirm]">
<!ENTITY torbirdy.prefs.confirmemail.key "c">
<!ENTITY torbirdy.prefs.emailwizard.label "Enable Thunderbird's automatic email configuration wizard [default: disabled]">
diff --git a/chrome/locale/la/torbirdy.dtd b/chrome/locale/la/torbirdy.dtd
index bbf4d91..f968604 100644
--- a/chrome/locale/la/torbirdy.dtd
+++ b/chrome/locale/la/torbirdy.dtd
@@ -40,8 +40,6 @@
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.key "r">
<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
-<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
-<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
<!ENTITY torbirdy.prefs.confirmemail.label "Rerogare, tum mittere, si Enigmail adest [initiale: non rerogare]">
<!ENTITY torbirdy.prefs.confirmemail.key "cc">
<!ENTITY torbirdy.prefs.emailwizard.label "Configuratorem per-ipse Thunderbirdis inire [initiale: deest]">
diff --git a/chrome/locale/lb/torbirdy.dtd b/chrome/locale/lb/torbirdy.dtd
index ca09467..db2681d 100644
--- a/chrome/locale/lb/torbirdy.dtd
+++ b/chrome/locale/lb/torbirdy.dtd
@@ -40,8 +40,6 @@
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.key "r">
<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
-<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
-<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
<!ENTITY torbirdy.prefs.confirmemail.label "Confirm before sending email if Enigmail is enabled [default: do not confirm]">
<!ENTITY torbirdy.prefs.confirmemail.key "c">
<!ENTITY torbirdy.prefs.emailwizard.label "Enable Thunderbird's automatic email configuration wizard [default: disabled]">
diff --git a/chrome/locale/lg/torbirdy.dtd b/chrome/locale/lg/torbirdy.dtd
index 97f0d67..d8d3bdc 100644
--- a/chrome/locale/lg/torbirdy.dtd
+++ b/chrome/locale/lg/torbirdy.dtd
@@ -17,7 +17,7 @@
<!ENTITY torbirdy.prefs.testproxy.button "Test Proxy Settings">
<!ENTITY torbirdy.prefs.testproxy.key "n">
<!ENTITY torbirdy.prefs.proxy.label "Proxy">
-<!ENTITY torbirdy.prefs.privacy.label "Privacy">
+<!ENTITY torbirdy.prefs.privacy.label "Obwekusiffu">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
@@ -40,8 +40,6 @@
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.key "r">
<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
-<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
-<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
<!ENTITY torbirdy.prefs.confirmemail.label "Confirm before sending email if Enigmail is enabled [default: do not confirm]">
<!ENTITY torbirdy.prefs.confirmemail.key "c">
<!ENTITY torbirdy.prefs.emailwizard.label "Enable Thunderbird's automatic email configuration wizard [default: disabled]">
diff --git a/chrome/locale/lo/torbirdy.dtd b/chrome/locale/lo/torbirdy.dtd
index b044974..3da5f9f 100644
--- a/chrome/locale/lo/torbirdy.dtd
+++ b/chrome/locale/lo/torbirdy.dtd
@@ -40,8 +40,6 @@
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.key "r">
<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
-<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
-<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
<!ENTITY torbirdy.prefs.confirmemail.label "Confirm before sending email if Enigmail is enabled [default: do not confirm]">
<!ENTITY torbirdy.prefs.confirmemail.key "c">
<!ENTITY torbirdy.prefs.emailwizard.label "Enable Thunderbird's automatic email configuration wizard [default: disabled]">
diff --git a/chrome/locale/lt/torbirdy.dtd b/chrome/locale/lt/torbirdy.dtd
index f09804c..527df86 100644
--- a/chrome/locale/lt/torbirdy.dtd
+++ b/chrome/locale/lt/torbirdy.dtd
@@ -40,8 +40,6 @@
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.key "r">
<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
-<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
-<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
<!ENTITY torbirdy.prefs.confirmemail.label "Confirm before sending email if Enigmail is enabled [default: do not confirm]">
<!ENTITY torbirdy.prefs.confirmemail.key "p">
<!ENTITY torbirdy.prefs.emailwizard.label "Įjungti programos Thunderbird automatinio el. pašto konfigūravimo vediklį [pagal numatymą: išjungta]">
diff --git a/chrome/locale/mg/torbirdy.dtd b/chrome/locale/mg/torbirdy.dtd
index d7ed48f..bdccae1 100644
--- a/chrome/locale/mg/torbirdy.dtd
+++ b/chrome/locale/mg/torbirdy.dtd
@@ -40,8 +40,6 @@
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.key "r">
<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
-<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
-<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
<!ENTITY torbirdy.prefs.confirmemail.label "Confirm before sending email if Enigmail is enabled [default: do not confirm]">
<!ENTITY torbirdy.prefs.confirmemail.key "c">
<!ENTITY torbirdy.prefs.emailwizard.label "Enable Thunderbird's automatic email configuration wizard [default: disabled]">
diff --git a/chrome/locale/ml/torbirdy.dtd b/chrome/locale/ml/torbirdy.dtd
index d7ed48f..1c06e19 100644
--- a/chrome/locale/ml/torbirdy.dtd
+++ b/chrome/locale/ml/torbirdy.dtd
@@ -5,11 +5,11 @@
<!ENTITY torbirdy.accountprefs.minutes.key "d">
<!ENTITY torbirdy.accountprefs.minutes.trail.label "minutes">
<!ENTITY torbirdy.accountprefs.cancel.button "Cancel">
-<!ENTITY torbirdy.accountprefs.save.button "Save">
+<!ENTITY torbirdy.accountprefs.save.button "സംരക്ഷിക്കുക">
<!ENTITY torbirdy.accountprefs.save.key "S">
<!ENTITY torbirdy.prefs.title "TorBirdy Preferences">
-<!ENTITY torbirdy.prefs.save.button "Save">
+<!ENTITY torbirdy.prefs.save.button "സംരക്ഷിക്കുക">
<!ENTITY torbirdy.prefs.save.key "s">
<!ENTITY torbirdy.prefs.cancel.button "Cancel">
<!ENTITY torbirdy.prefs.extra2.button "Restore Defaults">
@@ -40,8 +40,6 @@
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.key "r">
<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
-<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
-<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
<!ENTITY torbirdy.prefs.confirmemail.label "Confirm before sending email if Enigmail is enabled [default: do not confirm]">
<!ENTITY torbirdy.prefs.confirmemail.key "c">
<!ENTITY torbirdy.prefs.emailwizard.label "Enable Thunderbird's automatic email configuration wizard [default: disabled]">
diff --git a/chrome/locale/my/torbirdy.dtd b/chrome/locale/my/torbirdy.dtd
index 4b68c26..7736314 100644
--- a/chrome/locale/my/torbirdy.dtd
+++ b/chrome/locale/my/torbirdy.dtd
@@ -40,8 +40,6 @@
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.key "r">
<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
-<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
-<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
<!ENTITY torbirdy.prefs.confirmemail.label "Confirm before sending email if Enigmail is enabled [default: do not confirm]">
<!ENTITY torbirdy.prefs.confirmemail.key "P">
<!ENTITY torbirdy.prefs.emailwizard.label "Enable Thunderbird's automatic email configuration wizard [default: disabled]">
diff --git a/chrome/locale/nl-BE/torbirdy.dtd b/chrome/locale/nl-BE/torbirdy.dtd
index 9edcbc8..5e9fb46 100644
--- a/chrome/locale/nl-BE/torbirdy.dtd
+++ b/chrome/locale/nl-BE/torbirdy.dtd
@@ -40,8 +40,6 @@
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.key "r">
<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
-<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
-<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
<!ENTITY torbirdy.prefs.confirmemail.label "Bevestig voor verzenden indien Enigmail is ingeschakeld [standaard: niet bevestigen]">
<!ENTITY torbirdy.prefs.confirmemail.key "c">
<!ENTITY torbirdy.prefs.emailwizard.label "Schakel de automatische e-mail configuratie wizard in [standaard: uitgeschakeld]">
diff --git a/chrome/locale/nn/torbirdy.dtd b/chrome/locale/nn/torbirdy.dtd
index b31c603..eff98aa 100644
--- a/chrome/locale/nn/torbirdy.dtd
+++ b/chrome/locale/nn/torbirdy.dtd
@@ -40,8 +40,6 @@
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.key "r">
<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
-<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
-<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
<!ENTITY torbirdy.prefs.confirmemail.label "Stadest før sending av epost om Enigmail er slått på [standard: ikkje stadfest]">
<!ENTITY torbirdy.prefs.confirmemail.key "s">
<!ENTITY torbirdy.prefs.emailwizard.label "Slå på Thunderbirds automatiske konfigureringshjelp [standard: slått av] ">
diff --git a/chrome/locale/oc/torbirdy.dtd b/chrome/locale/oc/torbirdy.dtd
index d7ed48f..12b40de 100644
--- a/chrome/locale/oc/torbirdy.dtd
+++ b/chrome/locale/oc/torbirdy.dtd
@@ -5,11 +5,11 @@
<!ENTITY torbirdy.accountprefs.minutes.key "d">
<!ENTITY torbirdy.accountprefs.minutes.trail.label "minutes">
<!ENTITY torbirdy.accountprefs.cancel.button "Cancel">
-<!ENTITY torbirdy.accountprefs.save.button "Save">
+<!ENTITY torbirdy.accountprefs.save.button "Enregistrar">
<!ENTITY torbirdy.accountprefs.save.key "S">
<!ENTITY torbirdy.prefs.title "TorBirdy Preferences">
-<!ENTITY torbirdy.prefs.save.button "Save">
+<!ENTITY torbirdy.prefs.save.button "Enregistrar">
<!ENTITY torbirdy.prefs.save.key "s">
<!ENTITY torbirdy.prefs.cancel.button "Cancel">
<!ENTITY torbirdy.prefs.extra2.button "Restore Defaults">
@@ -40,8 +40,6 @@
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.key "r">
<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
-<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
-<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
<!ENTITY torbirdy.prefs.confirmemail.label "Confirm before sending email if Enigmail is enabled [default: do not confirm]">
<!ENTITY torbirdy.prefs.confirmemail.key "c">
<!ENTITY torbirdy.prefs.emailwizard.label "Enable Thunderbird's automatic email configuration wizard [default: disabled]">
diff --git a/chrome/locale/om/torbirdy.dtd b/chrome/locale/om/torbirdy.dtd
index 232f04b..1970f09 100644
--- a/chrome/locale/om/torbirdy.dtd
+++ b/chrome/locale/om/torbirdy.dtd
@@ -4,14 +4,14 @@
<!ENTITY torbirdy.accountprefs.minutes.label "Check for new messages every">
<!ENTITY torbirdy.accountprefs.minutes.key "y">
<!ENTITY torbirdy.accountprefs.minutes.trail.label "minutes">
-<!ENTITY torbirdy.accountprefs.cancel.button "Cancel">
-<!ENTITY torbirdy.accountprefs.save.button "Save">
+<!ENTITY torbirdy.accountprefs.cancel.button "Haqi">
+<!ENTITY torbirdy.accountprefs.save.button "Ol kaa'i">
<!ENTITY torbirdy.accountprefs.save.key "S">
<!ENTITY torbirdy.prefs.title "TorBirdy Preferences">
-<!ENTITY torbirdy.prefs.save.button "Save">
+<!ENTITY torbirdy.prefs.save.button "Ol kaa'i">
<!ENTITY torbirdy.prefs.save.key "s">
-<!ENTITY torbirdy.prefs.cancel.button "Cancel">
+<!ENTITY torbirdy.prefs.cancel.button "Haqi">
<!ENTITY torbirdy.prefs.extra2.button "Restore Defaults">
<!ENTITY torbirdy.prefs.extra2.key "d">
<!ENTITY torbirdy.prefs.testproxy.button "Test Proxy Settings">
@@ -40,8 +40,6 @@
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.key "r">
<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
-<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
-<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
<!ENTITY torbirdy.prefs.confirmemail.label "Confirm before sending email if Enigmail is enabled [default: do not confirm]">
<!ENTITY torbirdy.prefs.confirmemail.key "c">
<!ENTITY torbirdy.prefs.emailwizard.label "Enable Thunderbird's automatic email configuration wizard [default: disabled]">
diff --git a/chrome/locale/pa/torbirdy.dtd b/chrome/locale/pa/torbirdy.dtd
index 45172c5..6c18a58 100644
--- a/chrome/locale/pa/torbirdy.dtd
+++ b/chrome/locale/pa/torbirdy.dtd
@@ -41,8 +41,6 @@
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.key "p">
<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
-<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
-<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
<!ENTITY torbirdy.prefs.confirmemail.label "ਈਮੇਲ ਕਰਨ ਤੌਂ ਪਿਹਲਾਂ ਪੂਛੋ ਜੈ ਏਨਿਗਮੇਲ ਚਾਲੂ ਹੈ">
<!ENTITY torbirdy.prefs.confirmemail.key "c">
<!ENTITY torbirdy.prefs.emailwizard.label "ਥੰਡਰਬਰਡ ਦੇ ਆਟੋ-ਸੰਰਚਨਾ ਈਮੈਲ ਸੈਟਅੱਪ ਨੂੰ ਨਾ ਰੱਦ ਕਰੋ">
diff --git a/chrome/locale/pl/torbirdy.dtd b/chrome/locale/pl/torbirdy.dtd
index a8abbf3..96a4eb1 100644
--- a/chrome/locale/pl/torbirdy.dtd
+++ b/chrome/locale/pl/torbirdy.dtd
@@ -40,8 +40,6 @@
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.key "r">
<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
-<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
-<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
<!ENTITY torbirdy.prefs.confirmemail.label "Potwierdzaj przed wysłaniem wiadomości, gdy Enigmail jest włączony [domyślnie: nie potwierdzaj]">
<!ENTITY torbirdy.prefs.confirmemail.key "i">
<!ENTITY torbirdy.prefs.emailwizard.label "Włącz automatyczny kreator konfiguracji e-mail Thunderbirda [domyślnie: wyłączony]">
diff --git a/chrome/locale/sco/torbirdy.dtd b/chrome/locale/sco/torbirdy.dtd
index d7ed48f..bdccae1 100644
--- a/chrome/locale/sco/torbirdy.dtd
+++ b/chrome/locale/sco/torbirdy.dtd
@@ -40,8 +40,6 @@
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.key "r">
<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
-<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
-<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
<!ENTITY torbirdy.prefs.confirmemail.label "Confirm before sending email if Enigmail is enabled [default: do not confirm]">
<!ENTITY torbirdy.prefs.confirmemail.key "c">
<!ENTITY torbirdy.prefs.emailwizard.label "Enable Thunderbird's automatic email configuration wizard [default: disabled]">
diff --git a/chrome/locale/si-LK/torbirdy.dtd b/chrome/locale/si-LK/torbirdy.dtd
index 16a5686..da9b01f 100644
--- a/chrome/locale/si-LK/torbirdy.dtd
+++ b/chrome/locale/si-LK/torbirdy.dtd
@@ -40,8 +40,6 @@
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.key "r">
<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
-<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
-<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
<!ENTITY torbirdy.prefs.confirmemail.label "Enigmail සබල කර ඇත්නම් විද්යුත් තැපෑල එවීමට පෙර තහවුරු කරන්න [default: do not confirm]">
<!ENTITY torbirdy.prefs.confirmemail.key "c">
<!ENTITY torbirdy.prefs.emailwizard.label "Thunderbird ගේ ස්වයංක්රීය විද්යුත් තැපෑල වින්යාස විශාරද සබල කරන්න [default: disabled]">
diff --git a/chrome/locale/sk-SK/torbirdy.dtd b/chrome/locale/sk-SK/torbirdy.dtd
index 004f3c4..5e45bae 100644
--- a/chrome/locale/sk-SK/torbirdy.dtd
+++ b/chrome/locale/sk-SK/torbirdy.dtd
@@ -40,8 +40,6 @@
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.key "r">
<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
-<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
-<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
<!ENTITY torbirdy.prefs.confirmemail.label "Potvrď či Enigmail je povolený predtým, než odošle email [predvolené: nepotvrď]">
<!ENTITY torbirdy.prefs.confirmemail.key "p">
<!ENTITY torbirdy.prefs.emailwizard.label "Povoľ automatickú konfiguráciu emailového klienta Thunderbird [predvolené: vypnuté]">
diff --git a/chrome/locale/sk/torbirdy.dtd b/chrome/locale/sk/torbirdy.dtd
index 38aa577..d9d10a6 100644
--- a/chrome/locale/sk/torbirdy.dtd
+++ b/chrome/locale/sk/torbirdy.dtd
@@ -40,8 +40,6 @@
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.key "r">
<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
-<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
-<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
<!ENTITY torbirdy.prefs.confirmemail.label "Potvrdiť pred zaslaním emailu v prípade, že je Enigmail povolený [štandardne: nepotvrdzovať]">
<!ENTITY torbirdy.prefs.confirmemail.key "c">
<!ENTITY torbirdy.prefs.emailwizard.label "Povoliť v Thunderbirde sprievodcu automatickou emailovou konfiguráciou [štandardne: vypnuté]">
diff --git a/chrome/locale/sl-SI/torbirdy.dtd b/chrome/locale/sl-SI/torbirdy.dtd
index 46eeffa..196a0e5 100644
--- a/chrome/locale/sl-SI/torbirdy.dtd
+++ b/chrome/locale/sl-SI/torbirdy.dtd
@@ -40,8 +40,6 @@
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.key "r">
<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
-<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
-<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
<!ENTITY torbirdy.prefs.confirmemail.label "Potrdite pred pošiljanjem epošte, če je Enigmail omogočen [privzeto: nepotrdi]">
<!ENTITY torbirdy.prefs.confirmemail.key "c">
<!ENTITY torbirdy.prefs.emailwizard.label "Omogočite Thunderbird's čarovniku avtomatsko nastavitev pošte [privzeto: onemogoči]">
diff --git a/chrome/locale/sl/torbirdy.dtd b/chrome/locale/sl/torbirdy.dtd
index 411aa7c..d4f1d44 100644
--- a/chrome/locale/sl/torbirdy.dtd
+++ b/chrome/locale/sl/torbirdy.dtd
@@ -40,8 +40,6 @@
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.key "r">
<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
-<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
-<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
<!ENTITY torbirdy.prefs.confirmemail.label "Confirm before sending email if Enigmail is enabled [default: do not confirm]">
<!ENTITY torbirdy.prefs.confirmemail.key "P">
<!ENTITY torbirdy.prefs.emailwizard.label "Enable Thunderbird's automatic email configuration wizard [default: disabled]">
diff --git a/chrome/locale/sn/torbirdy.dtd b/chrome/locale/sn/torbirdy.dtd
index 232f04b..0baa407 100644
--- a/chrome/locale/sn/torbirdy.dtd
+++ b/chrome/locale/sn/torbirdy.dtd
@@ -4,14 +4,14 @@
<!ENTITY torbirdy.accountprefs.minutes.label "Check for new messages every">
<!ENTITY torbirdy.accountprefs.minutes.key "y">
<!ENTITY torbirdy.accountprefs.minutes.trail.label "minutes">
-<!ENTITY torbirdy.accountprefs.cancel.button "Cancel">
+<!ENTITY torbirdy.accountprefs.cancel.button "Kanzura">
<!ENTITY torbirdy.accountprefs.save.button "Save">
<!ENTITY torbirdy.accountprefs.save.key "S">
<!ENTITY torbirdy.prefs.title "TorBirdy Preferences">
<!ENTITY torbirdy.prefs.save.button "Save">
<!ENTITY torbirdy.prefs.save.key "s">
-<!ENTITY torbirdy.prefs.cancel.button "Cancel">
+<!ENTITY torbirdy.prefs.cancel.button "Kanzura">
<!ENTITY torbirdy.prefs.extra2.button "Restore Defaults">
<!ENTITY torbirdy.prefs.extra2.key "d">
<!ENTITY torbirdy.prefs.testproxy.button "Test Proxy Settings">
@@ -40,8 +40,6 @@
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.key "r">
<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
-<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
-<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
<!ENTITY torbirdy.prefs.confirmemail.label "Confirm before sending email if Enigmail is enabled [default: do not confirm]">
<!ENTITY torbirdy.prefs.confirmemail.key "c">
<!ENTITY torbirdy.prefs.emailwizard.label "Enable Thunderbird's automatic email configuration wizard [default: disabled]">
diff --git a/chrome/locale/sr/torbirdy.dtd b/chrome/locale/sr/torbirdy.dtd
index 1b989ce..256fadf 100644
--- a/chrome/locale/sr/torbirdy.dtd
+++ b/chrome/locale/sr/torbirdy.dtd
@@ -42,8 +42,6 @@
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.key "r">
<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
<!ENTITY torbirdy.prefs.enigmail_protected.key "д">
-<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
-<!ENTITY torbirdy.prefs.enigmail_protected.key "д">
<!ENTITY torbirdy.prefs.confirmemail.label "Potvrdi pre slanja ukoliko je Enigmail omogućen ">
<!ENTITY torbirdy.prefs.confirmemail.key "c">
<!ENTITY torbirdy.prefs.emailwizard.label "Ukljucite Thunderbird-ov carobnjak za automatsku email konfiguraciju.
diff --git a/chrome/locale/sv/torbirdy.dtd b/chrome/locale/sv/torbirdy.dtd
index b0940c2..5f80e8a 100644
--- a/chrome/locale/sv/torbirdy.dtd
+++ b/chrome/locale/sv/torbirdy.dtd
@@ -38,7 +38,7 @@
<!ENTITY torbirdy.prefs.startup_folder.key "l">
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.label "Lägg inte till mottagarnas nyckel-IDn i krypterade meddelanden [standard: lägg till]">
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.key "r">
-<!ENTITY torbirdy.prefs.enigmail_protected.label "Stäng av okryperade mejl huvud [Förinställt som påslaget]">
+<!ENTITY torbirdy.prefs.enigmail_protected.label "Stäng av kryperade mejl huvud [Förinställt som påslaget]">
<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
<!ENTITY torbirdy.prefs.confirmemail.label "Bekräfta innan e-post skickas om Enigmail är aktiverat [standard: bekräfta inte]">
<!ENTITY torbirdy.prefs.confirmemail.key "c">
diff --git a/chrome/locale/sw/torbirdy.dtd b/chrome/locale/sw/torbirdy.dtd
index d7ed48f..bdccae1 100644
--- a/chrome/locale/sw/torbirdy.dtd
+++ b/chrome/locale/sw/torbirdy.dtd
@@ -40,8 +40,6 @@
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.key "r">
<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
-<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
-<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
<!ENTITY torbirdy.prefs.confirmemail.label "Confirm before sending email if Enigmail is enabled [default: do not confirm]">
<!ENTITY torbirdy.prefs.confirmemail.key "c">
<!ENTITY torbirdy.prefs.emailwizard.label "Enable Thunderbird's automatic email configuration wizard [default: disabled]">
diff --git a/chrome/locale/ta/torbirdy.dtd b/chrome/locale/ta/torbirdy.dtd
index c0cd968..b742631 100644
--- a/chrome/locale/ta/torbirdy.dtd
+++ b/chrome/locale/ta/torbirdy.dtd
@@ -40,8 +40,6 @@
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.key "r">
<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
-<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
-<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
<!ENTITY torbirdy.prefs.confirmemail.label "Confirm before sending email if Enigmail is enabled [default: do not confirm]">
<!ENTITY torbirdy.prefs.confirmemail.key "c">
<!ENTITY torbirdy.prefs.emailwizard.label "Enable Thunderbird's automatic email configuration wizard [default: disabled]">
diff --git a/chrome/locale/tg/torbirdy.dtd b/chrome/locale/tg/torbirdy.dtd
index d7ed48f..0410337 100644
--- a/chrome/locale/tg/torbirdy.dtd
+++ b/chrome/locale/tg/torbirdy.dtd
@@ -5,19 +5,19 @@
<!ENTITY torbirdy.accountprefs.minutes.key "d">
<!ENTITY torbirdy.accountprefs.minutes.trail.label "minutes">
<!ENTITY torbirdy.accountprefs.cancel.button "Cancel">
-<!ENTITY torbirdy.accountprefs.save.button "Save">
+<!ENTITY torbirdy.accountprefs.save.button "Захира кардан">
<!ENTITY torbirdy.accountprefs.save.key "S">
<!ENTITY torbirdy.prefs.title "TorBirdy Preferences">
-<!ENTITY torbirdy.prefs.save.button "Save">
+<!ENTITY torbirdy.prefs.save.button "Захира кардан">
<!ENTITY torbirdy.prefs.save.key "s">
<!ENTITY torbirdy.prefs.cancel.button "Cancel">
<!ENTITY torbirdy.prefs.extra2.button "Restore Defaults">
<!ENTITY torbirdy.prefs.extra2.key "d">
<!ENTITY torbirdy.prefs.testproxy.button "Test Proxy Settings">
<!ENTITY torbirdy.prefs.testproxy.key "n">
-<!ENTITY torbirdy.prefs.proxy.label "Proxy">
-<!ENTITY torbirdy.prefs.privacy.label "Privacy">
+<!ENTITY torbirdy.prefs.proxy.label "Прокси">
+<!ENTITY torbirdy.prefs.privacy.label "Махфият">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
@@ -40,8 +40,6 @@
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.key "r">
<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
-<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
-<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
<!ENTITY torbirdy.prefs.confirmemail.label "Confirm before sending email if Enigmail is enabled [default: do not confirm]">
<!ENTITY torbirdy.prefs.confirmemail.key "c">
<!ENTITY torbirdy.prefs.emailwizard.label "Enable Thunderbird's automatic email configuration wizard [default: disabled]">
diff --git a/chrome/locale/ti/torbirdy.dtd b/chrome/locale/ti/torbirdy.dtd
index d7ed48f..e6cdf71 100644
--- a/chrome/locale/ti/torbirdy.dtd
+++ b/chrome/locale/ti/torbirdy.dtd
@@ -5,18 +5,18 @@
<!ENTITY torbirdy.accountprefs.minutes.key "d">
<!ENTITY torbirdy.accountprefs.minutes.trail.label "minutes">
<!ENTITY torbirdy.accountprefs.cancel.button "Cancel">
-<!ENTITY torbirdy.accountprefs.save.button "Save">
+<!ENTITY torbirdy.accountprefs.save.button "ኽዝን">
<!ENTITY torbirdy.accountprefs.save.key "S">
<!ENTITY torbirdy.prefs.title "TorBirdy Preferences">
-<!ENTITY torbirdy.prefs.save.button "Save">
+<!ENTITY torbirdy.prefs.save.button "ኽዝን">
<!ENTITY torbirdy.prefs.save.key "s">
<!ENTITY torbirdy.prefs.cancel.button "Cancel">
<!ENTITY torbirdy.prefs.extra2.button "Restore Defaults">
<!ENTITY torbirdy.prefs.extra2.key "d">
<!ENTITY torbirdy.prefs.testproxy.button "Test Proxy Settings">
<!ENTITY torbirdy.prefs.testproxy.key "n">
-<!ENTITY torbirdy.prefs.proxy.label "Proxy">
+<!ENTITY torbirdy.prefs.proxy.label "ብርሕቐት">
<!ENTITY torbirdy.prefs.privacy.label "Privacy">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
@@ -40,8 +40,6 @@
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.key "r">
<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
-<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
-<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
<!ENTITY torbirdy.prefs.confirmemail.label "Confirm before sending email if Enigmail is enabled [default: do not confirm]">
<!ENTITY torbirdy.prefs.confirmemail.key "c">
<!ENTITY torbirdy.prefs.emailwizard.label "Enable Thunderbird's automatic email configuration wizard [default: disabled]">
diff --git a/chrome/locale/tk/torbirdy.dtd b/chrome/locale/tk/torbirdy.dtd
index d7ed48f..54af945 100644
--- a/chrome/locale/tk/torbirdy.dtd
+++ b/chrome/locale/tk/torbirdy.dtd
@@ -5,19 +5,19 @@
<!ENTITY torbirdy.accountprefs.minutes.key "d">
<!ENTITY torbirdy.accountprefs.minutes.trail.label "minutes">
<!ENTITY torbirdy.accountprefs.cancel.button "Cancel">
-<!ENTITY torbirdy.accountprefs.save.button "Save">
+<!ENTITY torbirdy.accountprefs.save.button "Ýazdyr">
<!ENTITY torbirdy.accountprefs.save.key "S">
<!ENTITY torbirdy.prefs.title "TorBirdy Preferences">
-<!ENTITY torbirdy.prefs.save.button "Save">
+<!ENTITY torbirdy.prefs.save.button "Ýazdyr">
<!ENTITY torbirdy.prefs.save.key "s">
<!ENTITY torbirdy.prefs.cancel.button "Cancel">
<!ENTITY torbirdy.prefs.extra2.button "Restore Defaults">
<!ENTITY torbirdy.prefs.extra2.key "d">
<!ENTITY torbirdy.prefs.testproxy.button "Test Proxy Settings">
<!ENTITY torbirdy.prefs.testproxy.key "n">
-<!ENTITY torbirdy.prefs.proxy.label "Proxy">
-<!ENTITY torbirdy.prefs.privacy.label "Privacy">
+<!ENTITY torbirdy.prefs.proxy.label "Proksi">
+<!ENTITY torbirdy.prefs.privacy.label "Gizlinlik">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
@@ -40,8 +40,6 @@
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.key "r">
<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
-<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
-<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
<!ENTITY torbirdy.prefs.confirmemail.label "Confirm before sending email if Enigmail is enabled [default: do not confirm]">
<!ENTITY torbirdy.prefs.confirmemail.key "c">
<!ENTITY torbirdy.prefs.emailwizard.label "Enable Thunderbird's automatic email configuration wizard [default: disabled]">
diff --git a/chrome/locale/ug(a)Arab/torbirdy.dtd b/chrome/locale/ug(a)Arab/torbirdy.dtd
index cb7e0e6..d4b6ba2 100644
--- a/chrome/locale/ug(a)Arab/torbirdy.dtd
+++ b/chrome/locale/ug(a)Arab/torbirdy.dtd
@@ -40,8 +40,6 @@
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.key "r">
<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
-<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
-<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
<!ENTITY torbirdy.prefs.confirmemail.label "Confirm before sending email if Enigmail is enabled [default: do not confirm]">
<!ENTITY torbirdy.prefs.confirmemail.key "c">
<!ENTITY torbirdy.prefs.emailwizard.label "Enable Thunderbird's automatic email configuration wizard [default: disabled]">
diff --git a/chrome/locale/uk/torbirdy.dtd b/chrome/locale/uk/torbirdy.dtd
index ddafa7b..b9e3619 100644
--- a/chrome/locale/uk/torbirdy.dtd
+++ b/chrome/locale/uk/torbirdy.dtd
@@ -38,7 +38,7 @@
<!ENTITY torbirdy.prefs.startup_folder.key "p">
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.label "Не вставляти ідентифікатори ключів у зашифровані повідомлення [за замовчуванням: вставляти]">
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.key "r">
-<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
+<!ENTITY torbirdy.prefs.enigmail_protected.label "Вимкнути зашифровані заголовки електронної пошти [за замовчуванням: увімкнено]">
<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
<!ENTITY torbirdy.prefs.confirmemail.label "Підтверджувати перед відправкою листа, якщо Enigmail активний [за замовчуванням: не підтверджувати]">
<!ENTITY torbirdy.prefs.confirmemail.key "c">
diff --git a/chrome/locale/ur-PK/torbirdy.dtd b/chrome/locale/ur-PK/torbirdy.dtd
index 341cf47..fd87928 100644
--- a/chrome/locale/ur-PK/torbirdy.dtd
+++ b/chrome/locale/ur-PK/torbirdy.dtd
@@ -40,8 +40,6 @@
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.key "r">
<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
-<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
-<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
<!ENTITY torbirdy.prefs.confirmemail.label "Confirm before sending email if Enigmail is enabled [default: do not confirm]">
<!ENTITY torbirdy.prefs.confirmemail.key "c">
<!ENTITY torbirdy.prefs.emailwizard.label "Enable Thunderbird's automatic email configuration wizard [default: disabled]">
diff --git a/chrome/locale/ur/torbirdy.dtd b/chrome/locale/ur/torbirdy.dtd
index b960be7..e6a91bc 100644
--- a/chrome/locale/ur/torbirdy.dtd
+++ b/chrome/locale/ur/torbirdy.dtd
@@ -40,8 +40,6 @@
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.key "r">
<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
-<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
-<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
<!ENTITY torbirdy.prefs.confirmemail.label "Confirm before sending email if Enigmail is enabled [default: do not confirm]">
<!ENTITY torbirdy.prefs.confirmemail.key "c">
<!ENTITY torbirdy.prefs.emailwizard.label "Enable Thunderbird's automatic email configuration wizard [default: disabled]">
diff --git a/chrome/locale/uz/torbirdy.dtd b/chrome/locale/uz/torbirdy.dtd
index 1d928a3..ebbd8f9 100644
--- a/chrome/locale/uz/torbirdy.dtd
+++ b/chrome/locale/uz/torbirdy.dtd
@@ -17,7 +17,7 @@
<!ENTITY torbirdy.prefs.testproxy.button "Test Proxy Settings">
<!ENTITY torbirdy.prefs.testproxy.key "n">
<!ENTITY torbirdy.prefs.proxy.label "Proksi-server">
-<!ENTITY torbirdy.prefs.privacy.label "Privacy">
+<!ENTITY torbirdy.prefs.privacy.label "Maxfiylik">
<!ENTITY torbirdy.prefs.enigmail.label "Enigmail">
<!ENTITY torbirdy.prefs.recommended.text "Use the recommended proxy settings for TorBirdy (Tor)">
<!ENTITY torbirdy.prefs.recommended.key "r">
@@ -40,8 +40,6 @@
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.key "r">
<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
-<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
-<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
<!ENTITY torbirdy.prefs.confirmemail.label "Confirm before sending email if Enigmail is enabled [default: do not confirm]">
<!ENTITY torbirdy.prefs.confirmemail.key "c">
<!ENTITY torbirdy.prefs.emailwizard.label "Enable Thunderbird's automatic email configuration wizard [default: disabled]">
diff --git a/chrome/locale/vi/torbirdy.dtd b/chrome/locale/vi/torbirdy.dtd
index ac6cd61..a18d7cd 100644
--- a/chrome/locale/vi/torbirdy.dtd
+++ b/chrome/locale/vi/torbirdy.dtd
@@ -40,8 +40,6 @@
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.key "y">
<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
-<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
-<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
<!ENTITY torbirdy.prefs.confirmemail.label "Xác nhận trước khi gửi email nếu Enigmail được cho phép [default: do not confirm]">
<!ENTITY torbirdy.prefs.confirmemail.key "y">
<!ENTITY torbirdy.prefs.emailwizard.label "Cho phép hướng dẫn cấu hình email tự động của Thunderbird [default: disabled]">
diff --git a/chrome/locale/zh-HK/torbirdy.dtd b/chrome/locale/zh-HK/torbirdy.dtd
index 578842d..39ab87d 100644
--- a/chrome/locale/zh-HK/torbirdy.dtd
+++ b/chrome/locale/zh-HK/torbirdy.dtd
@@ -40,8 +40,6 @@
<!ENTITY torbirdy.prefs.enigmail_throwkeyid.key "r">
<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
-<!ENTITY torbirdy.prefs.enigmail_protected.label "Disable encrypted email headers [default: enabled]">
-<!ENTITY torbirdy.prefs.enigmail_protected.key "d">
<!ENTITY torbirdy.prefs.confirmemail.label "如果Enigmail已啟用,寄電郵前須確認 [預設:唔確認]">
<!ENTITY torbirdy.prefs.confirmemail.key "c">
<!ENTITY torbirdy.prefs.emailwizard.label "啟用Thunderbird嘅自動電郵組態嚮導[預設:停用]">
1
0
commit bb9012c818124a6fed3321bdbd6bc46c63e89341
Author: Nick Mathewson <nickm(a)torproject.org>
Date: Fri Mar 23 11:48:15 2018 -0400
test: more data on geoip load failure.
---
src/test/test_geoip.c | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/src/test/test_geoip.c b/src/test/test_geoip.c
index a5e11cc59..be1376a3b 100644
--- a/src/test/test_geoip.c
+++ b/src/test/test_geoip.c
@@ -404,7 +404,11 @@ test_geoip_load_file(void *arg)
geoip_db_digest(AF_INET));
const char FNAME[] = SRCDIR "/src/config/geoip";
- tt_int_op(0, OP_EQ, geoip_load_file(AF_INET, FNAME));
+ int rv = geoip_load_file(AF_INET, FNAME);
+ if (rv != 0) {
+ TT_GRIPE(("Unable to load geoip from %s", escaped(FNAME)));
+ }
+ tt_int_op(0, OP_EQ, rv);
/* Check that we loaded some countries; this will fail if there are ever
* fewer than 50 countries in the world. */
1
0